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

  src: url(/e4bef93eb3b1fce4c9fb4dff7fd17f93.svg#BiancoSans-Italic) format('svg'),
    url(/693c77708055ac744255d9b7846dab61.woff) format('woff'),
    url(/b8679a1bc8ec9e869a7e085cbcfe1a9b.ttf) format('truetype'),
    url(/e4bef93eb3b1fce4c9fb4dff7fd17f93.svg#BiancoSans-Italic) format('svg');

  font-style: italic;

  font-weight: normal;
}

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

  src: url(/c1940c7a4cab4cb57b02e44f9e4366f3.svg#BiancoSans-BoldItalic) format('svg'),
    url(/96ccc22e725f9a82977c9e5dc520ea98.woff) format('woff'),
    url(/fe06a041a1bbc7642a05ace09a7607a3.ttf) format('truetype'),
    url(/c1940c7a4cab4cb57b02e44f9e4366f3.svg#BiancoSans-BoldItalic) format('svg');

  font-style: italic;

  font-weight: bold;
}

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

  src: url(/6921938d1518fd477fd4e361bac943fd.svg#BiancoSans-Bold) format('svg'),
    url(/60a04b3ce6b0cc3a41f504995391ac54.woff) format('woff'),
    url(/10fefdd8eac51c75968b2e89f6824f00.ttf) format('truetype'),
    url(/6921938d1518fd477fd4e361bac943fd.svg#BiancoSans-Bold) format('svg');

  font-style: normal;

  font-weight: bold;
}

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

  src: url(/e06fe6f76554a52eed7ee871913ded57.svg#BiancoSans-Regular) format('svg'),
    url(/32ef93b1201dca2ba15493b5208c8030.woff) format('woff'),
    url(/c05f04f74d820167be6fe17d02241747.ttf) format('truetype'),
    url(/e06fe6f76554a52eed7ee871913ded57.svg#BiancoSans-Regular) format('svg');

  font-style: normal;

  font-weight: normal;
}

@font-face {
  font-family: 'Bianco Serif';

  src: url(/a33a5d0ef2ae937f41a9141e53364c84.eot),
     url(/a33a5d0ef2ae937f41a9141e53364c84.eot?#iefix) format('embedded-opentype'),
     url(/2f9ddf95b3a8ffd119d1d23d0a885239.otf) format('opentype'),
    url(/8661134ea8f18ea05fe8b922f249e0b1.woff) format('woff'),
     url(/a424c42c9853b66c25c80ed671cde69d.ttf) format('truetype'),
     url(/615c09668190f2f95e65aabcc80d8445.svg#BiancoSerif-Italic) format('svg'); /* Legacy iOS */

  font-style: italic;

  font-weight: normal;

  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'Bianco Serif';

  src: url(/9e049f0c02d7f982ee5cc3855acb6f6b.eot),
     url(/9e049f0c02d7f982ee5cc3855acb6f6b.eot?#iefix) format('embedded-opentype'),
     url(/594c1b9c5457f5b29fd84bf3b4c81d04.otf) format('opentype'),
    url(/306543f503991b8f05a4ff720bdd0f48.woff) format('woff'),
     url(/af55d1c954475df6258100bc34a5c324.ttf) format('truetype'),
     url(/f0c6ade9e288d7d10e2d85d597fdc5e1.svg#BiancoSerif-Regular) format('svg'); /* Legacy iOS */

  font-style: normal;

  font-weight: normal;

  text-rendering: optimizeLegibility;
}

/*
! IMPORTANT !
  designs were provided with  the dimensions 612px x 792px, this has the correct aspect ration for the letter paper dimensions of 8.5in x 11in
  but the correct dimensions should have been 816px x 1056px, the css print rule applies a scale of 1.333 which is the ratio between the dimensions in the design and the dimensions of the css page

  */

.page-vertical {
  /*TODO refactor to not use paddings in vertical class pages, the page layout defines the paddings and margins*/
  padding: 22px 32px;
}

.page-vertical {
  min-width: 612px;
  min-height: 792px;
  max-width: 612px;
  max-height: 792px;
  width: 612px;
  height: 792px;
}

.page-landscape {
  min-height: 612px;
  min-width: 792px;
  max-height: 612px;
  max-width: 792px;
  height: 612px;
  width: 792px;
}

@media screen {
  .page {
    margin: auto;
    overflow: hidden;
    background: white;
    margin-top: 20px;
  }

  .print-container {
    background: #e5e5e5;
    padding: 20px 0;
  }
}

@media print {
  .page {
    padding: 0;
    page-break-after: always;
  }

  .page-vertical {
    page: vertical;
  }

  @page vertical {
    size: letter;

    margin: 0;
  }

  @page landscape {
    size: letter landscape;

    margin: 0;
  }

  .print\:hide {
    display: none;
  }

  .page-landscape {
    page: landscape;
    padding: 0;
    page-break-after: always;
    transform: scale(1.333333);
    transform-origin: top left;
  }

  /*Remove netlify button in envs*/

  iframe[title='Netlify Drawer'] {
    display: none;
  }
}

.content-box {
  box-sizing: content-box;
}

/* only needed for overriding content-box, is the default strategy */

.border-box {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 1rem;
  font-weight: 400;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
}

.x-center {
  left: 50%;
  transform: translateX(-50%);
}

.y-center {
  top: 50%;
  transform: translateY(-50%);
}

.xy-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.animate {
  transition: all 0.125s;
}

.input__content {
  position: relative;
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.input__content--full-width {
  max-width: 100%;
}

.input__content:not(.input__content--full-width) {
  max-width: 32.5rem;
}

.input__content__input {
  box-shadow: inset 0 0 0 1px #aeacb0;
  padding-bottom: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  width: 100%;
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
  font-size: 0.875rem;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
  background-color: transparent;
}

.input--is-highlight .input__content__input {
  box-shadow: inset 0 0 0 1px #f7a500;
}

.input--has-label .input__content__input {
  padding-top: 1.3125rem;
}

.input__content__input:hover,
.input--is-highlight .input__content__input:hover {
  box-shadow: inset 0 0 0 1px #181818;
}

.input__content__input:focus,
.input--is-highlight .input__content__input:focus {
  box-shadow: inset 0 0 0 2px #6f2ca0;
}

.input--has-icon .input__content__input {
  padding-left: 3.5rem;
}

.input--has-right-icon .input__content__input {
  padding-right: 3.5rem;
}

.input--is-error .input__content__input,
.input--is-error.input--is-highlight .input__content__input {
  box-shadow: inset 0 0 0 1px #f44336;
}

.input--is-error .input__content__input:focus,
,
.input--is-error.input--is-highlight .input__content__input:focus {
  box-shadow: inset 0 0 0 2px #f44336;
}

.input--is-disabled .input__content__input {
  box-shadow: inset 0 0 0 1px #e0dde3;
  --text-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--text-opacity));
  cursor: not-allowed;
}

.input__content__label {
  font-size: 0.875rem;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 50%;
  margin-left: 1rem;
  transform: translateY(-50%);
  transition: all 0.125s, color 0s;
}

.input__content__label__autosize {
  top: 24px;
}

.input--has-icon .input__content__label {
  margin-left: 3.5rem;
}

.input--has-value .input__content__label {
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
}

.input:not(.input--is-disabled) .input__content__input:focus + .input__content__label,
.input:not(.input--is-disabled) .input__content__input:active + .input__content__label,
.input--has-value .input__content__label,
.input--is-date .input__content__label,
.input--is-disabled.input--has-value .input__content__label {
  transform: translate(-12%, -100%) scale(0.75);
}

.input--is-error .input__content__label,
.input--is-error .input__content__input:focus + .input__content__label,
.input--is-error .input__content__input:active + .input__content__label,
.input--is-error.input--has-value .input__content__label,
.input--is-error.input--is-disabled.input--has-value .input__content__label {
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.input:not(.input--is-disabled) .input__content__input:focus + .input__content__label,
.input:not(.input--is-disabled) .input__content__input:active + .input__content__label {
  --text-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--text-opacity));
}

.input--is-disabled.input--has-value .input__content__label,
.input--is-disabled .input__content__label {
  --text-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--text-opacity));
}

.input--is-loose .input__content__input {
  font-size: 1rem;
  font-weight: 400;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
}

.input--is-loose .input__content__label {
  font-size: 1rem;
  font-weight: 400;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
}

.input--is-loose.input--has-label .input__content__input {
  padding-top: 1.5rem;
}

.input--is-loose .input__content__input {
  padding-bottom: 0.5rem;
}

.input--no-blinker input {
  color: transparent !important;
  text-shadow: 0 0 0 #000000 !important;
}

.input--no-blinker.input--is-disabled input {
  color: transparent !important;
  text-shadow: 0 0 0 #c8c5ca !important;
}

.input--is-date .input__content__input {
  height: 3rem; /* necessary to normalize between chrome and firefox */
  padding-bottom: 0.22rem;
  padding-right: 6px;
}

.select {
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.select:not(.select--is-full-width) {
  max-width: 32.5rem;
}

.select__content {
  position: relative;
}

.select--is-error .select__content {
  margin-bottom: 0;
}

.select--is-error .select__content__label {
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.select__content__label {
  font-size: 0.75rem;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
  display: block;
  height: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 0.375rem;
  padding-left: 1rem;
  transition: all 0.125s, color 0s;
}

.select--has-value .select__content__label {
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
}

.select--is-focused .select__content__label {
  --text-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--text-opacity));
}

.select .select__content__react-select__control {
  border-style: none;
  border-radius: 0;
  box-shadow: inset 0 0 0 1px #aeacb0;
  padding-bottom: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.3125rem;
  width: 100%;
  font-size: 0.875rem;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
  background-color: transparent;
  min-height: 0;
  transition: box-shadow 0ms;
}

.select.select--is-highlight .select__content__react-select__control {
  box-shadow: inset 0 0 0 1px #f7a500;
}

.select .select__content__react-select__placeholder {
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
}

.select .select__content__react-select__control:hover,
.select.select--is-highlight .select__content__react-select__control:hover {
  box-shadow: inset 0 0 0 1px #181818;
}

.select .select__content__react-select__control.select__content__react-select__control--is-focused,
.select.select--is-highlight
  .select__content__react-select__control.select__content__react-select__control--is-focused {
  box-shadow: inset 0 0 0 2px #6f2ca0;
}

.select .select__content__react-select__value-container,
.select .select__content__react-select__value-container > div {
  margin: 0;
  padding: 0;
}

.select .select__content__react-select__menu {
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  border-width: 1px;
  border-top-width: 0;
  --border-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--border-opacity));
}

.select .select__content__react-select__menu-list {
  padding: 0;
}

.select .select__content__react-select__option {
  font-size: 1rem;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
}

.select .select__content__react-select__option.select__content__react-select__option--is-selected {
  --bg-opacity: 1;
  background-color: #faf7fd;
  background-color: rgba(250, 247, 253, var(--bg-opacity));
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
}

.select .select__content__react-select__option.select__content__react-select__option--is-focused {
  --bg-opacity: 1;
  background-color: #6f2ca0;
  background-color: rgba(111, 44, 160, var(--bg-opacity));
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.select .select__content__react-select__indicator.select__content__react-select__clear-indicator {
  display: none;
}

.select--theme-select .select__content__react-select__dropdown-indicator {
  padding-left: 0.25rem;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  top: -40%;
}

.select--is-error .select__content__react-select__control,
.select--is-error .select__content__react-select__control:hover,
.select--is-error.select--is-highlight .select__content__react-select__control,
.select--is-error.select--is-highlight .select__content__react-select__control:hover {
  box-shadow: inset 0 0 0 1px #f44336;
}

.select.select--is-error .select__content__react-select__control.select__content__react-select__control--is-focused,
.select.select--is-error.select--is-highlight
  .select__content__react-select__control.select__content__react-select__control--is-focused {
  box-shadow: inset 0 0 0 2px #f44336;
}

.select__content__react-select__indicators {
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
  fill: currentColor;
}

.select--is-disabled {
  cursor: not-allowed;
}

.select--is-disabled .select__content__react-select__control,
.select--is-disabled .select__content__react-select__placeholder,
.select--is-disabled .select__content__label,
.select--is-disabled .select__content__react-select__indicators {
  --text-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--text-opacity));
  cursor: not-allowed;
}

.select--is-disabled .select__content__react-select__control {
  box-shadow: inset 0 0 0 1px #e0dde3;
}

.select__content__react-select__single-value--is-disabled {
  --text-opacity: 1 !important;
  color: #c8c5ca !important;
  color: rgba(200, 197, 202, var(--text-opacity)) !important;
}

.select--theme-search .select__content__react-select__indicators {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  margin-top: 1rem;
  --bg-opacity: 1;
  background-color: #faf7fd;
  background-color: rgba(250, 247, 253, var(--bg-opacity));
}

.select--theme-search .select__content__react-select__value-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  margin-top: 1rem;
  --bg-opacity: 1;
  background-color: #faf7fd;
  background-color: rgba(250, 247, 253, var(--bg-opacity));
}

.select--theme-search .select__content__react-select__control {
  padding-bottom: 1rem;
}

.select--is-loose .select__content__label {
  font-size: 0.75rem;
  font-weight: 400;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
  padding-top: 0.5rem;
}

.select.select--is-loose .select__content__react-select__control {
  font-size: 1rem;
  font-weight: 400;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
  padding-bottom: 0.5rem;
  padding-top: 1.5rem;
}

.split-input {
  display: flex;
  align-items: stretch;
  align-content: flex-start;
}

.split-input > * {
  flex-grow: 1;
}

.col-span {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.col-span:first-child {
  padding-left: 0;
}

.col-span:last-child {
  padding-right: 0;
}

.split-input--split-2 > .col-span {
  width: 50%;
}

.split-input--split-3 > .col-span {
  width: 33.333333%;
}

.split-input--split-3 > .col-span-2 {
  width: 66.666667%;
}

.split-input--split-4 > .col-span {
  width: 25%;
}

.split-input--split-4 > .col-span-2 {
  width: 50%;
}

.split-input--split-4 > .col-span-3 {
  width: 75%;
}

/* The switch - the box around the slider */

.Toggle {
  width: 66px;
  height: 28px;
}

.Toggle.checked .slider {
  transform: translateX(38px);
}

.Toggle .slider {
  left: 2px;
  bottom: 2px;
}

.toy-select .select__content__react-select__option.select__content__react-select__option--is-focused {
  --bg-opacity: 1;
  background-color: #faf7fd;
  background-color: rgba(250, 247, 253, var(--bg-opacity));
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 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;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* 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 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-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.
 */

[type="search"]::-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 Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/**
 * 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;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

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: 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 */
}

/**
 * 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 {
  color: #a0aec0;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #a0aec0;
}

input::placeholder,
textarea::placeholder {
  color: #a0aec0;
}

button,
[role="button"] {
  cursor: pointer;
}

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: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 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
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

.container{
  width: 100%;
}

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

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

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

.hover\:container:hover{
  width: 100%;
}

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

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

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

.focus\:container:focus{
  width: 100%;
}

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

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

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

.active\:container:active{
  width: 100%;
}

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

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

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

.first\:container:first-child{
  width: 100%;
}

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

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

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

.last\:container:last-child{
  width: 100%;
}

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

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

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

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

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

.space-y-1 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--space-y-reverse));
}

.space-x-1 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
}

.space-y-2 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--space-y-reverse));
}

.space-x-2 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
}

.space-y-3 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--space-y-reverse));
}

.space-x-3 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
}

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

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

.space-y-5 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--space-y-reverse));
}

.space-x-5 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
}

.space-y-6 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--space-y-reverse));
}

.space-x-6 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
}

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

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

.space-y-10 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--space-y-reverse));
}

.space-x-10 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2.5rem * var(--space-x-reverse));
  margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
}

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

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

.space-y-14 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3.5rem * var(--space-y-reverse));
}

.space-x-14 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3.5rem * var(--space-x-reverse));
  margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
}

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

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

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

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

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

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

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

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

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

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

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

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

.space-y-56 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(14rem * var(--space-y-reverse));
}

.space-x-56 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(14rem * var(--space-x-reverse));
  margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
}

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

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

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

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

.-space-y-1 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.25rem * var(--space-y-reverse));
}

.-space-x-1 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.25rem * var(--space-x-reverse));
  margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
}

.-space-y-2 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.5rem * var(--space-y-reverse));
}

.-space-x-2 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
}

.-space-y-3 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.75rem * var(--space-y-reverse));
}

.-space-x-3 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.75rem * var(--space-x-reverse));
  margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
}

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

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

.-space-y-5 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.25rem * var(--space-y-reverse));
}

.-space-x-5 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.25rem * var(--space-x-reverse));
  margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
}

.-space-y-6 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.5rem * var(--space-y-reverse));
}

.-space-x-6 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.5rem * var(--space-x-reverse));
  margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
}

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

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

.-space-y-10 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2.5rem * var(--space-y-reverse));
}

.-space-x-10 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2.5rem * var(--space-x-reverse));
  margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
}

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

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

.-space-y-14 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3.5rem * var(--space-y-reverse));
}

.-space-x-14 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3.5rem * var(--space-x-reverse));
  margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
}

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

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

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

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

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

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

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

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

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

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

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

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

.-space-y-56 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-14rem * var(--space-y-reverse));
}

.-space-x-56 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-14rem * var(--space-x-reverse));
  margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
}

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

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

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

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

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

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

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

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

.hover\:space-y-1:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--space-y-reverse));
}

.hover\:space-x-1:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-2:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--space-y-reverse));
}

.hover\:space-x-2:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-3:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--space-y-reverse));
}

.hover\:space-x-3:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-4:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1rem * var(--space-y-reverse));
}

.hover\:space-x-4:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1rem * var(--space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-5:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--space-y-reverse));
}

.hover\:space-x-5:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-6:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--space-y-reverse));
}

.hover\:space-x-6:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-8:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2rem * var(--space-y-reverse));
}

.hover\:space-x-8:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2rem * var(--space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-10:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--space-y-reverse));
}

.hover\:space-x-10:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2.5rem * var(--space-x-reverse));
  margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-12:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3rem * var(--space-y-reverse));
}

.hover\:space-x-12:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3rem * var(--space-x-reverse));
  margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-14:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3.5rem * var(--space-y-reverse));
}

.hover\:space-x-14:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3.5rem * var(--space-x-reverse));
  margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-16:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(4rem * var(--space-y-reverse));
}

.hover\:space-x-16:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(4rem * var(--space-x-reverse));
  margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-20:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(5rem * var(--space-y-reverse));
}

.hover\:space-x-20:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(5rem * var(--space-x-reverse));
  margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-24:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(6rem * var(--space-y-reverse));
}

.hover\:space-x-24:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(6rem * var(--space-x-reverse));
  margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-32:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(8rem * var(--space-y-reverse));
}

.hover\:space-x-32:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(8rem * var(--space-x-reverse));
  margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-40:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(10rem * var(--space-y-reverse));
}

.hover\:space-x-40:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(10rem * var(--space-x-reverse));
  margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-48:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(12rem * var(--space-y-reverse));
}

.hover\:space-x-48:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(12rem * var(--space-x-reverse));
  margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-56:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(14rem * var(--space-y-reverse));
}

.hover\:space-x-56:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(14rem * var(--space-x-reverse));
  margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
}

.hover\:space-y-64:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(16rem * var(--space-y-reverse));
}

.hover\:space-x-64:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(16rem * var(--space-x-reverse));
  margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
}

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

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

.hover\:-space-y-1:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.25rem * var(--space-y-reverse));
}

.hover\:-space-x-1:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.25rem * var(--space-x-reverse));
  margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-2:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.5rem * var(--space-y-reverse));
}

.hover\:-space-x-2:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-3:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.75rem * var(--space-y-reverse));
}

.hover\:-space-x-3:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.75rem * var(--space-x-reverse));
  margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-4:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1rem * var(--space-y-reverse));
}

.hover\:-space-x-4:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1rem * var(--space-x-reverse));
  margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-5:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.25rem * var(--space-y-reverse));
}

.hover\:-space-x-5:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.25rem * var(--space-x-reverse));
  margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-6:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.5rem * var(--space-y-reverse));
}

.hover\:-space-x-6:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.5rem * var(--space-x-reverse));
  margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-8:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2rem * var(--space-y-reverse));
}

.hover\:-space-x-8:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2rem * var(--space-x-reverse));
  margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-10:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2.5rem * var(--space-y-reverse));
}

.hover\:-space-x-10:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2.5rem * var(--space-x-reverse));
  margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-12:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3rem * var(--space-y-reverse));
}

.hover\:-space-x-12:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3rem * var(--space-x-reverse));
  margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-14:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3.5rem * var(--space-y-reverse));
}

.hover\:-space-x-14:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3.5rem * var(--space-x-reverse));
  margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-16:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-4rem * var(--space-y-reverse));
}

.hover\:-space-x-16:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-4rem * var(--space-x-reverse));
  margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-20:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-5rem * var(--space-y-reverse));
}

.hover\:-space-x-20:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-5rem * var(--space-x-reverse));
  margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-24:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-6rem * var(--space-y-reverse));
}

.hover\:-space-x-24:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-6rem * var(--space-x-reverse));
  margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-32:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-8rem * var(--space-y-reverse));
}

.hover\:-space-x-32:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-8rem * var(--space-x-reverse));
  margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-40:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-10rem * var(--space-y-reverse));
}

.hover\:-space-x-40:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-10rem * var(--space-x-reverse));
  margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-48:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-12rem * var(--space-y-reverse));
}

.hover\:-space-x-48:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-12rem * var(--space-x-reverse));
  margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-56:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-14rem * var(--space-y-reverse));
}

.hover\:-space-x-56:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-14rem * var(--space-x-reverse));
  margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
}

.hover\:-space-y-64:hover > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-16rem * var(--space-y-reverse));
}

.hover\:-space-x-64:hover > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-16rem * var(--space-x-reverse));
  margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
}

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

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

.hover\:space-y-reverse:hover > :not(template) ~ :not(template){
  --space-y-reverse: 1;
}

.hover\:space-x-reverse:hover > :not(template) ~ :not(template){
  --space-x-reverse: 1;
}

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

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

.focus\:space-y-1:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--space-y-reverse));
}

.focus\:space-x-1:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-2:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--space-y-reverse));
}

.focus\:space-x-2:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-3:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--space-y-reverse));
}

.focus\:space-x-3:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-4:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1rem * var(--space-y-reverse));
}

.focus\:space-x-4:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1rem * var(--space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-5:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--space-y-reverse));
}

.focus\:space-x-5:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-6:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--space-y-reverse));
}

.focus\:space-x-6:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-8:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2rem * var(--space-y-reverse));
}

.focus\:space-x-8:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2rem * var(--space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-10:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--space-y-reverse));
}

.focus\:space-x-10:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2.5rem * var(--space-x-reverse));
  margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-12:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3rem * var(--space-y-reverse));
}

.focus\:space-x-12:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3rem * var(--space-x-reverse));
  margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-14:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3.5rem * var(--space-y-reverse));
}

.focus\:space-x-14:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3.5rem * var(--space-x-reverse));
  margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-16:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(4rem * var(--space-y-reverse));
}

.focus\:space-x-16:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(4rem * var(--space-x-reverse));
  margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-20:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(5rem * var(--space-y-reverse));
}

.focus\:space-x-20:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(5rem * var(--space-x-reverse));
  margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-24:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(6rem * var(--space-y-reverse));
}

.focus\:space-x-24:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(6rem * var(--space-x-reverse));
  margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-32:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(8rem * var(--space-y-reverse));
}

.focus\:space-x-32:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(8rem * var(--space-x-reverse));
  margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-40:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(10rem * var(--space-y-reverse));
}

.focus\:space-x-40:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(10rem * var(--space-x-reverse));
  margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-48:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(12rem * var(--space-y-reverse));
}

.focus\:space-x-48:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(12rem * var(--space-x-reverse));
  margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-56:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(14rem * var(--space-y-reverse));
}

.focus\:space-x-56:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(14rem * var(--space-x-reverse));
  margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
}

.focus\:space-y-64:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(16rem * var(--space-y-reverse));
}

.focus\:space-x-64:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(16rem * var(--space-x-reverse));
  margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
}

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

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

.focus\:-space-y-1:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.25rem * var(--space-y-reverse));
}

.focus\:-space-x-1:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.25rem * var(--space-x-reverse));
  margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-2:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.5rem * var(--space-y-reverse));
}

.focus\:-space-x-2:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-3:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.75rem * var(--space-y-reverse));
}

.focus\:-space-x-3:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.75rem * var(--space-x-reverse));
  margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-4:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1rem * var(--space-y-reverse));
}

.focus\:-space-x-4:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1rem * var(--space-x-reverse));
  margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-5:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.25rem * var(--space-y-reverse));
}

.focus\:-space-x-5:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.25rem * var(--space-x-reverse));
  margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-6:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.5rem * var(--space-y-reverse));
}

.focus\:-space-x-6:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.5rem * var(--space-x-reverse));
  margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-8:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2rem * var(--space-y-reverse));
}

.focus\:-space-x-8:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2rem * var(--space-x-reverse));
  margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-10:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2.5rem * var(--space-y-reverse));
}

.focus\:-space-x-10:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2.5rem * var(--space-x-reverse));
  margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-12:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3rem * var(--space-y-reverse));
}

.focus\:-space-x-12:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3rem * var(--space-x-reverse));
  margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-14:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3.5rem * var(--space-y-reverse));
}

.focus\:-space-x-14:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3.5rem * var(--space-x-reverse));
  margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-16:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-4rem * var(--space-y-reverse));
}

.focus\:-space-x-16:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-4rem * var(--space-x-reverse));
  margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-20:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-5rem * var(--space-y-reverse));
}

.focus\:-space-x-20:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-5rem * var(--space-x-reverse));
  margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-24:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-6rem * var(--space-y-reverse));
}

.focus\:-space-x-24:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-6rem * var(--space-x-reverse));
  margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-32:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-8rem * var(--space-y-reverse));
}

.focus\:-space-x-32:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-8rem * var(--space-x-reverse));
  margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-40:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-10rem * var(--space-y-reverse));
}

.focus\:-space-x-40:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-10rem * var(--space-x-reverse));
  margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-48:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-12rem * var(--space-y-reverse));
}

.focus\:-space-x-48:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-12rem * var(--space-x-reverse));
  margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-56:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-14rem * var(--space-y-reverse));
}

.focus\:-space-x-56:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-14rem * var(--space-x-reverse));
  margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
}

.focus\:-space-y-64:focus > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-16rem * var(--space-y-reverse));
}

.focus\:-space-x-64:focus > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-16rem * var(--space-x-reverse));
  margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
}

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

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

.focus\:space-y-reverse:focus > :not(template) ~ :not(template){
  --space-y-reverse: 1;
}

.focus\:space-x-reverse:focus > :not(template) ~ :not(template){
  --space-x-reverse: 1;
}

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

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

.active\:space-y-1:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--space-y-reverse));
}

.active\:space-x-1:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-2:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--space-y-reverse));
}

.active\:space-x-2:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-3:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--space-y-reverse));
}

.active\:space-x-3:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-4:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1rem * var(--space-y-reverse));
}

.active\:space-x-4:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1rem * var(--space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-5:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--space-y-reverse));
}

.active\:space-x-5:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-6:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--space-y-reverse));
}

.active\:space-x-6:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-8:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2rem * var(--space-y-reverse));
}

.active\:space-x-8:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2rem * var(--space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-10:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--space-y-reverse));
}

.active\:space-x-10:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2.5rem * var(--space-x-reverse));
  margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-12:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3rem * var(--space-y-reverse));
}

.active\:space-x-12:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3rem * var(--space-x-reverse));
  margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-14:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3.5rem * var(--space-y-reverse));
}

.active\:space-x-14:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3.5rem * var(--space-x-reverse));
  margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-16:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(4rem * var(--space-y-reverse));
}

.active\:space-x-16:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(4rem * var(--space-x-reverse));
  margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-20:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(5rem * var(--space-y-reverse));
}

.active\:space-x-20:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(5rem * var(--space-x-reverse));
  margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-24:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(6rem * var(--space-y-reverse));
}

.active\:space-x-24:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(6rem * var(--space-x-reverse));
  margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-32:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(8rem * var(--space-y-reverse));
}

.active\:space-x-32:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(8rem * var(--space-x-reverse));
  margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-40:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(10rem * var(--space-y-reverse));
}

.active\:space-x-40:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(10rem * var(--space-x-reverse));
  margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-48:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(12rem * var(--space-y-reverse));
}

.active\:space-x-48:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(12rem * var(--space-x-reverse));
  margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-56:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(14rem * var(--space-y-reverse));
}

.active\:space-x-56:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(14rem * var(--space-x-reverse));
  margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
}

.active\:space-y-64:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(16rem * var(--space-y-reverse));
}

.active\:space-x-64:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(16rem * var(--space-x-reverse));
  margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
}

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

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

.active\:-space-y-1:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.25rem * var(--space-y-reverse));
}

.active\:-space-x-1:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.25rem * var(--space-x-reverse));
  margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-2:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.5rem * var(--space-y-reverse));
}

.active\:-space-x-2:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-3:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.75rem * var(--space-y-reverse));
}

.active\:-space-x-3:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.75rem * var(--space-x-reverse));
  margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-4:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1rem * var(--space-y-reverse));
}

.active\:-space-x-4:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1rem * var(--space-x-reverse));
  margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-5:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.25rem * var(--space-y-reverse));
}

.active\:-space-x-5:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.25rem * var(--space-x-reverse));
  margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-6:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.5rem * var(--space-y-reverse));
}

.active\:-space-x-6:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.5rem * var(--space-x-reverse));
  margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-8:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2rem * var(--space-y-reverse));
}

.active\:-space-x-8:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2rem * var(--space-x-reverse));
  margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-10:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2.5rem * var(--space-y-reverse));
}

.active\:-space-x-10:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2.5rem * var(--space-x-reverse));
  margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-12:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3rem * var(--space-y-reverse));
}

.active\:-space-x-12:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3rem * var(--space-x-reverse));
  margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-14:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3.5rem * var(--space-y-reverse));
}

.active\:-space-x-14:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3.5rem * var(--space-x-reverse));
  margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-16:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-4rem * var(--space-y-reverse));
}

.active\:-space-x-16:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-4rem * var(--space-x-reverse));
  margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-20:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-5rem * var(--space-y-reverse));
}

.active\:-space-x-20:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-5rem * var(--space-x-reverse));
  margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-24:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-6rem * var(--space-y-reverse));
}

.active\:-space-x-24:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-6rem * var(--space-x-reverse));
  margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-32:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-8rem * var(--space-y-reverse));
}

.active\:-space-x-32:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-8rem * var(--space-x-reverse));
  margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-40:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-10rem * var(--space-y-reverse));
}

.active\:-space-x-40:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-10rem * var(--space-x-reverse));
  margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-48:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-12rem * var(--space-y-reverse));
}

.active\:-space-x-48:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-12rem * var(--space-x-reverse));
  margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-56:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-14rem * var(--space-y-reverse));
}

.active\:-space-x-56:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-14rem * var(--space-x-reverse));
  margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
}

.active\:-space-y-64:active > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-16rem * var(--space-y-reverse));
}

.active\:-space-x-64:active > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-16rem * var(--space-x-reverse));
  margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
}

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

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

.active\:space-y-reverse:active > :not(template) ~ :not(template){
  --space-y-reverse: 1;
}

.active\:space-x-reverse:active > :not(template) ~ :not(template){
  --space-x-reverse: 1;
}

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

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

.first\:space-y-1:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--space-y-reverse));
}

.first\:space-x-1:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-2:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--space-y-reverse));
}

.first\:space-x-2:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-3:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--space-y-reverse));
}

.first\:space-x-3:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-4:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1rem * var(--space-y-reverse));
}

.first\:space-x-4:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1rem * var(--space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-5:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--space-y-reverse));
}

.first\:space-x-5:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-6:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--space-y-reverse));
}

.first\:space-x-6:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-8:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2rem * var(--space-y-reverse));
}

.first\:space-x-8:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2rem * var(--space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-10:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--space-y-reverse));
}

.first\:space-x-10:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2.5rem * var(--space-x-reverse));
  margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-12:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3rem * var(--space-y-reverse));
}

.first\:space-x-12:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3rem * var(--space-x-reverse));
  margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-14:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3.5rem * var(--space-y-reverse));
}

.first\:space-x-14:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3.5rem * var(--space-x-reverse));
  margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-16:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(4rem * var(--space-y-reverse));
}

.first\:space-x-16:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(4rem * var(--space-x-reverse));
  margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-20:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(5rem * var(--space-y-reverse));
}

.first\:space-x-20:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(5rem * var(--space-x-reverse));
  margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-24:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(6rem * var(--space-y-reverse));
}

.first\:space-x-24:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(6rem * var(--space-x-reverse));
  margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-32:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(8rem * var(--space-y-reverse));
}

.first\:space-x-32:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(8rem * var(--space-x-reverse));
  margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-40:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(10rem * var(--space-y-reverse));
}

.first\:space-x-40:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(10rem * var(--space-x-reverse));
  margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-48:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(12rem * var(--space-y-reverse));
}

.first\:space-x-48:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(12rem * var(--space-x-reverse));
  margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-56:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(14rem * var(--space-y-reverse));
}

.first\:space-x-56:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(14rem * var(--space-x-reverse));
  margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
}

.first\:space-y-64:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(16rem * var(--space-y-reverse));
}

.first\:space-x-64:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(16rem * var(--space-x-reverse));
  margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
}

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

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

.first\:-space-y-1:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.25rem * var(--space-y-reverse));
}

.first\:-space-x-1:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.25rem * var(--space-x-reverse));
  margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-2:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.5rem * var(--space-y-reverse));
}

.first\:-space-x-2:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-3:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.75rem * var(--space-y-reverse));
}

.first\:-space-x-3:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.75rem * var(--space-x-reverse));
  margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-4:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1rem * var(--space-y-reverse));
}

.first\:-space-x-4:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1rem * var(--space-x-reverse));
  margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-5:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.25rem * var(--space-y-reverse));
}

.first\:-space-x-5:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.25rem * var(--space-x-reverse));
  margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-6:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.5rem * var(--space-y-reverse));
}

.first\:-space-x-6:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.5rem * var(--space-x-reverse));
  margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-8:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2rem * var(--space-y-reverse));
}

.first\:-space-x-8:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2rem * var(--space-x-reverse));
  margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-10:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2.5rem * var(--space-y-reverse));
}

.first\:-space-x-10:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2.5rem * var(--space-x-reverse));
  margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-12:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3rem * var(--space-y-reverse));
}

.first\:-space-x-12:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3rem * var(--space-x-reverse));
  margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-14:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3.5rem * var(--space-y-reverse));
}

.first\:-space-x-14:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3.5rem * var(--space-x-reverse));
  margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-16:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-4rem * var(--space-y-reverse));
}

.first\:-space-x-16:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-4rem * var(--space-x-reverse));
  margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-20:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-5rem * var(--space-y-reverse));
}

.first\:-space-x-20:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-5rem * var(--space-x-reverse));
  margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-24:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-6rem * var(--space-y-reverse));
}

.first\:-space-x-24:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-6rem * var(--space-x-reverse));
  margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-32:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-8rem * var(--space-y-reverse));
}

.first\:-space-x-32:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-8rem * var(--space-x-reverse));
  margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-40:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-10rem * var(--space-y-reverse));
}

.first\:-space-x-40:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-10rem * var(--space-x-reverse));
  margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-48:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-12rem * var(--space-y-reverse));
}

.first\:-space-x-48:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-12rem * var(--space-x-reverse));
  margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-56:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-14rem * var(--space-y-reverse));
}

.first\:-space-x-56:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-14rem * var(--space-x-reverse));
  margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
}

.first\:-space-y-64:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-16rem * var(--space-y-reverse));
}

.first\:-space-x-64:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-16rem * var(--space-x-reverse));
  margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
}

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

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

.first\:space-y-reverse:first-child > :not(template) ~ :not(template){
  --space-y-reverse: 1;
}

.first\:space-x-reverse:first-child > :not(template) ~ :not(template){
  --space-x-reverse: 1;
}

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

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

.last\:space-y-1:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--space-y-reverse));
}

.last\:space-x-1:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-2:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--space-y-reverse));
}

.last\:space-x-2:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-3:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--space-y-reverse));
}

.last\:space-x-3:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-4:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1rem * var(--space-y-reverse));
}

.last\:space-x-4:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1rem * var(--space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-5:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--space-y-reverse));
}

.last\:space-x-5:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-6:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--space-y-reverse));
}

.last\:space-x-6:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-8:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2rem * var(--space-y-reverse));
}

.last\:space-x-8:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2rem * var(--space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-10:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--space-y-reverse));
}

.last\:space-x-10:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(2.5rem * var(--space-x-reverse));
  margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-12:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3rem * var(--space-y-reverse));
}

.last\:space-x-12:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3rem * var(--space-x-reverse));
  margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-14:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(3.5rem * var(--space-y-reverse));
}

.last\:space-x-14:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(3.5rem * var(--space-x-reverse));
  margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-16:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(4rem * var(--space-y-reverse));
}

.last\:space-x-16:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(4rem * var(--space-x-reverse));
  margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-20:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(5rem * var(--space-y-reverse));
}

.last\:space-x-20:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(5rem * var(--space-x-reverse));
  margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-24:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(6rem * var(--space-y-reverse));
}

.last\:space-x-24:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(6rem * var(--space-x-reverse));
  margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-32:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(8rem * var(--space-y-reverse));
}

.last\:space-x-32:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(8rem * var(--space-x-reverse));
  margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-40:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(10rem * var(--space-y-reverse));
}

.last\:space-x-40:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(10rem * var(--space-x-reverse));
  margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-48:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(12rem * var(--space-y-reverse));
}

.last\:space-x-48:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(12rem * var(--space-x-reverse));
  margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-56:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(14rem * var(--space-y-reverse));
}

.last\:space-x-56:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(14rem * var(--space-x-reverse));
  margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
}

.last\:space-y-64:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(16rem * var(--space-y-reverse));
}

.last\:space-x-64:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(16rem * var(--space-x-reverse));
  margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
}

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

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

.last\:-space-y-1:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.25rem * var(--space-y-reverse));
}

.last\:-space-x-1:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.25rem * var(--space-x-reverse));
  margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-2:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.5rem * var(--space-y-reverse));
}

.last\:-space-x-2:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-3:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-0.75rem * var(--space-y-reverse));
}

.last\:-space-x-3:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-0.75rem * var(--space-x-reverse));
  margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-4:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1rem * var(--space-y-reverse));
}

.last\:-space-x-4:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1rem * var(--space-x-reverse));
  margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-5:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.25rem * var(--space-y-reverse));
}

.last\:-space-x-5:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.25rem * var(--space-x-reverse));
  margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-6:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-1.5rem * var(--space-y-reverse));
}

.last\:-space-x-6:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-1.5rem * var(--space-x-reverse));
  margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-8:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2rem * var(--space-y-reverse));
}

.last\:-space-x-8:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2rem * var(--space-x-reverse));
  margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-10:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-2.5rem * var(--space-y-reverse));
}

.last\:-space-x-10:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-2.5rem * var(--space-x-reverse));
  margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-12:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3rem * var(--space-y-reverse));
}

.last\:-space-x-12:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3rem * var(--space-x-reverse));
  margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-14:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-3.5rem * var(--space-y-reverse));
}

.last\:-space-x-14:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-3.5rem * var(--space-x-reverse));
  margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-16:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-4rem * var(--space-y-reverse));
}

.last\:-space-x-16:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-4rem * var(--space-x-reverse));
  margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-20:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-5rem * var(--space-y-reverse));
}

.last\:-space-x-20:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-5rem * var(--space-x-reverse));
  margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-24:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-6rem * var(--space-y-reverse));
}

.last\:-space-x-24:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-6rem * var(--space-x-reverse));
  margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-32:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-8rem * var(--space-y-reverse));
}

.last\:-space-x-32:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-8rem * var(--space-x-reverse));
  margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-40:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-10rem * var(--space-y-reverse));
}

.last\:-space-x-40:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-10rem * var(--space-x-reverse));
  margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-48:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-12rem * var(--space-y-reverse));
}

.last\:-space-x-48:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-12rem * var(--space-x-reverse));
  margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-56:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-14rem * var(--space-y-reverse));
}

.last\:-space-x-56:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-14rem * var(--space-x-reverse));
  margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
}

.last\:-space-y-64:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-16rem * var(--space-y-reverse));
}

.last\:-space-x-64:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-16rem * var(--space-x-reverse));
  margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
}

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

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

.last\:space-y-reverse:last-child > :not(template) ~ :not(template){
  --space-y-reverse: 1;
}

.last\:space-x-reverse:last-child > :not(template) ~ :not(template){
  --space-x-reverse: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover\:divide-y-reverse:hover > :not(template) ~ :not(template){
  --divide-y-reverse: 1;
}

.hover\:divide-x-reverse:hover > :not(template) ~ :not(template){
  --divide-x-reverse: 1;
}

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

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

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

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

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

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

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

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

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

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

.focus\:divide-y-reverse:focus > :not(template) ~ :not(template){
  --divide-y-reverse: 1;
}

.focus\:divide-x-reverse:focus > :not(template) ~ :not(template){
  --divide-x-reverse: 1;
}

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

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

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

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

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

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

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

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

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

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

.active\:divide-y-reverse:active > :not(template) ~ :not(template){
  --divide-y-reverse: 1;
}

.active\:divide-x-reverse:active > :not(template) ~ :not(template){
  --divide-x-reverse: 1;
}

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

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

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

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

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

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

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

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

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

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

.first\:divide-y-reverse:first-child > :not(template) ~ :not(template){
  --divide-y-reverse: 1;
}

.first\:divide-x-reverse:first-child > :not(template) ~ :not(template){
  --divide-x-reverse: 1;
}

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

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

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

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

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

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

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

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

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

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

.last\:divide-y-reverse:last-child > :not(template) ~ :not(template){
  --divide-y-reverse: 1;
}

.last\:divide-x-reverse:last-child > :not(template) ~ :not(template){
  --divide-x-reverse: 1;
}

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

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

.divide-error > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.divide-success > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.divide-white-10 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--divide-opacity));
}

.divide-white-20 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--divide-opacity));
}

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

.divide-cheeto > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--divide-opacity));
}

.divide-cheeto-very-light > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--divide-opacity));
}

.divide-cheeto-light > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--divide-opacity));
}

.divide-cheeto-dark > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--divide-opacity));
}

.divide-cheeto-hocus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--divide-opacity));
}

.divide-cheeto-active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--divide-opacity));
}

.divide-cheeto-ml-plus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--divide-opacity));
}

.divide-cheeto-banner > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--divide-opacity));
}

.divide-gracy-1 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--divide-opacity));
}

.divide-gracy-10 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--divide-opacity));
}

.divide-gracy-20 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--divide-opacity));
}

.divide-gracy-30 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--divide-opacity));
}

.divide-gracy-40 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--divide-opacity));
}

.divide-gracy-50 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--divide-opacity));
}

.divide-gracy-60 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--divide-opacity));
}

.divide-gracy-70 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--divide-opacity));
}

.divide-gracy-80 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--divide-opacity));
}

.divide-gracy-90 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--divide-opacity));
}

.divide-gracy-100 > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--divide-opacity));
}

.divide-gracy > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--divide-opacity));
}

.divide-gracy-overlay-90 > :not(template) ~ :not(template){
  border-color: rgba(50,49,50,0.5);
}

.divide-login > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--divide-opacity));
}

.divide-olive-light > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--divide-opacity));
}

.divide-olive-drab > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.divide-olive-dark > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--divide-opacity));
}

.divide-daisy-light > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--divide-opacity));
}

.divide-feedback-gumby > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--divide-opacity));
}

.divide-feedback-daisy > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--divide-opacity));
}

.divide-feedback-pokey > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--divide-opacity));
}

.divide-feedback-aster > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--divide-opacity));
}

.divide-feedback-aster-dark > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--divide-opacity));
}

.divide-feedback-roxo > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--divide-opacity));
}

.divide-feedback-error > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.divide-feedback-success > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.divide-functional-aoki > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--divide-opacity));
}

.divide-functional-aoki-dark > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--divide-opacity));
}

.divide-functional-aoki-hocus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--divide-opacity));
}

.divide-functional-aoki-active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--divide-opacity));
}

.divide-functional-aoki-light > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--divide-opacity));
}

.divide-functional-kermit > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--divide-opacity));
}

.divide-mixlabPlus-light > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--divide-opacity));
}

.divide-primary-orange-light > :not(template) ~ :not(template){
  border-color: ;
}

.divide-off-white > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--divide-opacity));
}

.hover\:divide-black:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--divide-opacity));
}

.hover\:divide-transparent:hover > :not(template) ~ :not(template){
  border-color: transparent;
}

.hover\:divide-error:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.hover\:divide-success:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.hover\:divide-white-10:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--divide-opacity));
}

.hover\:divide-white-20:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--divide-opacity));
}

.hover\:divide-white:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--divide-opacity));
}

.hover\:divide-cheeto:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--divide-opacity));
}

.hover\:divide-cheeto-very-light:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--divide-opacity));
}

.hover\:divide-cheeto-light:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--divide-opacity));
}

.hover\:divide-cheeto-dark:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--divide-opacity));
}

.hover\:divide-cheeto-hocus:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--divide-opacity));
}

.hover\:divide-cheeto-active:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--divide-opacity));
}

.hover\:divide-cheeto-ml-plus:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--divide-opacity));
}

.hover\:divide-cheeto-banner:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--divide-opacity));
}

.hover\:divide-gracy-1:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--divide-opacity));
}

.hover\:divide-gracy-10:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--divide-opacity));
}

.hover\:divide-gracy-20:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--divide-opacity));
}

.hover\:divide-gracy-30:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--divide-opacity));
}

.hover\:divide-gracy-40:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--divide-opacity));
}

.hover\:divide-gracy-50:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--divide-opacity));
}

.hover\:divide-gracy-60:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--divide-opacity));
}

.hover\:divide-gracy-70:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--divide-opacity));
}

.hover\:divide-gracy-80:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--divide-opacity));
}

.hover\:divide-gracy-90:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--divide-opacity));
}

.hover\:divide-gracy-100:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--divide-opacity));
}

.hover\:divide-gracy:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--divide-opacity));
}

.hover\:divide-gracy-overlay-90:hover > :not(template) ~ :not(template){
  border-color: rgba(50,49,50,0.5);
}

.hover\:divide-login:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--divide-opacity));
}

.hover\:divide-olive-light:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--divide-opacity));
}

.hover\:divide-olive-drab:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.hover\:divide-olive-dark:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--divide-opacity));
}

.hover\:divide-daisy-light:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--divide-opacity));
}

.hover\:divide-feedback-gumby:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--divide-opacity));
}

.hover\:divide-feedback-daisy:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--divide-opacity));
}

.hover\:divide-feedback-pokey:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--divide-opacity));
}

.hover\:divide-feedback-aster:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--divide-opacity));
}

.hover\:divide-feedback-aster-dark:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--divide-opacity));
}

.hover\:divide-feedback-roxo:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--divide-opacity));
}

.hover\:divide-feedback-error:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.hover\:divide-feedback-success:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.hover\:divide-functional-aoki:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--divide-opacity));
}

.hover\:divide-functional-aoki-dark:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--divide-opacity));
}

.hover\:divide-functional-aoki-hocus:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--divide-opacity));
}

.hover\:divide-functional-aoki-active:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--divide-opacity));
}

.hover\:divide-functional-aoki-light:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--divide-opacity));
}

.hover\:divide-functional-kermit:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--divide-opacity));
}

.hover\:divide-mixlabPlus-light:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--divide-opacity));
}

.hover\:divide-primary-orange-light:hover > :not(template) ~ :not(template){
  border-color: ;
}

.hover\:divide-off-white:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--divide-opacity));
}

.focus\:divide-black:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--divide-opacity));
}

.focus\:divide-transparent:focus > :not(template) ~ :not(template){
  border-color: transparent;
}

.focus\:divide-error:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.focus\:divide-success:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.focus\:divide-white-10:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--divide-opacity));
}

.focus\:divide-white-20:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--divide-opacity));
}

.focus\:divide-white:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--divide-opacity));
}

.focus\:divide-cheeto:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--divide-opacity));
}

.focus\:divide-cheeto-very-light:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--divide-opacity));
}

.focus\:divide-cheeto-light:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--divide-opacity));
}

.focus\:divide-cheeto-dark:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--divide-opacity));
}

.focus\:divide-cheeto-hocus:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--divide-opacity));
}

.focus\:divide-cheeto-active:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--divide-opacity));
}

.focus\:divide-cheeto-ml-plus:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--divide-opacity));
}

.focus\:divide-cheeto-banner:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--divide-opacity));
}

.focus\:divide-gracy-1:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--divide-opacity));
}

.focus\:divide-gracy-10:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--divide-opacity));
}

.focus\:divide-gracy-20:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--divide-opacity));
}

.focus\:divide-gracy-30:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--divide-opacity));
}

.focus\:divide-gracy-40:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--divide-opacity));
}

.focus\:divide-gracy-50:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--divide-opacity));
}

.focus\:divide-gracy-60:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--divide-opacity));
}

.focus\:divide-gracy-70:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--divide-opacity));
}

.focus\:divide-gracy-80:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--divide-opacity));
}

.focus\:divide-gracy-90:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--divide-opacity));
}

.focus\:divide-gracy-100:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--divide-opacity));
}

.focus\:divide-gracy:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--divide-opacity));
}

.focus\:divide-gracy-overlay-90:focus > :not(template) ~ :not(template){
  border-color: rgba(50,49,50,0.5);
}

.focus\:divide-login:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--divide-opacity));
}

.focus\:divide-olive-light:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--divide-opacity));
}

.focus\:divide-olive-drab:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.focus\:divide-olive-dark:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--divide-opacity));
}

.focus\:divide-daisy-light:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--divide-opacity));
}

.focus\:divide-feedback-gumby:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--divide-opacity));
}

.focus\:divide-feedback-daisy:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--divide-opacity));
}

.focus\:divide-feedback-pokey:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--divide-opacity));
}

.focus\:divide-feedback-aster:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--divide-opacity));
}

.focus\:divide-feedback-aster-dark:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--divide-opacity));
}

.focus\:divide-feedback-roxo:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--divide-opacity));
}

.focus\:divide-feedback-error:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.focus\:divide-feedback-success:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.focus\:divide-functional-aoki:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--divide-opacity));
}

.focus\:divide-functional-aoki-dark:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--divide-opacity));
}

.focus\:divide-functional-aoki-hocus:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--divide-opacity));
}

.focus\:divide-functional-aoki-active:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--divide-opacity));
}

.focus\:divide-functional-aoki-light:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--divide-opacity));
}

.focus\:divide-functional-kermit:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--divide-opacity));
}

.focus\:divide-mixlabPlus-light:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--divide-opacity));
}

.focus\:divide-primary-orange-light:focus > :not(template) ~ :not(template){
  border-color: ;
}

.focus\:divide-off-white:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--divide-opacity));
}

.active\:divide-black:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--divide-opacity));
}

.active\:divide-transparent:active > :not(template) ~ :not(template){
  border-color: transparent;
}

.active\:divide-error:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.active\:divide-success:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.active\:divide-white-10:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--divide-opacity));
}

.active\:divide-white-20:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--divide-opacity));
}

.active\:divide-white:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--divide-opacity));
}

.active\:divide-cheeto:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--divide-opacity));
}

.active\:divide-cheeto-very-light:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--divide-opacity));
}

.active\:divide-cheeto-light:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--divide-opacity));
}

.active\:divide-cheeto-dark:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--divide-opacity));
}

.active\:divide-cheeto-hocus:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--divide-opacity));
}

.active\:divide-cheeto-active:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--divide-opacity));
}

.active\:divide-cheeto-ml-plus:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--divide-opacity));
}

.active\:divide-cheeto-banner:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--divide-opacity));
}

.active\:divide-gracy-1:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--divide-opacity));
}

.active\:divide-gracy-10:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--divide-opacity));
}

.active\:divide-gracy-20:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--divide-opacity));
}

.active\:divide-gracy-30:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--divide-opacity));
}

.active\:divide-gracy-40:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--divide-opacity));
}

.active\:divide-gracy-50:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--divide-opacity));
}

.active\:divide-gracy-60:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--divide-opacity));
}

.active\:divide-gracy-70:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--divide-opacity));
}

.active\:divide-gracy-80:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--divide-opacity));
}

.active\:divide-gracy-90:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--divide-opacity));
}

.active\:divide-gracy-100:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--divide-opacity));
}

.active\:divide-gracy:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--divide-opacity));
}

.active\:divide-gracy-overlay-90:active > :not(template) ~ :not(template){
  border-color: rgba(50,49,50,0.5);
}

.active\:divide-login:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--divide-opacity));
}

.active\:divide-olive-light:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--divide-opacity));
}

.active\:divide-olive-drab:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.active\:divide-olive-dark:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--divide-opacity));
}

.active\:divide-daisy-light:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--divide-opacity));
}

.active\:divide-feedback-gumby:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--divide-opacity));
}

.active\:divide-feedback-daisy:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--divide-opacity));
}

.active\:divide-feedback-pokey:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--divide-opacity));
}

.active\:divide-feedback-aster:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--divide-opacity));
}

.active\:divide-feedback-aster-dark:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--divide-opacity));
}

.active\:divide-feedback-roxo:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--divide-opacity));
}

.active\:divide-feedback-error:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.active\:divide-feedback-success:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.active\:divide-functional-aoki:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--divide-opacity));
}

.active\:divide-functional-aoki-dark:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--divide-opacity));
}

.active\:divide-functional-aoki-hocus:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--divide-opacity));
}

.active\:divide-functional-aoki-active:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--divide-opacity));
}

.active\:divide-functional-aoki-light:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--divide-opacity));
}

.active\:divide-functional-kermit:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--divide-opacity));
}

.active\:divide-mixlabPlus-light:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--divide-opacity));
}

.active\:divide-primary-orange-light:active > :not(template) ~ :not(template){
  border-color: ;
}

.active\:divide-off-white:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--divide-opacity));
}

.first\:divide-black:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--divide-opacity));
}

.first\:divide-transparent:first-child > :not(template) ~ :not(template){
  border-color: transparent;
}

.first\:divide-error:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.first\:divide-success:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.first\:divide-white-10:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--divide-opacity));
}

.first\:divide-white-20:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--divide-opacity));
}

.first\:divide-white:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--divide-opacity));
}

.first\:divide-cheeto:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--divide-opacity));
}

.first\:divide-cheeto-very-light:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--divide-opacity));
}

.first\:divide-cheeto-light:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--divide-opacity));
}

.first\:divide-cheeto-dark:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--divide-opacity));
}

.first\:divide-cheeto-hocus:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--divide-opacity));
}

.first\:divide-cheeto-active:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--divide-opacity));
}

.first\:divide-cheeto-ml-plus:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--divide-opacity));
}

.first\:divide-cheeto-banner:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--divide-opacity));
}

.first\:divide-gracy-1:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--divide-opacity));
}

.first\:divide-gracy-10:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--divide-opacity));
}

.first\:divide-gracy-20:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--divide-opacity));
}

.first\:divide-gracy-30:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--divide-opacity));
}

.first\:divide-gracy-40:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--divide-opacity));
}

.first\:divide-gracy-50:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--divide-opacity));
}

.first\:divide-gracy-60:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--divide-opacity));
}

.first\:divide-gracy-70:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--divide-opacity));
}

.first\:divide-gracy-80:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--divide-opacity));
}

.first\:divide-gracy-90:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--divide-opacity));
}

.first\:divide-gracy-100:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--divide-opacity));
}

.first\:divide-gracy:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--divide-opacity));
}

.first\:divide-gracy-overlay-90:first-child > :not(template) ~ :not(template){
  border-color: rgba(50,49,50,0.5);
}

.first\:divide-login:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--divide-opacity));
}

.first\:divide-olive-light:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--divide-opacity));
}

.first\:divide-olive-drab:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.first\:divide-olive-dark:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--divide-opacity));
}

.first\:divide-daisy-light:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--divide-opacity));
}

.first\:divide-feedback-gumby:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--divide-opacity));
}

.first\:divide-feedback-daisy:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--divide-opacity));
}

.first\:divide-feedback-pokey:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--divide-opacity));
}

.first\:divide-feedback-aster:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--divide-opacity));
}

.first\:divide-feedback-aster-dark:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--divide-opacity));
}

.first\:divide-feedback-roxo:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--divide-opacity));
}

.first\:divide-feedback-error:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.first\:divide-feedback-success:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.first\:divide-functional-aoki:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--divide-opacity));
}

.first\:divide-functional-aoki-dark:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--divide-opacity));
}

.first\:divide-functional-aoki-hocus:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--divide-opacity));
}

.first\:divide-functional-aoki-active:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--divide-opacity));
}

.first\:divide-functional-aoki-light:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--divide-opacity));
}

.first\:divide-functional-kermit:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--divide-opacity));
}

.first\:divide-mixlabPlus-light:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--divide-opacity));
}

.first\:divide-primary-orange-light:first-child > :not(template) ~ :not(template){
  border-color: ;
}

.first\:divide-off-white:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--divide-opacity));
}

.last\:divide-black:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--divide-opacity));
}

.last\:divide-transparent:last-child > :not(template) ~ :not(template){
  border-color: transparent;
}

.last\:divide-error:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.last\:divide-success:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.last\:divide-white-10:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--divide-opacity));
}

.last\:divide-white-20:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--divide-opacity));
}

.last\:divide-white:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--divide-opacity));
}

.last\:divide-cheeto:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--divide-opacity));
}

.last\:divide-cheeto-very-light:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--divide-opacity));
}

.last\:divide-cheeto-light:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--divide-opacity));
}

.last\:divide-cheeto-dark:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--divide-opacity));
}

.last\:divide-cheeto-hocus:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--divide-opacity));
}

.last\:divide-cheeto-active:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--divide-opacity));
}

.last\:divide-cheeto-ml-plus:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--divide-opacity));
}

.last\:divide-cheeto-banner:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--divide-opacity));
}

.last\:divide-gracy-1:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--divide-opacity));
}

.last\:divide-gracy-10:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--divide-opacity));
}

.last\:divide-gracy-20:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--divide-opacity));
}

.last\:divide-gracy-30:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--divide-opacity));
}

.last\:divide-gracy-40:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--divide-opacity));
}

.last\:divide-gracy-50:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--divide-opacity));
}

.last\:divide-gracy-60:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--divide-opacity));
}

.last\:divide-gracy-70:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--divide-opacity));
}

.last\:divide-gracy-80:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--divide-opacity));
}

.last\:divide-gracy-90:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--divide-opacity));
}

.last\:divide-gracy-100:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--divide-opacity));
}

.last\:divide-gracy:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--divide-opacity));
}

.last\:divide-gracy-overlay-90:last-child > :not(template) ~ :not(template){
  border-color: rgba(50,49,50,0.5);
}

.last\:divide-login:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--divide-opacity));
}

.last\:divide-olive-light:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--divide-opacity));
}

.last\:divide-olive-drab:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.last\:divide-olive-dark:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--divide-opacity));
}

.last\:divide-daisy-light:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--divide-opacity));
}

.last\:divide-feedback-gumby:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--divide-opacity));
}

.last\:divide-feedback-daisy:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--divide-opacity));
}

.last\:divide-feedback-pokey:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--divide-opacity));
}

.last\:divide-feedback-aster:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--divide-opacity));
}

.last\:divide-feedback-aster-dark:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--divide-opacity));
}

.last\:divide-feedback-roxo:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--divide-opacity));
}

.last\:divide-feedback-error:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--divide-opacity));
}

.last\:divide-feedback-success:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--divide-opacity));
}

.last\:divide-functional-aoki:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--divide-opacity));
}

.last\:divide-functional-aoki-dark:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--divide-opacity));
}

.last\:divide-functional-aoki-hocus:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--divide-opacity));
}

.last\:divide-functional-aoki-active:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--divide-opacity));
}

.last\:divide-functional-aoki-light:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--divide-opacity));
}

.last\:divide-functional-kermit:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--divide-opacity));
}

.last\:divide-mixlabPlus-light:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--divide-opacity));
}

.last\:divide-primary-orange-light:last-child > :not(template) ~ :not(template){
  border-color: ;
}

.last\:divide-off-white:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--divide-opacity));
}

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

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

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

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

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

.hover\:divide-solid:hover > :not(template) ~ :not(template){
  border-style: solid;
}

.hover\:divide-dashed:hover > :not(template) ~ :not(template){
  border-style: dashed;
}

.hover\:divide-dotted:hover > :not(template) ~ :not(template){
  border-style: dotted;
}

.hover\:divide-double:hover > :not(template) ~ :not(template){
  border-style: double;
}

.hover\:divide-none:hover > :not(template) ~ :not(template){
  border-style: none;
}

.focus\:divide-solid:focus > :not(template) ~ :not(template){
  border-style: solid;
}

.focus\:divide-dashed:focus > :not(template) ~ :not(template){
  border-style: dashed;
}

.focus\:divide-dotted:focus > :not(template) ~ :not(template){
  border-style: dotted;
}

.focus\:divide-double:focus > :not(template) ~ :not(template){
  border-style: double;
}

.focus\:divide-none:focus > :not(template) ~ :not(template){
  border-style: none;
}

.active\:divide-solid:active > :not(template) ~ :not(template){
  border-style: solid;
}

.active\:divide-dashed:active > :not(template) ~ :not(template){
  border-style: dashed;
}

.active\:divide-dotted:active > :not(template) ~ :not(template){
  border-style: dotted;
}

.active\:divide-double:active > :not(template) ~ :not(template){
  border-style: double;
}

.active\:divide-none:active > :not(template) ~ :not(template){
  border-style: none;
}

.first\:divide-solid:first-child > :not(template) ~ :not(template){
  border-style: solid;
}

.first\:divide-dashed:first-child > :not(template) ~ :not(template){
  border-style: dashed;
}

.first\:divide-dotted:first-child > :not(template) ~ :not(template){
  border-style: dotted;
}

.first\:divide-double:first-child > :not(template) ~ :not(template){
  border-style: double;
}

.first\:divide-none:first-child > :not(template) ~ :not(template){
  border-style: none;
}

.last\:divide-solid:last-child > :not(template) ~ :not(template){
  border-style: solid;
}

.last\:divide-dashed:last-child > :not(template) ~ :not(template){
  border-style: dashed;
}

.last\:divide-dotted:last-child > :not(template) ~ :not(template){
  border-style: dotted;
}

.last\:divide-double:last-child > :not(template) ~ :not(template){
  border-style: double;
}

.last\:divide-none:last-child > :not(template) ~ :not(template){
  border-style: none;
}

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

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

.divide-opacity-50 > :not(template) ~ :not(template){
  --divide-opacity: .5;
}

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

.divide-opacity-80 > :not(template) ~ :not(template){
  --divide-opacity: .8;
}

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

.hover\:divide-opacity-0:hover > :not(template) ~ :not(template){
  --divide-opacity: 0;
}

.hover\:divide-opacity-25:hover > :not(template) ~ :not(template){
  --divide-opacity: 0.25;
}

.hover\:divide-opacity-50:hover > :not(template) ~ :not(template){
  --divide-opacity: .5;
}

.hover\:divide-opacity-75:hover > :not(template) ~ :not(template){
  --divide-opacity: 0.75;
}

.hover\:divide-opacity-80:hover > :not(template) ~ :not(template){
  --divide-opacity: .8;
}

.hover\:divide-opacity-100:hover > :not(template) ~ :not(template){
  --divide-opacity: 1;
}

.focus\:divide-opacity-0:focus > :not(template) ~ :not(template){
  --divide-opacity: 0;
}

.focus\:divide-opacity-25:focus > :not(template) ~ :not(template){
  --divide-opacity: 0.25;
}

.focus\:divide-opacity-50:focus > :not(template) ~ :not(template){
  --divide-opacity: .5;
}

.focus\:divide-opacity-75:focus > :not(template) ~ :not(template){
  --divide-opacity: 0.75;
}

.focus\:divide-opacity-80:focus > :not(template) ~ :not(template){
  --divide-opacity: .8;
}

.focus\:divide-opacity-100:focus > :not(template) ~ :not(template){
  --divide-opacity: 1;
}

.active\:divide-opacity-0:active > :not(template) ~ :not(template){
  --divide-opacity: 0;
}

.active\:divide-opacity-25:active > :not(template) ~ :not(template){
  --divide-opacity: 0.25;
}

.active\:divide-opacity-50:active > :not(template) ~ :not(template){
  --divide-opacity: .5;
}

.active\:divide-opacity-75:active > :not(template) ~ :not(template){
  --divide-opacity: 0.75;
}

.active\:divide-opacity-80:active > :not(template) ~ :not(template){
  --divide-opacity: .8;
}

.active\:divide-opacity-100:active > :not(template) ~ :not(template){
  --divide-opacity: 1;
}

.first\:divide-opacity-0:first-child > :not(template) ~ :not(template){
  --divide-opacity: 0;
}

.first\:divide-opacity-25:first-child > :not(template) ~ :not(template){
  --divide-opacity: 0.25;
}

.first\:divide-opacity-50:first-child > :not(template) ~ :not(template){
  --divide-opacity: .5;
}

.first\:divide-opacity-75:first-child > :not(template) ~ :not(template){
  --divide-opacity: 0.75;
}

.first\:divide-opacity-80:first-child > :not(template) ~ :not(template){
  --divide-opacity: .8;
}

.first\:divide-opacity-100:first-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
}

.last\:divide-opacity-0:last-child > :not(template) ~ :not(template){
  --divide-opacity: 0;
}

.last\:divide-opacity-25:last-child > :not(template) ~ :not(template){
  --divide-opacity: 0.25;
}

.last\:divide-opacity-50:last-child > :not(template) ~ :not(template){
  --divide-opacity: .5;
}

.last\:divide-opacity-75:last-child > :not(template) ~ :not(template){
  --divide-opacity: 0.75;
}

.last\:divide-opacity-80:last-child > :not(template) ~ :not(template){
  --divide-opacity: .8;
}

.last\:divide-opacity-100:last-child > :not(template) ~ :not(template){
  --divide-opacity: 1;
}

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

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

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

.hover\:not-sr-only:hover{
  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;
}

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

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

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

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

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

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

.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.hover\:appearance-none:hover{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.focus\:appearance-none:focus{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.active\:appearance-none:active{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.first\:appearance-none:first-child{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.last\:appearance-none:last-child{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.bg-fixed{
  background-attachment: fixed;
}

.bg-local{
  background-attachment: local;
}

.bg-scroll{
  background-attachment: scroll;
}

.hover\:bg-fixed:hover{
  background-attachment: fixed;
}

.hover\:bg-local:hover{
  background-attachment: local;
}

.hover\:bg-scroll:hover{
  background-attachment: scroll;
}

.focus\:bg-fixed:focus{
  background-attachment: fixed;
}

.focus\:bg-local:focus{
  background-attachment: local;
}

.focus\:bg-scroll:focus{
  background-attachment: scroll;
}

.active\:bg-fixed:active{
  background-attachment: fixed;
}

.active\:bg-local:active{
  background-attachment: local;
}

.active\:bg-scroll:active{
  background-attachment: scroll;
}

.first\:bg-fixed:first-child{
  background-attachment: fixed;
}

.first\:bg-local:first-child{
  background-attachment: local;
}

.first\:bg-scroll:first-child{
  background-attachment: scroll;
}

.last\:bg-fixed:last-child{
  background-attachment: fixed;
}

.last\:bg-local:last-child{
  background-attachment: local;
}

.last\:bg-scroll:last-child{
  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;
}

.hover\:bg-clip-border:hover{
  background-clip: border-box;
}

.hover\:bg-clip-padding:hover{
  background-clip: padding-box;
}

.hover\:bg-clip-content:hover{
  background-clip: content-box;
}

.hover\:bg-clip-text:hover{
  -webkit-background-clip: text;
          background-clip: text;
}

.focus\:bg-clip-border:focus{
  background-clip: border-box;
}

.focus\:bg-clip-padding:focus{
  background-clip: padding-box;
}

.focus\:bg-clip-content:focus{
  background-clip: content-box;
}

.focus\:bg-clip-text:focus{
  -webkit-background-clip: text;
          background-clip: text;
}

.active\:bg-clip-border:active{
  background-clip: border-box;
}

.active\:bg-clip-padding:active{
  background-clip: padding-box;
}

.active\:bg-clip-content:active{
  background-clip: content-box;
}

.active\:bg-clip-text:active{
  -webkit-background-clip: text;
          background-clip: text;
}

.first\:bg-clip-border:first-child{
  background-clip: border-box;
}

.first\:bg-clip-padding:first-child{
  background-clip: padding-box;
}

.first\:bg-clip-content:first-child{
  background-clip: content-box;
}

.first\:bg-clip-text:first-child{
  -webkit-background-clip: text;
          background-clip: text;
}

.last\:bg-clip-border:last-child{
  background-clip: border-box;
}

.last\:bg-clip-padding:last-child{
  background-clip: padding-box;
}

.last\:bg-clip-content:last-child{
  background-clip: content-box;
}

.last\:bg-clip-text:last-child{
  -webkit-background-clip: text;
          background-clip: text;
}

.bg-black{
  --bg-opacity: 1;
  background-color: #000000;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
}

.bg-transparent{
  background-color: transparent;
}

.bg-error{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.bg-success{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.bg-white-10{
  --bg-opacity: 1;
  background-color: #FBFBFB;
  background-color: rgba(251, 251, 251, var(--bg-opacity));
}

.bg-white-20{
  --bg-opacity: 1;
  background-color: #ECECEC;
  background-color: rgba(236, 236, 236, var(--bg-opacity));
}

.bg-white{
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.bg-cheeto{
  --bg-opacity: 1;
  background-color: #f7a500;
  background-color: rgba(247, 165, 0, var(--bg-opacity));
}

.bg-cheeto-very-light{
  --bg-opacity: 1;
  background-color: #fffaf2;
  background-color: rgba(255, 250, 242, var(--bg-opacity));
}

.bg-cheeto-light{
  --bg-opacity: 1;
  background-color: #ffd649;
  background-color: rgba(255, 214, 73, var(--bg-opacity));
}

.bg-cheeto-dark{
  --bg-opacity: 1;
  background-color: #bf7600;
  background-color: rgba(191, 118, 0, var(--bg-opacity));
}

.bg-cheeto-hocus{
  --bg-opacity: 1;
  background-color: #f8bd0f;
  background-color: rgba(248, 189, 15, var(--bg-opacity));
}

.bg-cheeto-active{
  --bg-opacity: 1;
  background-color: #f8d61b;
  background-color: rgba(248, 214, 27, var(--bg-opacity));
}

.bg-cheeto-ml-plus{
  --bg-opacity: 1;
  background-color: #FBEFCA;
  background-color: rgba(251, 239, 202, var(--bg-opacity));
}

.bg-cheeto-banner{
  --bg-opacity: 1;
  background-color: #fef7e5;
  background-color: rgba(254, 247, 229, var(--bg-opacity));
}

.bg-gracy-1{
  --bg-opacity: 1;
  background-color: #f8f8fa;
  background-color: rgba(248, 248, 250, var(--bg-opacity));
}

.bg-gracy-10{
  --bg-opacity: 1;
  background-color: #faf7fd;
  background-color: rgba(250, 247, 253, var(--bg-opacity));
}

.bg-gracy-20{
  --bg-opacity: 1;
  background-color: #e0dde3;
  background-color: rgba(224, 221, 227, var(--bg-opacity));
}

.bg-gracy-30{
  --bg-opacity: 1;
  background-color: #c8c5ca;
  background-color: rgba(200, 197, 202, var(--bg-opacity));
}

.bg-gracy-40{
  --bg-opacity: 1;
  background-color: #aeacb0;
  background-color: rgba(174, 172, 176, var(--bg-opacity));
}

.bg-gracy-50{
  --bg-opacity: 1;
  background-color: #969497;
  background-color: rgba(150, 148, 151, var(--bg-opacity));
}

.bg-gracy-60{
  --bg-opacity: 1;
  background-color: #7c7b7e;
  background-color: rgba(124, 123, 126, var(--bg-opacity));
}

.bg-gracy-70{
  --bg-opacity: 1;
  background-color: #646265;
  background-color: rgba(100, 98, 101, var(--bg-opacity));
}

.bg-gracy-80{
  --bg-opacity: 1;
  background-color: #4a494b;
  background-color: rgba(74, 73, 75, var(--bg-opacity));
}

.bg-gracy-90{
  --bg-opacity: 1;
  background-color: #323132;
  background-color: rgba(50, 49, 50, var(--bg-opacity));
}

.bg-gracy-100{
  --bg-opacity: 1;
  background-color: #181818;
  background-color: rgba(24, 24, 24, var(--bg-opacity));
}

.bg-gracy{
  --bg-opacity: 1;
  background-color: #6F7878;
  background-color: rgba(111, 120, 120, var(--bg-opacity));
}

.bg-gracy-overlay-90{
  background-color: rgba(50,49,50,0.5);
}

.bg-login{
  --bg-opacity: 1;
  background-color: #FDF7E7;
  background-color: rgba(253, 247, 231, var(--bg-opacity));
}

.bg-olive-light{
  --bg-opacity: 1;
  background-color: #DFF5F6;
  background-color: rgba(223, 245, 246, var(--bg-opacity));
}

.bg-olive-drab{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.bg-olive-dark{
  --bg-opacity: 1;
  background-color: #096348;
  background-color: rgba(9, 99, 72, var(--bg-opacity));
}

.bg-daisy-light{
  --bg-opacity: 1;
  background-color: #fffce1;
  background-color: rgba(255, 252, 225, var(--bg-opacity));
}

.bg-feedback-gumby{
  --bg-opacity: 1;
  background-color: #c8e6c9;
  background-color: rgba(200, 230, 201, var(--bg-opacity));
}

.bg-feedback-daisy{
  --bg-opacity: 1;
  background-color: #fff9c4;
  background-color: rgba(255, 249, 196, var(--bg-opacity));
}

.bg-feedback-pokey{
  --bg-opacity: 1;
  background-color: #ffcdd2;
  background-color: rgba(255, 205, 210, var(--bg-opacity));
}

.bg-feedback-aster{
  --bg-opacity: 1;
  background-color: #b3e5fc;
  background-color: rgba(179, 229, 252, var(--bg-opacity));
}

.bg-feedback-aster-dark{
  --bg-opacity: 1;
  background-color: #03567C;
  background-color: rgba(3, 86, 124, var(--bg-opacity));
}

.bg-feedback-roxo{
  --bg-opacity: 1;
  background-color: #d1c4e9;
  background-color: rgba(209, 196, 233, var(--bg-opacity));
}

.bg-feedback-error{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.bg-feedback-success{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.bg-functional-aoki{
  --bg-opacity: 1;
  background-color: #6f2ca0;
  background-color: rgba(111, 44, 160, var(--bg-opacity));
}

.bg-functional-aoki-dark{
  --bg-opacity: 1;
  background-color: #3e0071;
  background-color: rgba(62, 0, 113, var(--bg-opacity));
}

.bg-functional-aoki-hocus{
  --bg-opacity: 1;
  background-color: #9035af;
  background-color: rgba(144, 53, 175, var(--bg-opacity));
}

.bg-functional-aoki-active{
  --bg-opacity: 1;
  background-color: #a04fbc;
  background-color: rgba(160, 79, 188, var(--bg-opacity));
}

.bg-functional-aoki-light{
  --bg-opacity: 1;
  background-color: #a15ad2;
  background-color: rgba(161, 90, 210, var(--bg-opacity));
}

.bg-functional-kermit{
  --bg-opacity: 1;
  background-color: #5aa120;
  background-color: rgba(90, 161, 32, var(--bg-opacity));
}

.bg-mixlabPlus-light{
  --bg-opacity: 1;
  background-color: #FFFEF9;
  background-color: rgba(255, 254, 249, var(--bg-opacity));
}

.bg-primary-orange-light{
  background-color: ;
}

.bg-off-white{
  --bg-opacity: 1;
  background-color: #FAF9F6;
  background-color: rgba(250, 249, 246, var(--bg-opacity));
}

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

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

.hover\:bg-error:hover{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.hover\:bg-success:hover{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.hover\:bg-white-10:hover{
  --bg-opacity: 1;
  background-color: #FBFBFB;
  background-color: rgba(251, 251, 251, var(--bg-opacity));
}

.hover\:bg-white-20:hover{
  --bg-opacity: 1;
  background-color: #ECECEC;
  background-color: rgba(236, 236, 236, var(--bg-opacity));
}

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

.hover\:bg-cheeto:hover{
  --bg-opacity: 1;
  background-color: #f7a500;
  background-color: rgba(247, 165, 0, var(--bg-opacity));
}

.hover\:bg-cheeto-very-light:hover{
  --bg-opacity: 1;
  background-color: #fffaf2;
  background-color: rgba(255, 250, 242, var(--bg-opacity));
}

.hover\:bg-cheeto-light:hover{
  --bg-opacity: 1;
  background-color: #ffd649;
  background-color: rgba(255, 214, 73, var(--bg-opacity));
}

.hover\:bg-cheeto-dark:hover{
  --bg-opacity: 1;
  background-color: #bf7600;
  background-color: rgba(191, 118, 0, var(--bg-opacity));
}

.hover\:bg-cheeto-hocus:hover{
  --bg-opacity: 1;
  background-color: #f8bd0f;
  background-color: rgba(248, 189, 15, var(--bg-opacity));
}

.hover\:bg-cheeto-active:hover{
  --bg-opacity: 1;
  background-color: #f8d61b;
  background-color: rgba(248, 214, 27, var(--bg-opacity));
}

.hover\:bg-cheeto-ml-plus:hover{
  --bg-opacity: 1;
  background-color: #FBEFCA;
  background-color: rgba(251, 239, 202, var(--bg-opacity));
}

.hover\:bg-cheeto-banner:hover{
  --bg-opacity: 1;
  background-color: #fef7e5;
  background-color: rgba(254, 247, 229, var(--bg-opacity));
}

.hover\:bg-gracy-1:hover{
  --bg-opacity: 1;
  background-color: #f8f8fa;
  background-color: rgba(248, 248, 250, var(--bg-opacity));
}

.hover\:bg-gracy-10:hover{
  --bg-opacity: 1;
  background-color: #faf7fd;
  background-color: rgba(250, 247, 253, var(--bg-opacity));
}

.hover\:bg-gracy-20:hover{
  --bg-opacity: 1;
  background-color: #e0dde3;
  background-color: rgba(224, 221, 227, var(--bg-opacity));
}

.hover\:bg-gracy-30:hover{
  --bg-opacity: 1;
  background-color: #c8c5ca;
  background-color: rgba(200, 197, 202, var(--bg-opacity));
}

.hover\:bg-gracy-40:hover{
  --bg-opacity: 1;
  background-color: #aeacb0;
  background-color: rgba(174, 172, 176, var(--bg-opacity));
}

.hover\:bg-gracy-50:hover{
  --bg-opacity: 1;
  background-color: #969497;
  background-color: rgba(150, 148, 151, var(--bg-opacity));
}

.hover\:bg-gracy-60:hover{
  --bg-opacity: 1;
  background-color: #7c7b7e;
  background-color: rgba(124, 123, 126, var(--bg-opacity));
}

.hover\:bg-gracy-70:hover{
  --bg-opacity: 1;
  background-color: #646265;
  background-color: rgba(100, 98, 101, var(--bg-opacity));
}

.hover\:bg-gracy-80:hover{
  --bg-opacity: 1;
  background-color: #4a494b;
  background-color: rgba(74, 73, 75, var(--bg-opacity));
}

.hover\:bg-gracy-90:hover{
  --bg-opacity: 1;
  background-color: #323132;
  background-color: rgba(50, 49, 50, var(--bg-opacity));
}

.hover\:bg-gracy-100:hover{
  --bg-opacity: 1;
  background-color: #181818;
  background-color: rgba(24, 24, 24, var(--bg-opacity));
}

.hover\:bg-gracy:hover{
  --bg-opacity: 1;
  background-color: #6F7878;
  background-color: rgba(111, 120, 120, var(--bg-opacity));
}

.hover\:bg-gracy-overlay-90:hover{
  background-color: rgba(50,49,50,0.5);
}

.hover\:bg-login:hover{
  --bg-opacity: 1;
  background-color: #FDF7E7;
  background-color: rgba(253, 247, 231, var(--bg-opacity));
}

.hover\:bg-olive-light:hover{
  --bg-opacity: 1;
  background-color: #DFF5F6;
  background-color: rgba(223, 245, 246, var(--bg-opacity));
}

.hover\:bg-olive-drab:hover{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.hover\:bg-olive-dark:hover{
  --bg-opacity: 1;
  background-color: #096348;
  background-color: rgba(9, 99, 72, var(--bg-opacity));
}

.hover\:bg-daisy-light:hover{
  --bg-opacity: 1;
  background-color: #fffce1;
  background-color: rgba(255, 252, 225, var(--bg-opacity));
}

.hover\:bg-feedback-gumby:hover{
  --bg-opacity: 1;
  background-color: #c8e6c9;
  background-color: rgba(200, 230, 201, var(--bg-opacity));
}

.hover\:bg-feedback-daisy:hover{
  --bg-opacity: 1;
  background-color: #fff9c4;
  background-color: rgba(255, 249, 196, var(--bg-opacity));
}

.hover\:bg-feedback-pokey:hover{
  --bg-opacity: 1;
  background-color: #ffcdd2;
  background-color: rgba(255, 205, 210, var(--bg-opacity));
}

.hover\:bg-feedback-aster:hover{
  --bg-opacity: 1;
  background-color: #b3e5fc;
  background-color: rgba(179, 229, 252, var(--bg-opacity));
}

.hover\:bg-feedback-aster-dark:hover{
  --bg-opacity: 1;
  background-color: #03567C;
  background-color: rgba(3, 86, 124, var(--bg-opacity));
}

.hover\:bg-feedback-roxo:hover{
  --bg-opacity: 1;
  background-color: #d1c4e9;
  background-color: rgba(209, 196, 233, var(--bg-opacity));
}

.hover\:bg-feedback-error:hover{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.hover\:bg-feedback-success:hover{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.hover\:bg-functional-aoki:hover{
  --bg-opacity: 1;
  background-color: #6f2ca0;
  background-color: rgba(111, 44, 160, var(--bg-opacity));
}

.hover\:bg-functional-aoki-dark:hover{
  --bg-opacity: 1;
  background-color: #3e0071;
  background-color: rgba(62, 0, 113, var(--bg-opacity));
}

.hover\:bg-functional-aoki-hocus:hover{
  --bg-opacity: 1;
  background-color: #9035af;
  background-color: rgba(144, 53, 175, var(--bg-opacity));
}

.hover\:bg-functional-aoki-active:hover{
  --bg-opacity: 1;
  background-color: #a04fbc;
  background-color: rgba(160, 79, 188, var(--bg-opacity));
}

.hover\:bg-functional-aoki-light:hover{
  --bg-opacity: 1;
  background-color: #a15ad2;
  background-color: rgba(161, 90, 210, var(--bg-opacity));
}

.hover\:bg-functional-kermit:hover{
  --bg-opacity: 1;
  background-color: #5aa120;
  background-color: rgba(90, 161, 32, var(--bg-opacity));
}

.hover\:bg-mixlabPlus-light:hover{
  --bg-opacity: 1;
  background-color: #FFFEF9;
  background-color: rgba(255, 254, 249, var(--bg-opacity));
}

.hover\:bg-primary-orange-light:hover{
  background-color: ;
}

.hover\:bg-off-white:hover{
  --bg-opacity: 1;
  background-color: #FAF9F6;
  background-color: rgba(250, 249, 246, var(--bg-opacity));
}

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

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

.focus\:bg-error:focus{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.focus\:bg-success:focus{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.focus\:bg-white-10:focus{
  --bg-opacity: 1;
  background-color: #FBFBFB;
  background-color: rgba(251, 251, 251, var(--bg-opacity));
}

.focus\:bg-white-20:focus{
  --bg-opacity: 1;
  background-color: #ECECEC;
  background-color: rgba(236, 236, 236, var(--bg-opacity));
}

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

.focus\:bg-cheeto:focus{
  --bg-opacity: 1;
  background-color: #f7a500;
  background-color: rgba(247, 165, 0, var(--bg-opacity));
}

.focus\:bg-cheeto-very-light:focus{
  --bg-opacity: 1;
  background-color: #fffaf2;
  background-color: rgba(255, 250, 242, var(--bg-opacity));
}

.focus\:bg-cheeto-light:focus{
  --bg-opacity: 1;
  background-color: #ffd649;
  background-color: rgba(255, 214, 73, var(--bg-opacity));
}

.focus\:bg-cheeto-dark:focus{
  --bg-opacity: 1;
  background-color: #bf7600;
  background-color: rgba(191, 118, 0, var(--bg-opacity));
}

.focus\:bg-cheeto-hocus:focus{
  --bg-opacity: 1;
  background-color: #f8bd0f;
  background-color: rgba(248, 189, 15, var(--bg-opacity));
}

.focus\:bg-cheeto-active:focus{
  --bg-opacity: 1;
  background-color: #f8d61b;
  background-color: rgba(248, 214, 27, var(--bg-opacity));
}

.focus\:bg-cheeto-ml-plus:focus{
  --bg-opacity: 1;
  background-color: #FBEFCA;
  background-color: rgba(251, 239, 202, var(--bg-opacity));
}

.focus\:bg-cheeto-banner:focus{
  --bg-opacity: 1;
  background-color: #fef7e5;
  background-color: rgba(254, 247, 229, var(--bg-opacity));
}

.focus\:bg-gracy-1:focus{
  --bg-opacity: 1;
  background-color: #f8f8fa;
  background-color: rgba(248, 248, 250, var(--bg-opacity));
}

.focus\:bg-gracy-10:focus{
  --bg-opacity: 1;
  background-color: #faf7fd;
  background-color: rgba(250, 247, 253, var(--bg-opacity));
}

.focus\:bg-gracy-20:focus{
  --bg-opacity: 1;
  background-color: #e0dde3;
  background-color: rgba(224, 221, 227, var(--bg-opacity));
}

.focus\:bg-gracy-30:focus{
  --bg-opacity: 1;
  background-color: #c8c5ca;
  background-color: rgba(200, 197, 202, var(--bg-opacity));
}

.focus\:bg-gracy-40:focus{
  --bg-opacity: 1;
  background-color: #aeacb0;
  background-color: rgba(174, 172, 176, var(--bg-opacity));
}

.focus\:bg-gracy-50:focus{
  --bg-opacity: 1;
  background-color: #969497;
  background-color: rgba(150, 148, 151, var(--bg-opacity));
}

.focus\:bg-gracy-60:focus{
  --bg-opacity: 1;
  background-color: #7c7b7e;
  background-color: rgba(124, 123, 126, var(--bg-opacity));
}

.focus\:bg-gracy-70:focus{
  --bg-opacity: 1;
  background-color: #646265;
  background-color: rgba(100, 98, 101, var(--bg-opacity));
}

.focus\:bg-gracy-80:focus{
  --bg-opacity: 1;
  background-color: #4a494b;
  background-color: rgba(74, 73, 75, var(--bg-opacity));
}

.focus\:bg-gracy-90:focus{
  --bg-opacity: 1;
  background-color: #323132;
  background-color: rgba(50, 49, 50, var(--bg-opacity));
}

.focus\:bg-gracy-100:focus{
  --bg-opacity: 1;
  background-color: #181818;
  background-color: rgba(24, 24, 24, var(--bg-opacity));
}

.focus\:bg-gracy:focus{
  --bg-opacity: 1;
  background-color: #6F7878;
  background-color: rgba(111, 120, 120, var(--bg-opacity));
}

.focus\:bg-gracy-overlay-90:focus{
  background-color: rgba(50,49,50,0.5);
}

.focus\:bg-login:focus{
  --bg-opacity: 1;
  background-color: #FDF7E7;
  background-color: rgba(253, 247, 231, var(--bg-opacity));
}

.focus\:bg-olive-light:focus{
  --bg-opacity: 1;
  background-color: #DFF5F6;
  background-color: rgba(223, 245, 246, var(--bg-opacity));
}

.focus\:bg-olive-drab:focus{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.focus\:bg-olive-dark:focus{
  --bg-opacity: 1;
  background-color: #096348;
  background-color: rgba(9, 99, 72, var(--bg-opacity));
}

.focus\:bg-daisy-light:focus{
  --bg-opacity: 1;
  background-color: #fffce1;
  background-color: rgba(255, 252, 225, var(--bg-opacity));
}

.focus\:bg-feedback-gumby:focus{
  --bg-opacity: 1;
  background-color: #c8e6c9;
  background-color: rgba(200, 230, 201, var(--bg-opacity));
}

.focus\:bg-feedback-daisy:focus{
  --bg-opacity: 1;
  background-color: #fff9c4;
  background-color: rgba(255, 249, 196, var(--bg-opacity));
}

.focus\:bg-feedback-pokey:focus{
  --bg-opacity: 1;
  background-color: #ffcdd2;
  background-color: rgba(255, 205, 210, var(--bg-opacity));
}

.focus\:bg-feedback-aster:focus{
  --bg-opacity: 1;
  background-color: #b3e5fc;
  background-color: rgba(179, 229, 252, var(--bg-opacity));
}

.focus\:bg-feedback-aster-dark:focus{
  --bg-opacity: 1;
  background-color: #03567C;
  background-color: rgba(3, 86, 124, var(--bg-opacity));
}

.focus\:bg-feedback-roxo:focus{
  --bg-opacity: 1;
  background-color: #d1c4e9;
  background-color: rgba(209, 196, 233, var(--bg-opacity));
}

.focus\:bg-feedback-error:focus{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.focus\:bg-feedback-success:focus{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.focus\:bg-functional-aoki:focus{
  --bg-opacity: 1;
  background-color: #6f2ca0;
  background-color: rgba(111, 44, 160, var(--bg-opacity));
}

.focus\:bg-functional-aoki-dark:focus{
  --bg-opacity: 1;
  background-color: #3e0071;
  background-color: rgba(62, 0, 113, var(--bg-opacity));
}

.focus\:bg-functional-aoki-hocus:focus{
  --bg-opacity: 1;
  background-color: #9035af;
  background-color: rgba(144, 53, 175, var(--bg-opacity));
}

.focus\:bg-functional-aoki-active:focus{
  --bg-opacity: 1;
  background-color: #a04fbc;
  background-color: rgba(160, 79, 188, var(--bg-opacity));
}

.focus\:bg-functional-aoki-light:focus{
  --bg-opacity: 1;
  background-color: #a15ad2;
  background-color: rgba(161, 90, 210, var(--bg-opacity));
}

.focus\:bg-functional-kermit:focus{
  --bg-opacity: 1;
  background-color: #5aa120;
  background-color: rgba(90, 161, 32, var(--bg-opacity));
}

.focus\:bg-mixlabPlus-light:focus{
  --bg-opacity: 1;
  background-color: #FFFEF9;
  background-color: rgba(255, 254, 249, var(--bg-opacity));
}

.focus\:bg-primary-orange-light:focus{
  background-color: ;
}

.focus\:bg-off-white:focus{
  --bg-opacity: 1;
  background-color: #FAF9F6;
  background-color: rgba(250, 249, 246, var(--bg-opacity));
}

.active\:bg-black:active{
  --bg-opacity: 1;
  background-color: #000000;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
}

.active\:bg-transparent:active{
  background-color: transparent;
}

.active\:bg-error:active{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.active\:bg-success:active{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.active\:bg-white-10:active{
  --bg-opacity: 1;
  background-color: #FBFBFB;
  background-color: rgba(251, 251, 251, var(--bg-opacity));
}

.active\:bg-white-20:active{
  --bg-opacity: 1;
  background-color: #ECECEC;
  background-color: rgba(236, 236, 236, var(--bg-opacity));
}

.active\:bg-white:active{
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.active\:bg-cheeto:active{
  --bg-opacity: 1;
  background-color: #f7a500;
  background-color: rgba(247, 165, 0, var(--bg-opacity));
}

.active\:bg-cheeto-very-light:active{
  --bg-opacity: 1;
  background-color: #fffaf2;
  background-color: rgba(255, 250, 242, var(--bg-opacity));
}

.active\:bg-cheeto-light:active{
  --bg-opacity: 1;
  background-color: #ffd649;
  background-color: rgba(255, 214, 73, var(--bg-opacity));
}

.active\:bg-cheeto-dark:active{
  --bg-opacity: 1;
  background-color: #bf7600;
  background-color: rgba(191, 118, 0, var(--bg-opacity));
}

.active\:bg-cheeto-hocus:active{
  --bg-opacity: 1;
  background-color: #f8bd0f;
  background-color: rgba(248, 189, 15, var(--bg-opacity));
}

.active\:bg-cheeto-active:active{
  --bg-opacity: 1;
  background-color: #f8d61b;
  background-color: rgba(248, 214, 27, var(--bg-opacity));
}

.active\:bg-cheeto-ml-plus:active{
  --bg-opacity: 1;
  background-color: #FBEFCA;
  background-color: rgba(251, 239, 202, var(--bg-opacity));
}

.active\:bg-cheeto-banner:active{
  --bg-opacity: 1;
  background-color: #fef7e5;
  background-color: rgba(254, 247, 229, var(--bg-opacity));
}

.active\:bg-gracy-1:active{
  --bg-opacity: 1;
  background-color: #f8f8fa;
  background-color: rgba(248, 248, 250, var(--bg-opacity));
}

.active\:bg-gracy-10:active{
  --bg-opacity: 1;
  background-color: #faf7fd;
  background-color: rgba(250, 247, 253, var(--bg-opacity));
}

.active\:bg-gracy-20:active{
  --bg-opacity: 1;
  background-color: #e0dde3;
  background-color: rgba(224, 221, 227, var(--bg-opacity));
}

.active\:bg-gracy-30:active{
  --bg-opacity: 1;
  background-color: #c8c5ca;
  background-color: rgba(200, 197, 202, var(--bg-opacity));
}

.active\:bg-gracy-40:active{
  --bg-opacity: 1;
  background-color: #aeacb0;
  background-color: rgba(174, 172, 176, var(--bg-opacity));
}

.active\:bg-gracy-50:active{
  --bg-opacity: 1;
  background-color: #969497;
  background-color: rgba(150, 148, 151, var(--bg-opacity));
}

.active\:bg-gracy-60:active{
  --bg-opacity: 1;
  background-color: #7c7b7e;
  background-color: rgba(124, 123, 126, var(--bg-opacity));
}

.active\:bg-gracy-70:active{
  --bg-opacity: 1;
  background-color: #646265;
  background-color: rgba(100, 98, 101, var(--bg-opacity));
}

.active\:bg-gracy-80:active{
  --bg-opacity: 1;
  background-color: #4a494b;
  background-color: rgba(74, 73, 75, var(--bg-opacity));
}

.active\:bg-gracy-90:active{
  --bg-opacity: 1;
  background-color: #323132;
  background-color: rgba(50, 49, 50, var(--bg-opacity));
}

.active\:bg-gracy-100:active{
  --bg-opacity: 1;
  background-color: #181818;
  background-color: rgba(24, 24, 24, var(--bg-opacity));
}

.active\:bg-gracy:active{
  --bg-opacity: 1;
  background-color: #6F7878;
  background-color: rgba(111, 120, 120, var(--bg-opacity));
}

.active\:bg-gracy-overlay-90:active{
  background-color: rgba(50,49,50,0.5);
}

.active\:bg-login:active{
  --bg-opacity: 1;
  background-color: #FDF7E7;
  background-color: rgba(253, 247, 231, var(--bg-opacity));
}

.active\:bg-olive-light:active{
  --bg-opacity: 1;
  background-color: #DFF5F6;
  background-color: rgba(223, 245, 246, var(--bg-opacity));
}

.active\:bg-olive-drab:active{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.active\:bg-olive-dark:active{
  --bg-opacity: 1;
  background-color: #096348;
  background-color: rgba(9, 99, 72, var(--bg-opacity));
}

.active\:bg-daisy-light:active{
  --bg-opacity: 1;
  background-color: #fffce1;
  background-color: rgba(255, 252, 225, var(--bg-opacity));
}

.active\:bg-feedback-gumby:active{
  --bg-opacity: 1;
  background-color: #c8e6c9;
  background-color: rgba(200, 230, 201, var(--bg-opacity));
}

.active\:bg-feedback-daisy:active{
  --bg-opacity: 1;
  background-color: #fff9c4;
  background-color: rgba(255, 249, 196, var(--bg-opacity));
}

.active\:bg-feedback-pokey:active{
  --bg-opacity: 1;
  background-color: #ffcdd2;
  background-color: rgba(255, 205, 210, var(--bg-opacity));
}

.active\:bg-feedback-aster:active{
  --bg-opacity: 1;
  background-color: #b3e5fc;
  background-color: rgba(179, 229, 252, var(--bg-opacity));
}

.active\:bg-feedback-aster-dark:active{
  --bg-opacity: 1;
  background-color: #03567C;
  background-color: rgba(3, 86, 124, var(--bg-opacity));
}

.active\:bg-feedback-roxo:active{
  --bg-opacity: 1;
  background-color: #d1c4e9;
  background-color: rgba(209, 196, 233, var(--bg-opacity));
}

.active\:bg-feedback-error:active{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.active\:bg-feedback-success:active{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.active\:bg-functional-aoki:active{
  --bg-opacity: 1;
  background-color: #6f2ca0;
  background-color: rgba(111, 44, 160, var(--bg-opacity));
}

.active\:bg-functional-aoki-dark:active{
  --bg-opacity: 1;
  background-color: #3e0071;
  background-color: rgba(62, 0, 113, var(--bg-opacity));
}

.active\:bg-functional-aoki-hocus:active{
  --bg-opacity: 1;
  background-color: #9035af;
  background-color: rgba(144, 53, 175, var(--bg-opacity));
}

.active\:bg-functional-aoki-active:active{
  --bg-opacity: 1;
  background-color: #a04fbc;
  background-color: rgba(160, 79, 188, var(--bg-opacity));
}

.active\:bg-functional-aoki-light:active{
  --bg-opacity: 1;
  background-color: #a15ad2;
  background-color: rgba(161, 90, 210, var(--bg-opacity));
}

.active\:bg-functional-kermit:active{
  --bg-opacity: 1;
  background-color: #5aa120;
  background-color: rgba(90, 161, 32, var(--bg-opacity));
}

.active\:bg-mixlabPlus-light:active{
  --bg-opacity: 1;
  background-color: #FFFEF9;
  background-color: rgba(255, 254, 249, var(--bg-opacity));
}

.active\:bg-primary-orange-light:active{
  background-color: ;
}

.active\:bg-off-white:active{
  --bg-opacity: 1;
  background-color: #FAF9F6;
  background-color: rgba(250, 249, 246, var(--bg-opacity));
}

.first\:bg-black:first-child{
  --bg-opacity: 1;
  background-color: #000000;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
}

.first\:bg-transparent:first-child{
  background-color: transparent;
}

.first\:bg-error:first-child{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.first\:bg-success:first-child{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.first\:bg-white-10:first-child{
  --bg-opacity: 1;
  background-color: #FBFBFB;
  background-color: rgba(251, 251, 251, var(--bg-opacity));
}

.first\:bg-white-20:first-child{
  --bg-opacity: 1;
  background-color: #ECECEC;
  background-color: rgba(236, 236, 236, var(--bg-opacity));
}

.first\:bg-white:first-child{
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.first\:bg-cheeto:first-child{
  --bg-opacity: 1;
  background-color: #f7a500;
  background-color: rgba(247, 165, 0, var(--bg-opacity));
}

.first\:bg-cheeto-very-light:first-child{
  --bg-opacity: 1;
  background-color: #fffaf2;
  background-color: rgba(255, 250, 242, var(--bg-opacity));
}

.first\:bg-cheeto-light:first-child{
  --bg-opacity: 1;
  background-color: #ffd649;
  background-color: rgba(255, 214, 73, var(--bg-opacity));
}

.first\:bg-cheeto-dark:first-child{
  --bg-opacity: 1;
  background-color: #bf7600;
  background-color: rgba(191, 118, 0, var(--bg-opacity));
}

.first\:bg-cheeto-hocus:first-child{
  --bg-opacity: 1;
  background-color: #f8bd0f;
  background-color: rgba(248, 189, 15, var(--bg-opacity));
}

.first\:bg-cheeto-active:first-child{
  --bg-opacity: 1;
  background-color: #f8d61b;
  background-color: rgba(248, 214, 27, var(--bg-opacity));
}

.first\:bg-cheeto-ml-plus:first-child{
  --bg-opacity: 1;
  background-color: #FBEFCA;
  background-color: rgba(251, 239, 202, var(--bg-opacity));
}

.first\:bg-cheeto-banner:first-child{
  --bg-opacity: 1;
  background-color: #fef7e5;
  background-color: rgba(254, 247, 229, var(--bg-opacity));
}

.first\:bg-gracy-1:first-child{
  --bg-opacity: 1;
  background-color: #f8f8fa;
  background-color: rgba(248, 248, 250, var(--bg-opacity));
}

.first\:bg-gracy-10:first-child{
  --bg-opacity: 1;
  background-color: #faf7fd;
  background-color: rgba(250, 247, 253, var(--bg-opacity));
}

.first\:bg-gracy-20:first-child{
  --bg-opacity: 1;
  background-color: #e0dde3;
  background-color: rgba(224, 221, 227, var(--bg-opacity));
}

.first\:bg-gracy-30:first-child{
  --bg-opacity: 1;
  background-color: #c8c5ca;
  background-color: rgba(200, 197, 202, var(--bg-opacity));
}

.first\:bg-gracy-40:first-child{
  --bg-opacity: 1;
  background-color: #aeacb0;
  background-color: rgba(174, 172, 176, var(--bg-opacity));
}

.first\:bg-gracy-50:first-child{
  --bg-opacity: 1;
  background-color: #969497;
  background-color: rgba(150, 148, 151, var(--bg-opacity));
}

.first\:bg-gracy-60:first-child{
  --bg-opacity: 1;
  background-color: #7c7b7e;
  background-color: rgba(124, 123, 126, var(--bg-opacity));
}

.first\:bg-gracy-70:first-child{
  --bg-opacity: 1;
  background-color: #646265;
  background-color: rgba(100, 98, 101, var(--bg-opacity));
}

.first\:bg-gracy-80:first-child{
  --bg-opacity: 1;
  background-color: #4a494b;
  background-color: rgba(74, 73, 75, var(--bg-opacity));
}

.first\:bg-gracy-90:first-child{
  --bg-opacity: 1;
  background-color: #323132;
  background-color: rgba(50, 49, 50, var(--bg-opacity));
}

.first\:bg-gracy-100:first-child{
  --bg-opacity: 1;
  background-color: #181818;
  background-color: rgba(24, 24, 24, var(--bg-opacity));
}

.first\:bg-gracy:first-child{
  --bg-opacity: 1;
  background-color: #6F7878;
  background-color: rgba(111, 120, 120, var(--bg-opacity));
}

.first\:bg-gracy-overlay-90:first-child{
  background-color: rgba(50,49,50,0.5);
}

.first\:bg-login:first-child{
  --bg-opacity: 1;
  background-color: #FDF7E7;
  background-color: rgba(253, 247, 231, var(--bg-opacity));
}

.first\:bg-olive-light:first-child{
  --bg-opacity: 1;
  background-color: #DFF5F6;
  background-color: rgba(223, 245, 246, var(--bg-opacity));
}

.first\:bg-olive-drab:first-child{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.first\:bg-olive-dark:first-child{
  --bg-opacity: 1;
  background-color: #096348;
  background-color: rgba(9, 99, 72, var(--bg-opacity));
}

.first\:bg-daisy-light:first-child{
  --bg-opacity: 1;
  background-color: #fffce1;
  background-color: rgba(255, 252, 225, var(--bg-opacity));
}

.first\:bg-feedback-gumby:first-child{
  --bg-opacity: 1;
  background-color: #c8e6c9;
  background-color: rgba(200, 230, 201, var(--bg-opacity));
}

.first\:bg-feedback-daisy:first-child{
  --bg-opacity: 1;
  background-color: #fff9c4;
  background-color: rgba(255, 249, 196, var(--bg-opacity));
}

.first\:bg-feedback-pokey:first-child{
  --bg-opacity: 1;
  background-color: #ffcdd2;
  background-color: rgba(255, 205, 210, var(--bg-opacity));
}

.first\:bg-feedback-aster:first-child{
  --bg-opacity: 1;
  background-color: #b3e5fc;
  background-color: rgba(179, 229, 252, var(--bg-opacity));
}

.first\:bg-feedback-aster-dark:first-child{
  --bg-opacity: 1;
  background-color: #03567C;
  background-color: rgba(3, 86, 124, var(--bg-opacity));
}

.first\:bg-feedback-roxo:first-child{
  --bg-opacity: 1;
  background-color: #d1c4e9;
  background-color: rgba(209, 196, 233, var(--bg-opacity));
}

.first\:bg-feedback-error:first-child{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.first\:bg-feedback-success:first-child{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.first\:bg-functional-aoki:first-child{
  --bg-opacity: 1;
  background-color: #6f2ca0;
  background-color: rgba(111, 44, 160, var(--bg-opacity));
}

.first\:bg-functional-aoki-dark:first-child{
  --bg-opacity: 1;
  background-color: #3e0071;
  background-color: rgba(62, 0, 113, var(--bg-opacity));
}

.first\:bg-functional-aoki-hocus:first-child{
  --bg-opacity: 1;
  background-color: #9035af;
  background-color: rgba(144, 53, 175, var(--bg-opacity));
}

.first\:bg-functional-aoki-active:first-child{
  --bg-opacity: 1;
  background-color: #a04fbc;
  background-color: rgba(160, 79, 188, var(--bg-opacity));
}

.first\:bg-functional-aoki-light:first-child{
  --bg-opacity: 1;
  background-color: #a15ad2;
  background-color: rgba(161, 90, 210, var(--bg-opacity));
}

.first\:bg-functional-kermit:first-child{
  --bg-opacity: 1;
  background-color: #5aa120;
  background-color: rgba(90, 161, 32, var(--bg-opacity));
}

.first\:bg-mixlabPlus-light:first-child{
  --bg-opacity: 1;
  background-color: #FFFEF9;
  background-color: rgba(255, 254, 249, var(--bg-opacity));
}

.first\:bg-primary-orange-light:first-child{
  background-color: ;
}

.first\:bg-off-white:first-child{
  --bg-opacity: 1;
  background-color: #FAF9F6;
  background-color: rgba(250, 249, 246, var(--bg-opacity));
}

.last\:bg-black:last-child{
  --bg-opacity: 1;
  background-color: #000000;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
}

.last\:bg-transparent:last-child{
  background-color: transparent;
}

.last\:bg-error:last-child{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.last\:bg-success:last-child{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.last\:bg-white-10:last-child{
  --bg-opacity: 1;
  background-color: #FBFBFB;
  background-color: rgba(251, 251, 251, var(--bg-opacity));
}

.last\:bg-white-20:last-child{
  --bg-opacity: 1;
  background-color: #ECECEC;
  background-color: rgba(236, 236, 236, var(--bg-opacity));
}

.last\:bg-white:last-child{
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.last\:bg-cheeto:last-child{
  --bg-opacity: 1;
  background-color: #f7a500;
  background-color: rgba(247, 165, 0, var(--bg-opacity));
}

.last\:bg-cheeto-very-light:last-child{
  --bg-opacity: 1;
  background-color: #fffaf2;
  background-color: rgba(255, 250, 242, var(--bg-opacity));
}

.last\:bg-cheeto-light:last-child{
  --bg-opacity: 1;
  background-color: #ffd649;
  background-color: rgba(255, 214, 73, var(--bg-opacity));
}

.last\:bg-cheeto-dark:last-child{
  --bg-opacity: 1;
  background-color: #bf7600;
  background-color: rgba(191, 118, 0, var(--bg-opacity));
}

.last\:bg-cheeto-hocus:last-child{
  --bg-opacity: 1;
  background-color: #f8bd0f;
  background-color: rgba(248, 189, 15, var(--bg-opacity));
}

.last\:bg-cheeto-active:last-child{
  --bg-opacity: 1;
  background-color: #f8d61b;
  background-color: rgba(248, 214, 27, var(--bg-opacity));
}

.last\:bg-cheeto-ml-plus:last-child{
  --bg-opacity: 1;
  background-color: #FBEFCA;
  background-color: rgba(251, 239, 202, var(--bg-opacity));
}

.last\:bg-cheeto-banner:last-child{
  --bg-opacity: 1;
  background-color: #fef7e5;
  background-color: rgba(254, 247, 229, var(--bg-opacity));
}

.last\:bg-gracy-1:last-child{
  --bg-opacity: 1;
  background-color: #f8f8fa;
  background-color: rgba(248, 248, 250, var(--bg-opacity));
}

.last\:bg-gracy-10:last-child{
  --bg-opacity: 1;
  background-color: #faf7fd;
  background-color: rgba(250, 247, 253, var(--bg-opacity));
}

.last\:bg-gracy-20:last-child{
  --bg-opacity: 1;
  background-color: #e0dde3;
  background-color: rgba(224, 221, 227, var(--bg-opacity));
}

.last\:bg-gracy-30:last-child{
  --bg-opacity: 1;
  background-color: #c8c5ca;
  background-color: rgba(200, 197, 202, var(--bg-opacity));
}

.last\:bg-gracy-40:last-child{
  --bg-opacity: 1;
  background-color: #aeacb0;
  background-color: rgba(174, 172, 176, var(--bg-opacity));
}

.last\:bg-gracy-50:last-child{
  --bg-opacity: 1;
  background-color: #969497;
  background-color: rgba(150, 148, 151, var(--bg-opacity));
}

.last\:bg-gracy-60:last-child{
  --bg-opacity: 1;
  background-color: #7c7b7e;
  background-color: rgba(124, 123, 126, var(--bg-opacity));
}

.last\:bg-gracy-70:last-child{
  --bg-opacity: 1;
  background-color: #646265;
  background-color: rgba(100, 98, 101, var(--bg-opacity));
}

.last\:bg-gracy-80:last-child{
  --bg-opacity: 1;
  background-color: #4a494b;
  background-color: rgba(74, 73, 75, var(--bg-opacity));
}

.last\:bg-gracy-90:last-child{
  --bg-opacity: 1;
  background-color: #323132;
  background-color: rgba(50, 49, 50, var(--bg-opacity));
}

.last\:bg-gracy-100:last-child{
  --bg-opacity: 1;
  background-color: #181818;
  background-color: rgba(24, 24, 24, var(--bg-opacity));
}

.last\:bg-gracy:last-child{
  --bg-opacity: 1;
  background-color: #6F7878;
  background-color: rgba(111, 120, 120, var(--bg-opacity));
}

.last\:bg-gracy-overlay-90:last-child{
  background-color: rgba(50,49,50,0.5);
}

.last\:bg-login:last-child{
  --bg-opacity: 1;
  background-color: #FDF7E7;
  background-color: rgba(253, 247, 231, var(--bg-opacity));
}

.last\:bg-olive-light:last-child{
  --bg-opacity: 1;
  background-color: #DFF5F6;
  background-color: rgba(223, 245, 246, var(--bg-opacity));
}

.last\:bg-olive-drab:last-child{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.last\:bg-olive-dark:last-child{
  --bg-opacity: 1;
  background-color: #096348;
  background-color: rgba(9, 99, 72, var(--bg-opacity));
}

.last\:bg-daisy-light:last-child{
  --bg-opacity: 1;
  background-color: #fffce1;
  background-color: rgba(255, 252, 225, var(--bg-opacity));
}

.last\:bg-feedback-gumby:last-child{
  --bg-opacity: 1;
  background-color: #c8e6c9;
  background-color: rgba(200, 230, 201, var(--bg-opacity));
}

.last\:bg-feedback-daisy:last-child{
  --bg-opacity: 1;
  background-color: #fff9c4;
  background-color: rgba(255, 249, 196, var(--bg-opacity));
}

.last\:bg-feedback-pokey:last-child{
  --bg-opacity: 1;
  background-color: #ffcdd2;
  background-color: rgba(255, 205, 210, var(--bg-opacity));
}

.last\:bg-feedback-aster:last-child{
  --bg-opacity: 1;
  background-color: #b3e5fc;
  background-color: rgba(179, 229, 252, var(--bg-opacity));
}

.last\:bg-feedback-aster-dark:last-child{
  --bg-opacity: 1;
  background-color: #03567C;
  background-color: rgba(3, 86, 124, var(--bg-opacity));
}

.last\:bg-feedback-roxo:last-child{
  --bg-opacity: 1;
  background-color: #d1c4e9;
  background-color: rgba(209, 196, 233, var(--bg-opacity));
}

.last\:bg-feedback-error:last-child{
  --bg-opacity: 1;
  background-color: #f44336;
  background-color: rgba(244, 67, 54, var(--bg-opacity));
}

.last\:bg-feedback-success:last-child{
  --bg-opacity: 1;
  background-color: #5ca02c;
  background-color: rgba(92, 160, 44, var(--bg-opacity));
}

.last\:bg-functional-aoki:last-child{
  --bg-opacity: 1;
  background-color: #6f2ca0;
  background-color: rgba(111, 44, 160, var(--bg-opacity));
}

.last\:bg-functional-aoki-dark:last-child{
  --bg-opacity: 1;
  background-color: #3e0071;
  background-color: rgba(62, 0, 113, var(--bg-opacity));
}

.last\:bg-functional-aoki-hocus:last-child{
  --bg-opacity: 1;
  background-color: #9035af;
  background-color: rgba(144, 53, 175, var(--bg-opacity));
}

.last\:bg-functional-aoki-active:last-child{
  --bg-opacity: 1;
  background-color: #a04fbc;
  background-color: rgba(160, 79, 188, var(--bg-opacity));
}

.last\:bg-functional-aoki-light:last-child{
  --bg-opacity: 1;
  background-color: #a15ad2;
  background-color: rgba(161, 90, 210, var(--bg-opacity));
}

.last\:bg-functional-kermit:last-child{
  --bg-opacity: 1;
  background-color: #5aa120;
  background-color: rgba(90, 161, 32, var(--bg-opacity));
}

.last\:bg-mixlabPlus-light:last-child{
  --bg-opacity: 1;
  background-color: #FFFEF9;
  background-color: rgba(255, 254, 249, var(--bg-opacity));
}

.last\:bg-primary-orange-light:last-child{
  background-color: ;
}

.last\:bg-off-white:last-child{
  --bg-opacity: 1;
  background-color: #FAF9F6;
  background-color: rgba(250, 249, 246, var(--bg-opacity));
}

.bg-none{
  background-image: none;
}

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

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

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

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

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

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

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

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

.hover\:bg-none:hover{
  background-image: none;
}

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

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

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

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

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

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

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

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

.focus\:bg-none:focus{
  background-image: none;
}

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

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

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

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

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

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

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

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

.active\:bg-none:active{
  background-image: none;
}

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

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

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

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

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

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

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

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

.first\:bg-none:first-child{
  background-image: none;
}

.first\:bg-gradient-to-t:first-child{
  background-image: linear-gradient(to top, var(--gradient-color-stops));
}

.first\:bg-gradient-to-tr:first-child{
  background-image: linear-gradient(to top right, var(--gradient-color-stops));
}

.first\:bg-gradient-to-r:first-child{
  background-image: linear-gradient(to right, var(--gradient-color-stops));
}

.first\:bg-gradient-to-br:first-child{
  background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
}

.first\:bg-gradient-to-b:first-child{
  background-image: linear-gradient(to bottom, var(--gradient-color-stops));
}

.first\:bg-gradient-to-bl:first-child{
  background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
}

.first\:bg-gradient-to-l:first-child{
  background-image: linear-gradient(to left, var(--gradient-color-stops));
}

.first\:bg-gradient-to-tl:first-child{
  background-image: linear-gradient(to top left, var(--gradient-color-stops));
}

.last\:bg-none:last-child{
  background-image: none;
}

.last\:bg-gradient-to-t:last-child{
  background-image: linear-gradient(to top, var(--gradient-color-stops));
}

.last\:bg-gradient-to-tr:last-child{
  background-image: linear-gradient(to top right, var(--gradient-color-stops));
}

.last\:bg-gradient-to-r:last-child{
  background-image: linear-gradient(to right, var(--gradient-color-stops));
}

.last\:bg-gradient-to-br:last-child{
  background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
}

.last\:bg-gradient-to-b:last-child{
  background-image: linear-gradient(to bottom, var(--gradient-color-stops));
}

.last\:bg-gradient-to-bl:last-child{
  background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
}

.last\:bg-gradient-to-l:last-child{
  background-image: linear-gradient(to left, var(--gradient-color-stops));
}

.last\:bg-gradient-to-tl:last-child{
  background-image: linear-gradient(to top left, var(--gradient-color-stops));
}

.from-black{
  --gradient-from-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

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

.from-error{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.from-success{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.from-white-10{
  --gradient-from-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.from-white-20{
  --gradient-from-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

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

.from-cheeto{
  --gradient-from-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.from-cheeto-very-light{
  --gradient-from-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.from-cheeto-light{
  --gradient-from-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.from-cheeto-dark{
  --gradient-from-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.from-cheeto-hocus{
  --gradient-from-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.from-cheeto-active{
  --gradient-from-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.from-cheeto-ml-plus{
  --gradient-from-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.from-cheeto-banner{
  --gradient-from-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.from-gracy-1{
  --gradient-from-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.from-gracy-10{
  --gradient-from-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.from-gracy-20{
  --gradient-from-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.from-gracy-30{
  --gradient-from-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.from-gracy-40{
  --gradient-from-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.from-gracy-50{
  --gradient-from-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.from-gracy-60{
  --gradient-from-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.from-gracy-70{
  --gradient-from-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.from-gracy-80{
  --gradient-from-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.from-gracy-90{
  --gradient-from-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.from-gracy-100{
  --gradient-from-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.from-gracy{
  --gradient-from-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.from-gracy-overlay-90{
  --gradient-from-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.from-login{
  --gradient-from-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.from-olive-light{
  --gradient-from-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.from-olive-drab{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.from-olive-dark{
  --gradient-from-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.from-daisy-light{
  --gradient-from-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.from-feedback-gumby{
  --gradient-from-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.from-feedback-daisy{
  --gradient-from-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.from-feedback-pokey{
  --gradient-from-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.from-feedback-aster{
  --gradient-from-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.from-feedback-aster-dark{
  --gradient-from-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.from-feedback-roxo{
  --gradient-from-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.from-feedback-error{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.from-feedback-success{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.from-functional-aoki{
  --gradient-from-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.from-functional-aoki-dark{
  --gradient-from-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.from-functional-aoki-hocus{
  --gradient-from-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.from-functional-aoki-active{
  --gradient-from-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.from-functional-aoki-light{
  --gradient-from-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.from-functional-kermit{
  --gradient-from-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.from-mixlabPlus-light{
  --gradient-from-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.from-primary-orange-light{
  --gradient-from-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.from-off-white{
  --gradient-from-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

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

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

.via-error{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.via-success{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.via-white-10{
  --gradient-via-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.via-white-20{
  --gradient-via-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

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

.via-cheeto{
  --gradient-via-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.via-cheeto-very-light{
  --gradient-via-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.via-cheeto-light{
  --gradient-via-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.via-cheeto-dark{
  --gradient-via-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.via-cheeto-hocus{
  --gradient-via-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.via-cheeto-active{
  --gradient-via-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.via-cheeto-ml-plus{
  --gradient-via-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.via-cheeto-banner{
  --gradient-via-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.via-gracy-1{
  --gradient-via-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.via-gracy-10{
  --gradient-via-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.via-gracy-20{
  --gradient-via-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.via-gracy-30{
  --gradient-via-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.via-gracy-40{
  --gradient-via-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.via-gracy-50{
  --gradient-via-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.via-gracy-60{
  --gradient-via-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.via-gracy-70{
  --gradient-via-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.via-gracy-80{
  --gradient-via-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.via-gracy-90{
  --gradient-via-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.via-gracy-100{
  --gradient-via-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.via-gracy{
  --gradient-via-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.via-gracy-overlay-90{
  --gradient-via-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.via-login{
  --gradient-via-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.via-olive-light{
  --gradient-via-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.via-olive-drab{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.via-olive-dark{
  --gradient-via-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.via-daisy-light{
  --gradient-via-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.via-feedback-gumby{
  --gradient-via-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.via-feedback-daisy{
  --gradient-via-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.via-feedback-pokey{
  --gradient-via-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.via-feedback-aster{
  --gradient-via-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.via-feedback-aster-dark{
  --gradient-via-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.via-feedback-roxo{
  --gradient-via-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.via-feedback-error{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.via-feedback-success{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.via-functional-aoki{
  --gradient-via-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.via-functional-aoki-dark{
  --gradient-via-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.via-functional-aoki-hocus{
  --gradient-via-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.via-functional-aoki-active{
  --gradient-via-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.via-functional-aoki-light{
  --gradient-via-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.via-functional-kermit{
  --gradient-via-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.via-mixlabPlus-light{
  --gradient-via-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.via-primary-orange-light{
  --gradient-via-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.via-off-white{
  --gradient-via-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.to-black{
  --gradient-to-color: #000000;
}

.to-transparent{
  --gradient-to-color: transparent;
}

.to-error{
  --gradient-to-color: #f44336;
}

.to-success{
  --gradient-to-color: #5ca02c;
}

.to-white-10{
  --gradient-to-color: #FBFBFB;
}

.to-white-20{
  --gradient-to-color: #ECECEC;
}

.to-white{
  --gradient-to-color: #FFFFFF;
}

.to-cheeto{
  --gradient-to-color: #f7a500;
}

.to-cheeto-very-light{
  --gradient-to-color: #fffaf2;
}

.to-cheeto-light{
  --gradient-to-color: #ffd649;
}

.to-cheeto-dark{
  --gradient-to-color: #bf7600;
}

.to-cheeto-hocus{
  --gradient-to-color: #f8bd0f;
}

.to-cheeto-active{
  --gradient-to-color: #f8d61b;
}

.to-cheeto-ml-plus{
  --gradient-to-color: #FBEFCA;
}

.to-cheeto-banner{
  --gradient-to-color: #fef7e5;
}

.to-gracy-1{
  --gradient-to-color: #f8f8fa;
}

.to-gracy-10{
  --gradient-to-color: #faf7fd;
}

.to-gracy-20{
  --gradient-to-color: #e0dde3;
}

.to-gracy-30{
  --gradient-to-color: #c8c5ca;
}

.to-gracy-40{
  --gradient-to-color: #aeacb0;
}

.to-gracy-50{
  --gradient-to-color: #969497;
}

.to-gracy-60{
  --gradient-to-color: #7c7b7e;
}

.to-gracy-70{
  --gradient-to-color: #646265;
}

.to-gracy-80{
  --gradient-to-color: #4a494b;
}

.to-gracy-90{
  --gradient-to-color: #323132;
}

.to-gracy-100{
  --gradient-to-color: #181818;
}

.to-gracy{
  --gradient-to-color: #6F7878;
}

.to-gracy-overlay-90{
  --gradient-to-color: rgba(50,49,50,0.5);
}

.to-login{
  --gradient-to-color: #FDF7E7;
}

.to-olive-light{
  --gradient-to-color: #DFF5F6;
}

.to-olive-drab{
  --gradient-to-color: #5ca02c;
}

.to-olive-dark{
  --gradient-to-color: #096348;
}

.to-daisy-light{
  --gradient-to-color: #fffce1;
}

.to-feedback-gumby{
  --gradient-to-color: #c8e6c9;
}

.to-feedback-daisy{
  --gradient-to-color: #fff9c4;
}

.to-feedback-pokey{
  --gradient-to-color: #ffcdd2;
}

.to-feedback-aster{
  --gradient-to-color: #b3e5fc;
}

.to-feedback-aster-dark{
  --gradient-to-color: #03567C;
}

.to-feedback-roxo{
  --gradient-to-color: #d1c4e9;
}

.to-feedback-error{
  --gradient-to-color: #f44336;
}

.to-feedback-success{
  --gradient-to-color: #5ca02c;
}

.to-functional-aoki{
  --gradient-to-color: #6f2ca0;
}

.to-functional-aoki-dark{
  --gradient-to-color: #3e0071;
}

.to-functional-aoki-hocus{
  --gradient-to-color: #9035af;
}

.to-functional-aoki-active{
  --gradient-to-color: #a04fbc;
}

.to-functional-aoki-light{
  --gradient-to-color: #a15ad2;
}

.to-functional-kermit{
  --gradient-to-color: #5aa120;
}

.to-mixlabPlus-light{
  --gradient-to-color: #FFFEF9;
}

.to-primary-orange-light{
  --gradient-to-color: ;
}

.to-off-white{
  --gradient-to-color: #FAF9F6;
}

.hover\:from-black:hover{
  --gradient-from-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.hover\:from-transparent:hover{
  --gradient-from-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.hover\:from-error:hover{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.hover\:from-success:hover{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.hover\:from-white-10:hover{
  --gradient-from-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.hover\:from-white-20:hover{
  --gradient-from-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

.hover\:from-white:hover{
  --gradient-from-color: #FFFFFF;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.hover\:from-cheeto:hover{
  --gradient-from-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.hover\:from-cheeto-very-light:hover{
  --gradient-from-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.hover\:from-cheeto-light:hover{
  --gradient-from-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.hover\:from-cheeto-dark:hover{
  --gradient-from-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.hover\:from-cheeto-hocus:hover{
  --gradient-from-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.hover\:from-cheeto-active:hover{
  --gradient-from-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.hover\:from-cheeto-ml-plus:hover{
  --gradient-from-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.hover\:from-cheeto-banner:hover{
  --gradient-from-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.hover\:from-gracy-1:hover{
  --gradient-from-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.hover\:from-gracy-10:hover{
  --gradient-from-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.hover\:from-gracy-20:hover{
  --gradient-from-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.hover\:from-gracy-30:hover{
  --gradient-from-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.hover\:from-gracy-40:hover{
  --gradient-from-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.hover\:from-gracy-50:hover{
  --gradient-from-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.hover\:from-gracy-60:hover{
  --gradient-from-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.hover\:from-gracy-70:hover{
  --gradient-from-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.hover\:from-gracy-80:hover{
  --gradient-from-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.hover\:from-gracy-90:hover{
  --gradient-from-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.hover\:from-gracy-100:hover{
  --gradient-from-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.hover\:from-gracy:hover{
  --gradient-from-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.hover\:from-gracy-overlay-90:hover{
  --gradient-from-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.hover\:from-login:hover{
  --gradient-from-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.hover\:from-olive-light:hover{
  --gradient-from-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.hover\:from-olive-drab:hover{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.hover\:from-olive-dark:hover{
  --gradient-from-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.hover\:from-daisy-light:hover{
  --gradient-from-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.hover\:from-feedback-gumby:hover{
  --gradient-from-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.hover\:from-feedback-daisy:hover{
  --gradient-from-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.hover\:from-feedback-pokey:hover{
  --gradient-from-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.hover\:from-feedback-aster:hover{
  --gradient-from-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.hover\:from-feedback-aster-dark:hover{
  --gradient-from-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.hover\:from-feedback-roxo:hover{
  --gradient-from-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.hover\:from-feedback-error:hover{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.hover\:from-feedback-success:hover{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.hover\:from-functional-aoki:hover{
  --gradient-from-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.hover\:from-functional-aoki-dark:hover{
  --gradient-from-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.hover\:from-functional-aoki-hocus:hover{
  --gradient-from-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.hover\:from-functional-aoki-active:hover{
  --gradient-from-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.hover\:from-functional-aoki-light:hover{
  --gradient-from-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.hover\:from-functional-kermit:hover{
  --gradient-from-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.hover\:from-mixlabPlus-light:hover{
  --gradient-from-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.hover\:from-primary-orange-light:hover{
  --gradient-from-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.hover\:from-off-white:hover{
  --gradient-from-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.hover\:via-black:hover{
  --gradient-via-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.hover\:via-transparent:hover{
  --gradient-via-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.hover\:via-error:hover{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.hover\:via-success:hover{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.hover\:via-white-10:hover{
  --gradient-via-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.hover\:via-white-20:hover{
  --gradient-via-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

.hover\:via-white:hover{
  --gradient-via-color: #FFFFFF;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.hover\:via-cheeto:hover{
  --gradient-via-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.hover\:via-cheeto-very-light:hover{
  --gradient-via-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.hover\:via-cheeto-light:hover{
  --gradient-via-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.hover\:via-cheeto-dark:hover{
  --gradient-via-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.hover\:via-cheeto-hocus:hover{
  --gradient-via-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.hover\:via-cheeto-active:hover{
  --gradient-via-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.hover\:via-cheeto-ml-plus:hover{
  --gradient-via-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.hover\:via-cheeto-banner:hover{
  --gradient-via-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.hover\:via-gracy-1:hover{
  --gradient-via-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.hover\:via-gracy-10:hover{
  --gradient-via-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.hover\:via-gracy-20:hover{
  --gradient-via-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.hover\:via-gracy-30:hover{
  --gradient-via-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.hover\:via-gracy-40:hover{
  --gradient-via-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.hover\:via-gracy-50:hover{
  --gradient-via-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.hover\:via-gracy-60:hover{
  --gradient-via-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.hover\:via-gracy-70:hover{
  --gradient-via-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.hover\:via-gracy-80:hover{
  --gradient-via-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.hover\:via-gracy-90:hover{
  --gradient-via-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.hover\:via-gracy-100:hover{
  --gradient-via-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.hover\:via-gracy:hover{
  --gradient-via-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.hover\:via-gracy-overlay-90:hover{
  --gradient-via-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.hover\:via-login:hover{
  --gradient-via-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.hover\:via-olive-light:hover{
  --gradient-via-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.hover\:via-olive-drab:hover{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.hover\:via-olive-dark:hover{
  --gradient-via-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.hover\:via-daisy-light:hover{
  --gradient-via-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.hover\:via-feedback-gumby:hover{
  --gradient-via-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.hover\:via-feedback-daisy:hover{
  --gradient-via-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.hover\:via-feedback-pokey:hover{
  --gradient-via-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.hover\:via-feedback-aster:hover{
  --gradient-via-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.hover\:via-feedback-aster-dark:hover{
  --gradient-via-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.hover\:via-feedback-roxo:hover{
  --gradient-via-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.hover\:via-feedback-error:hover{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.hover\:via-feedback-success:hover{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.hover\:via-functional-aoki:hover{
  --gradient-via-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.hover\:via-functional-aoki-dark:hover{
  --gradient-via-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.hover\:via-functional-aoki-hocus:hover{
  --gradient-via-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.hover\:via-functional-aoki-active:hover{
  --gradient-via-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.hover\:via-functional-aoki-light:hover{
  --gradient-via-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.hover\:via-functional-kermit:hover{
  --gradient-via-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.hover\:via-mixlabPlus-light:hover{
  --gradient-via-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.hover\:via-primary-orange-light:hover{
  --gradient-via-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.hover\:via-off-white:hover{
  --gradient-via-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.hover\:to-black:hover{
  --gradient-to-color: #000000;
}

.hover\:to-transparent:hover{
  --gradient-to-color: transparent;
}

.hover\:to-error:hover{
  --gradient-to-color: #f44336;
}

.hover\:to-success:hover{
  --gradient-to-color: #5ca02c;
}

.hover\:to-white-10:hover{
  --gradient-to-color: #FBFBFB;
}

.hover\:to-white-20:hover{
  --gradient-to-color: #ECECEC;
}

.hover\:to-white:hover{
  --gradient-to-color: #FFFFFF;
}

.hover\:to-cheeto:hover{
  --gradient-to-color: #f7a500;
}

.hover\:to-cheeto-very-light:hover{
  --gradient-to-color: #fffaf2;
}

.hover\:to-cheeto-light:hover{
  --gradient-to-color: #ffd649;
}

.hover\:to-cheeto-dark:hover{
  --gradient-to-color: #bf7600;
}

.hover\:to-cheeto-hocus:hover{
  --gradient-to-color: #f8bd0f;
}

.hover\:to-cheeto-active:hover{
  --gradient-to-color: #f8d61b;
}

.hover\:to-cheeto-ml-plus:hover{
  --gradient-to-color: #FBEFCA;
}

.hover\:to-cheeto-banner:hover{
  --gradient-to-color: #fef7e5;
}

.hover\:to-gracy-1:hover{
  --gradient-to-color: #f8f8fa;
}

.hover\:to-gracy-10:hover{
  --gradient-to-color: #faf7fd;
}

.hover\:to-gracy-20:hover{
  --gradient-to-color: #e0dde3;
}

.hover\:to-gracy-30:hover{
  --gradient-to-color: #c8c5ca;
}

.hover\:to-gracy-40:hover{
  --gradient-to-color: #aeacb0;
}

.hover\:to-gracy-50:hover{
  --gradient-to-color: #969497;
}

.hover\:to-gracy-60:hover{
  --gradient-to-color: #7c7b7e;
}

.hover\:to-gracy-70:hover{
  --gradient-to-color: #646265;
}

.hover\:to-gracy-80:hover{
  --gradient-to-color: #4a494b;
}

.hover\:to-gracy-90:hover{
  --gradient-to-color: #323132;
}

.hover\:to-gracy-100:hover{
  --gradient-to-color: #181818;
}

.hover\:to-gracy:hover{
  --gradient-to-color: #6F7878;
}

.hover\:to-gracy-overlay-90:hover{
  --gradient-to-color: rgba(50,49,50,0.5);
}

.hover\:to-login:hover{
  --gradient-to-color: #FDF7E7;
}

.hover\:to-olive-light:hover{
  --gradient-to-color: #DFF5F6;
}

.hover\:to-olive-drab:hover{
  --gradient-to-color: #5ca02c;
}

.hover\:to-olive-dark:hover{
  --gradient-to-color: #096348;
}

.hover\:to-daisy-light:hover{
  --gradient-to-color: #fffce1;
}

.hover\:to-feedback-gumby:hover{
  --gradient-to-color: #c8e6c9;
}

.hover\:to-feedback-daisy:hover{
  --gradient-to-color: #fff9c4;
}

.hover\:to-feedback-pokey:hover{
  --gradient-to-color: #ffcdd2;
}

.hover\:to-feedback-aster:hover{
  --gradient-to-color: #b3e5fc;
}

.hover\:to-feedback-aster-dark:hover{
  --gradient-to-color: #03567C;
}

.hover\:to-feedback-roxo:hover{
  --gradient-to-color: #d1c4e9;
}

.hover\:to-feedback-error:hover{
  --gradient-to-color: #f44336;
}

.hover\:to-feedback-success:hover{
  --gradient-to-color: #5ca02c;
}

.hover\:to-functional-aoki:hover{
  --gradient-to-color: #6f2ca0;
}

.hover\:to-functional-aoki-dark:hover{
  --gradient-to-color: #3e0071;
}

.hover\:to-functional-aoki-hocus:hover{
  --gradient-to-color: #9035af;
}

.hover\:to-functional-aoki-active:hover{
  --gradient-to-color: #a04fbc;
}

.hover\:to-functional-aoki-light:hover{
  --gradient-to-color: #a15ad2;
}

.hover\:to-functional-kermit:hover{
  --gradient-to-color: #5aa120;
}

.hover\:to-mixlabPlus-light:hover{
  --gradient-to-color: #FFFEF9;
}

.hover\:to-primary-orange-light:hover{
  --gradient-to-color: ;
}

.hover\:to-off-white:hover{
  --gradient-to-color: #FAF9F6;
}

.focus\:from-black:focus{
  --gradient-from-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.focus\:from-transparent:focus{
  --gradient-from-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.focus\:from-error:focus{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.focus\:from-success:focus{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.focus\:from-white-10:focus{
  --gradient-from-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.focus\:from-white-20:focus{
  --gradient-from-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

.focus\:from-white:focus{
  --gradient-from-color: #FFFFFF;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.focus\:from-cheeto:focus{
  --gradient-from-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.focus\:from-cheeto-very-light:focus{
  --gradient-from-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.focus\:from-cheeto-light:focus{
  --gradient-from-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.focus\:from-cheeto-dark:focus{
  --gradient-from-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.focus\:from-cheeto-hocus:focus{
  --gradient-from-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.focus\:from-cheeto-active:focus{
  --gradient-from-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.focus\:from-cheeto-ml-plus:focus{
  --gradient-from-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.focus\:from-cheeto-banner:focus{
  --gradient-from-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.focus\:from-gracy-1:focus{
  --gradient-from-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.focus\:from-gracy-10:focus{
  --gradient-from-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.focus\:from-gracy-20:focus{
  --gradient-from-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.focus\:from-gracy-30:focus{
  --gradient-from-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.focus\:from-gracy-40:focus{
  --gradient-from-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.focus\:from-gracy-50:focus{
  --gradient-from-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.focus\:from-gracy-60:focus{
  --gradient-from-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.focus\:from-gracy-70:focus{
  --gradient-from-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.focus\:from-gracy-80:focus{
  --gradient-from-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.focus\:from-gracy-90:focus{
  --gradient-from-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.focus\:from-gracy-100:focus{
  --gradient-from-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.focus\:from-gracy:focus{
  --gradient-from-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.focus\:from-gracy-overlay-90:focus{
  --gradient-from-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.focus\:from-login:focus{
  --gradient-from-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.focus\:from-olive-light:focus{
  --gradient-from-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.focus\:from-olive-drab:focus{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.focus\:from-olive-dark:focus{
  --gradient-from-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.focus\:from-daisy-light:focus{
  --gradient-from-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.focus\:from-feedback-gumby:focus{
  --gradient-from-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.focus\:from-feedback-daisy:focus{
  --gradient-from-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.focus\:from-feedback-pokey:focus{
  --gradient-from-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.focus\:from-feedback-aster:focus{
  --gradient-from-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.focus\:from-feedback-aster-dark:focus{
  --gradient-from-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.focus\:from-feedback-roxo:focus{
  --gradient-from-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.focus\:from-feedback-error:focus{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.focus\:from-feedback-success:focus{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.focus\:from-functional-aoki:focus{
  --gradient-from-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.focus\:from-functional-aoki-dark:focus{
  --gradient-from-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.focus\:from-functional-aoki-hocus:focus{
  --gradient-from-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.focus\:from-functional-aoki-active:focus{
  --gradient-from-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.focus\:from-functional-aoki-light:focus{
  --gradient-from-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.focus\:from-functional-kermit:focus{
  --gradient-from-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.focus\:from-mixlabPlus-light:focus{
  --gradient-from-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.focus\:from-primary-orange-light:focus{
  --gradient-from-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.focus\:from-off-white:focus{
  --gradient-from-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.focus\:via-black:focus{
  --gradient-via-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.focus\:via-transparent:focus{
  --gradient-via-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.focus\:via-error:focus{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.focus\:via-success:focus{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.focus\:via-white-10:focus{
  --gradient-via-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.focus\:via-white-20:focus{
  --gradient-via-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

.focus\:via-white:focus{
  --gradient-via-color: #FFFFFF;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.focus\:via-cheeto:focus{
  --gradient-via-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.focus\:via-cheeto-very-light:focus{
  --gradient-via-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.focus\:via-cheeto-light:focus{
  --gradient-via-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.focus\:via-cheeto-dark:focus{
  --gradient-via-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.focus\:via-cheeto-hocus:focus{
  --gradient-via-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.focus\:via-cheeto-active:focus{
  --gradient-via-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.focus\:via-cheeto-ml-plus:focus{
  --gradient-via-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.focus\:via-cheeto-banner:focus{
  --gradient-via-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.focus\:via-gracy-1:focus{
  --gradient-via-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.focus\:via-gracy-10:focus{
  --gradient-via-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.focus\:via-gracy-20:focus{
  --gradient-via-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.focus\:via-gracy-30:focus{
  --gradient-via-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.focus\:via-gracy-40:focus{
  --gradient-via-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.focus\:via-gracy-50:focus{
  --gradient-via-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.focus\:via-gracy-60:focus{
  --gradient-via-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.focus\:via-gracy-70:focus{
  --gradient-via-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.focus\:via-gracy-80:focus{
  --gradient-via-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.focus\:via-gracy-90:focus{
  --gradient-via-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.focus\:via-gracy-100:focus{
  --gradient-via-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.focus\:via-gracy:focus{
  --gradient-via-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.focus\:via-gracy-overlay-90:focus{
  --gradient-via-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.focus\:via-login:focus{
  --gradient-via-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.focus\:via-olive-light:focus{
  --gradient-via-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.focus\:via-olive-drab:focus{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.focus\:via-olive-dark:focus{
  --gradient-via-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.focus\:via-daisy-light:focus{
  --gradient-via-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.focus\:via-feedback-gumby:focus{
  --gradient-via-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.focus\:via-feedback-daisy:focus{
  --gradient-via-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.focus\:via-feedback-pokey:focus{
  --gradient-via-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.focus\:via-feedback-aster:focus{
  --gradient-via-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.focus\:via-feedback-aster-dark:focus{
  --gradient-via-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.focus\:via-feedback-roxo:focus{
  --gradient-via-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.focus\:via-feedback-error:focus{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.focus\:via-feedback-success:focus{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.focus\:via-functional-aoki:focus{
  --gradient-via-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.focus\:via-functional-aoki-dark:focus{
  --gradient-via-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.focus\:via-functional-aoki-hocus:focus{
  --gradient-via-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.focus\:via-functional-aoki-active:focus{
  --gradient-via-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.focus\:via-functional-aoki-light:focus{
  --gradient-via-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.focus\:via-functional-kermit:focus{
  --gradient-via-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.focus\:via-mixlabPlus-light:focus{
  --gradient-via-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.focus\:via-primary-orange-light:focus{
  --gradient-via-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.focus\:via-off-white:focus{
  --gradient-via-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.focus\:to-black:focus{
  --gradient-to-color: #000000;
}

.focus\:to-transparent:focus{
  --gradient-to-color: transparent;
}

.focus\:to-error:focus{
  --gradient-to-color: #f44336;
}

.focus\:to-success:focus{
  --gradient-to-color: #5ca02c;
}

.focus\:to-white-10:focus{
  --gradient-to-color: #FBFBFB;
}

.focus\:to-white-20:focus{
  --gradient-to-color: #ECECEC;
}

.focus\:to-white:focus{
  --gradient-to-color: #FFFFFF;
}

.focus\:to-cheeto:focus{
  --gradient-to-color: #f7a500;
}

.focus\:to-cheeto-very-light:focus{
  --gradient-to-color: #fffaf2;
}

.focus\:to-cheeto-light:focus{
  --gradient-to-color: #ffd649;
}

.focus\:to-cheeto-dark:focus{
  --gradient-to-color: #bf7600;
}

.focus\:to-cheeto-hocus:focus{
  --gradient-to-color: #f8bd0f;
}

.focus\:to-cheeto-active:focus{
  --gradient-to-color: #f8d61b;
}

.focus\:to-cheeto-ml-plus:focus{
  --gradient-to-color: #FBEFCA;
}

.focus\:to-cheeto-banner:focus{
  --gradient-to-color: #fef7e5;
}

.focus\:to-gracy-1:focus{
  --gradient-to-color: #f8f8fa;
}

.focus\:to-gracy-10:focus{
  --gradient-to-color: #faf7fd;
}

.focus\:to-gracy-20:focus{
  --gradient-to-color: #e0dde3;
}

.focus\:to-gracy-30:focus{
  --gradient-to-color: #c8c5ca;
}

.focus\:to-gracy-40:focus{
  --gradient-to-color: #aeacb0;
}

.focus\:to-gracy-50:focus{
  --gradient-to-color: #969497;
}

.focus\:to-gracy-60:focus{
  --gradient-to-color: #7c7b7e;
}

.focus\:to-gracy-70:focus{
  --gradient-to-color: #646265;
}

.focus\:to-gracy-80:focus{
  --gradient-to-color: #4a494b;
}

.focus\:to-gracy-90:focus{
  --gradient-to-color: #323132;
}

.focus\:to-gracy-100:focus{
  --gradient-to-color: #181818;
}

.focus\:to-gracy:focus{
  --gradient-to-color: #6F7878;
}

.focus\:to-gracy-overlay-90:focus{
  --gradient-to-color: rgba(50,49,50,0.5);
}

.focus\:to-login:focus{
  --gradient-to-color: #FDF7E7;
}

.focus\:to-olive-light:focus{
  --gradient-to-color: #DFF5F6;
}

.focus\:to-olive-drab:focus{
  --gradient-to-color: #5ca02c;
}

.focus\:to-olive-dark:focus{
  --gradient-to-color: #096348;
}

.focus\:to-daisy-light:focus{
  --gradient-to-color: #fffce1;
}

.focus\:to-feedback-gumby:focus{
  --gradient-to-color: #c8e6c9;
}

.focus\:to-feedback-daisy:focus{
  --gradient-to-color: #fff9c4;
}

.focus\:to-feedback-pokey:focus{
  --gradient-to-color: #ffcdd2;
}

.focus\:to-feedback-aster:focus{
  --gradient-to-color: #b3e5fc;
}

.focus\:to-feedback-aster-dark:focus{
  --gradient-to-color: #03567C;
}

.focus\:to-feedback-roxo:focus{
  --gradient-to-color: #d1c4e9;
}

.focus\:to-feedback-error:focus{
  --gradient-to-color: #f44336;
}

.focus\:to-feedback-success:focus{
  --gradient-to-color: #5ca02c;
}

.focus\:to-functional-aoki:focus{
  --gradient-to-color: #6f2ca0;
}

.focus\:to-functional-aoki-dark:focus{
  --gradient-to-color: #3e0071;
}

.focus\:to-functional-aoki-hocus:focus{
  --gradient-to-color: #9035af;
}

.focus\:to-functional-aoki-active:focus{
  --gradient-to-color: #a04fbc;
}

.focus\:to-functional-aoki-light:focus{
  --gradient-to-color: #a15ad2;
}

.focus\:to-functional-kermit:focus{
  --gradient-to-color: #5aa120;
}

.focus\:to-mixlabPlus-light:focus{
  --gradient-to-color: #FFFEF9;
}

.focus\:to-primary-orange-light:focus{
  --gradient-to-color: ;
}

.focus\:to-off-white:focus{
  --gradient-to-color: #FAF9F6;
}

.active\:from-black:active{
  --gradient-from-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.active\:from-transparent:active{
  --gradient-from-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.active\:from-error:active{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.active\:from-success:active{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.active\:from-white-10:active{
  --gradient-from-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.active\:from-white-20:active{
  --gradient-from-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

.active\:from-white:active{
  --gradient-from-color: #FFFFFF;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.active\:from-cheeto:active{
  --gradient-from-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.active\:from-cheeto-very-light:active{
  --gradient-from-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.active\:from-cheeto-light:active{
  --gradient-from-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.active\:from-cheeto-dark:active{
  --gradient-from-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.active\:from-cheeto-hocus:active{
  --gradient-from-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.active\:from-cheeto-active:active{
  --gradient-from-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.active\:from-cheeto-ml-plus:active{
  --gradient-from-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.active\:from-cheeto-banner:active{
  --gradient-from-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.active\:from-gracy-1:active{
  --gradient-from-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.active\:from-gracy-10:active{
  --gradient-from-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.active\:from-gracy-20:active{
  --gradient-from-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.active\:from-gracy-30:active{
  --gradient-from-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.active\:from-gracy-40:active{
  --gradient-from-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.active\:from-gracy-50:active{
  --gradient-from-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.active\:from-gracy-60:active{
  --gradient-from-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.active\:from-gracy-70:active{
  --gradient-from-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.active\:from-gracy-80:active{
  --gradient-from-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.active\:from-gracy-90:active{
  --gradient-from-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.active\:from-gracy-100:active{
  --gradient-from-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.active\:from-gracy:active{
  --gradient-from-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.active\:from-gracy-overlay-90:active{
  --gradient-from-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.active\:from-login:active{
  --gradient-from-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.active\:from-olive-light:active{
  --gradient-from-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.active\:from-olive-drab:active{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.active\:from-olive-dark:active{
  --gradient-from-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.active\:from-daisy-light:active{
  --gradient-from-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.active\:from-feedback-gumby:active{
  --gradient-from-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.active\:from-feedback-daisy:active{
  --gradient-from-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.active\:from-feedback-pokey:active{
  --gradient-from-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.active\:from-feedback-aster:active{
  --gradient-from-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.active\:from-feedback-aster-dark:active{
  --gradient-from-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.active\:from-feedback-roxo:active{
  --gradient-from-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.active\:from-feedback-error:active{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.active\:from-feedback-success:active{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.active\:from-functional-aoki:active{
  --gradient-from-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.active\:from-functional-aoki-dark:active{
  --gradient-from-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.active\:from-functional-aoki-hocus:active{
  --gradient-from-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.active\:from-functional-aoki-active:active{
  --gradient-from-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.active\:from-functional-aoki-light:active{
  --gradient-from-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.active\:from-functional-kermit:active{
  --gradient-from-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.active\:from-mixlabPlus-light:active{
  --gradient-from-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.active\:from-primary-orange-light:active{
  --gradient-from-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.active\:from-off-white:active{
  --gradient-from-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.active\:via-black:active{
  --gradient-via-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.active\:via-transparent:active{
  --gradient-via-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.active\:via-error:active{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.active\:via-success:active{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.active\:via-white-10:active{
  --gradient-via-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.active\:via-white-20:active{
  --gradient-via-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

.active\:via-white:active{
  --gradient-via-color: #FFFFFF;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.active\:via-cheeto:active{
  --gradient-via-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.active\:via-cheeto-very-light:active{
  --gradient-via-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.active\:via-cheeto-light:active{
  --gradient-via-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.active\:via-cheeto-dark:active{
  --gradient-via-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.active\:via-cheeto-hocus:active{
  --gradient-via-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.active\:via-cheeto-active:active{
  --gradient-via-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.active\:via-cheeto-ml-plus:active{
  --gradient-via-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.active\:via-cheeto-banner:active{
  --gradient-via-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.active\:via-gracy-1:active{
  --gradient-via-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.active\:via-gracy-10:active{
  --gradient-via-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.active\:via-gracy-20:active{
  --gradient-via-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.active\:via-gracy-30:active{
  --gradient-via-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.active\:via-gracy-40:active{
  --gradient-via-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.active\:via-gracy-50:active{
  --gradient-via-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.active\:via-gracy-60:active{
  --gradient-via-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.active\:via-gracy-70:active{
  --gradient-via-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.active\:via-gracy-80:active{
  --gradient-via-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.active\:via-gracy-90:active{
  --gradient-via-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.active\:via-gracy-100:active{
  --gradient-via-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.active\:via-gracy:active{
  --gradient-via-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.active\:via-gracy-overlay-90:active{
  --gradient-via-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.active\:via-login:active{
  --gradient-via-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.active\:via-olive-light:active{
  --gradient-via-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.active\:via-olive-drab:active{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.active\:via-olive-dark:active{
  --gradient-via-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.active\:via-daisy-light:active{
  --gradient-via-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.active\:via-feedback-gumby:active{
  --gradient-via-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.active\:via-feedback-daisy:active{
  --gradient-via-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.active\:via-feedback-pokey:active{
  --gradient-via-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.active\:via-feedback-aster:active{
  --gradient-via-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.active\:via-feedback-aster-dark:active{
  --gradient-via-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.active\:via-feedback-roxo:active{
  --gradient-via-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.active\:via-feedback-error:active{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.active\:via-feedback-success:active{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.active\:via-functional-aoki:active{
  --gradient-via-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.active\:via-functional-aoki-dark:active{
  --gradient-via-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.active\:via-functional-aoki-hocus:active{
  --gradient-via-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.active\:via-functional-aoki-active:active{
  --gradient-via-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.active\:via-functional-aoki-light:active{
  --gradient-via-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.active\:via-functional-kermit:active{
  --gradient-via-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.active\:via-mixlabPlus-light:active{
  --gradient-via-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.active\:via-primary-orange-light:active{
  --gradient-via-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.active\:via-off-white:active{
  --gradient-via-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.active\:to-black:active{
  --gradient-to-color: #000000;
}

.active\:to-transparent:active{
  --gradient-to-color: transparent;
}

.active\:to-error:active{
  --gradient-to-color: #f44336;
}

.active\:to-success:active{
  --gradient-to-color: #5ca02c;
}

.active\:to-white-10:active{
  --gradient-to-color: #FBFBFB;
}

.active\:to-white-20:active{
  --gradient-to-color: #ECECEC;
}

.active\:to-white:active{
  --gradient-to-color: #FFFFFF;
}

.active\:to-cheeto:active{
  --gradient-to-color: #f7a500;
}

.active\:to-cheeto-very-light:active{
  --gradient-to-color: #fffaf2;
}

.active\:to-cheeto-light:active{
  --gradient-to-color: #ffd649;
}

.active\:to-cheeto-dark:active{
  --gradient-to-color: #bf7600;
}

.active\:to-cheeto-hocus:active{
  --gradient-to-color: #f8bd0f;
}

.active\:to-cheeto-active:active{
  --gradient-to-color: #f8d61b;
}

.active\:to-cheeto-ml-plus:active{
  --gradient-to-color: #FBEFCA;
}

.active\:to-cheeto-banner:active{
  --gradient-to-color: #fef7e5;
}

.active\:to-gracy-1:active{
  --gradient-to-color: #f8f8fa;
}

.active\:to-gracy-10:active{
  --gradient-to-color: #faf7fd;
}

.active\:to-gracy-20:active{
  --gradient-to-color: #e0dde3;
}

.active\:to-gracy-30:active{
  --gradient-to-color: #c8c5ca;
}

.active\:to-gracy-40:active{
  --gradient-to-color: #aeacb0;
}

.active\:to-gracy-50:active{
  --gradient-to-color: #969497;
}

.active\:to-gracy-60:active{
  --gradient-to-color: #7c7b7e;
}

.active\:to-gracy-70:active{
  --gradient-to-color: #646265;
}

.active\:to-gracy-80:active{
  --gradient-to-color: #4a494b;
}

.active\:to-gracy-90:active{
  --gradient-to-color: #323132;
}

.active\:to-gracy-100:active{
  --gradient-to-color: #181818;
}

.active\:to-gracy:active{
  --gradient-to-color: #6F7878;
}

.active\:to-gracy-overlay-90:active{
  --gradient-to-color: rgba(50,49,50,0.5);
}

.active\:to-login:active{
  --gradient-to-color: #FDF7E7;
}

.active\:to-olive-light:active{
  --gradient-to-color: #DFF5F6;
}

.active\:to-olive-drab:active{
  --gradient-to-color: #5ca02c;
}

.active\:to-olive-dark:active{
  --gradient-to-color: #096348;
}

.active\:to-daisy-light:active{
  --gradient-to-color: #fffce1;
}

.active\:to-feedback-gumby:active{
  --gradient-to-color: #c8e6c9;
}

.active\:to-feedback-daisy:active{
  --gradient-to-color: #fff9c4;
}

.active\:to-feedback-pokey:active{
  --gradient-to-color: #ffcdd2;
}

.active\:to-feedback-aster:active{
  --gradient-to-color: #b3e5fc;
}

.active\:to-feedback-aster-dark:active{
  --gradient-to-color: #03567C;
}

.active\:to-feedback-roxo:active{
  --gradient-to-color: #d1c4e9;
}

.active\:to-feedback-error:active{
  --gradient-to-color: #f44336;
}

.active\:to-feedback-success:active{
  --gradient-to-color: #5ca02c;
}

.active\:to-functional-aoki:active{
  --gradient-to-color: #6f2ca0;
}

.active\:to-functional-aoki-dark:active{
  --gradient-to-color: #3e0071;
}

.active\:to-functional-aoki-hocus:active{
  --gradient-to-color: #9035af;
}

.active\:to-functional-aoki-active:active{
  --gradient-to-color: #a04fbc;
}

.active\:to-functional-aoki-light:active{
  --gradient-to-color: #a15ad2;
}

.active\:to-functional-kermit:active{
  --gradient-to-color: #5aa120;
}

.active\:to-mixlabPlus-light:active{
  --gradient-to-color: #FFFEF9;
}

.active\:to-primary-orange-light:active{
  --gradient-to-color: ;
}

.active\:to-off-white:active{
  --gradient-to-color: #FAF9F6;
}

.first\:from-black:first-child{
  --gradient-from-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.first\:from-transparent:first-child{
  --gradient-from-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.first\:from-error:first-child{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.first\:from-success:first-child{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.first\:from-white-10:first-child{
  --gradient-from-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.first\:from-white-20:first-child{
  --gradient-from-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

.first\:from-white:first-child{
  --gradient-from-color: #FFFFFF;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.first\:from-cheeto:first-child{
  --gradient-from-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.first\:from-cheeto-very-light:first-child{
  --gradient-from-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.first\:from-cheeto-light:first-child{
  --gradient-from-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.first\:from-cheeto-dark:first-child{
  --gradient-from-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.first\:from-cheeto-hocus:first-child{
  --gradient-from-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.first\:from-cheeto-active:first-child{
  --gradient-from-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.first\:from-cheeto-ml-plus:first-child{
  --gradient-from-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.first\:from-cheeto-banner:first-child{
  --gradient-from-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.first\:from-gracy-1:first-child{
  --gradient-from-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.first\:from-gracy-10:first-child{
  --gradient-from-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.first\:from-gracy-20:first-child{
  --gradient-from-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.first\:from-gracy-30:first-child{
  --gradient-from-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.first\:from-gracy-40:first-child{
  --gradient-from-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.first\:from-gracy-50:first-child{
  --gradient-from-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.first\:from-gracy-60:first-child{
  --gradient-from-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.first\:from-gracy-70:first-child{
  --gradient-from-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.first\:from-gracy-80:first-child{
  --gradient-from-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.first\:from-gracy-90:first-child{
  --gradient-from-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.first\:from-gracy-100:first-child{
  --gradient-from-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.first\:from-gracy:first-child{
  --gradient-from-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.first\:from-gracy-overlay-90:first-child{
  --gradient-from-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.first\:from-login:first-child{
  --gradient-from-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.first\:from-olive-light:first-child{
  --gradient-from-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.first\:from-olive-drab:first-child{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.first\:from-olive-dark:first-child{
  --gradient-from-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.first\:from-daisy-light:first-child{
  --gradient-from-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.first\:from-feedback-gumby:first-child{
  --gradient-from-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.first\:from-feedback-daisy:first-child{
  --gradient-from-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.first\:from-feedback-pokey:first-child{
  --gradient-from-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.first\:from-feedback-aster:first-child{
  --gradient-from-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.first\:from-feedback-aster-dark:first-child{
  --gradient-from-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.first\:from-feedback-roxo:first-child{
  --gradient-from-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.first\:from-feedback-error:first-child{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.first\:from-feedback-success:first-child{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.first\:from-functional-aoki:first-child{
  --gradient-from-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.first\:from-functional-aoki-dark:first-child{
  --gradient-from-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.first\:from-functional-aoki-hocus:first-child{
  --gradient-from-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.first\:from-functional-aoki-active:first-child{
  --gradient-from-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.first\:from-functional-aoki-light:first-child{
  --gradient-from-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.first\:from-functional-kermit:first-child{
  --gradient-from-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.first\:from-mixlabPlus-light:first-child{
  --gradient-from-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.first\:from-primary-orange-light:first-child{
  --gradient-from-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.first\:from-off-white:first-child{
  --gradient-from-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.first\:via-black:first-child{
  --gradient-via-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.first\:via-transparent:first-child{
  --gradient-via-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.first\:via-error:first-child{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.first\:via-success:first-child{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.first\:via-white-10:first-child{
  --gradient-via-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.first\:via-white-20:first-child{
  --gradient-via-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

.first\:via-white:first-child{
  --gradient-via-color: #FFFFFF;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.first\:via-cheeto:first-child{
  --gradient-via-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.first\:via-cheeto-very-light:first-child{
  --gradient-via-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.first\:via-cheeto-light:first-child{
  --gradient-via-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.first\:via-cheeto-dark:first-child{
  --gradient-via-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.first\:via-cheeto-hocus:first-child{
  --gradient-via-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.first\:via-cheeto-active:first-child{
  --gradient-via-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.first\:via-cheeto-ml-plus:first-child{
  --gradient-via-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.first\:via-cheeto-banner:first-child{
  --gradient-via-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.first\:via-gracy-1:first-child{
  --gradient-via-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.first\:via-gracy-10:first-child{
  --gradient-via-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.first\:via-gracy-20:first-child{
  --gradient-via-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.first\:via-gracy-30:first-child{
  --gradient-via-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.first\:via-gracy-40:first-child{
  --gradient-via-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.first\:via-gracy-50:first-child{
  --gradient-via-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.first\:via-gracy-60:first-child{
  --gradient-via-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.first\:via-gracy-70:first-child{
  --gradient-via-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.first\:via-gracy-80:first-child{
  --gradient-via-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.first\:via-gracy-90:first-child{
  --gradient-via-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.first\:via-gracy-100:first-child{
  --gradient-via-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.first\:via-gracy:first-child{
  --gradient-via-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.first\:via-gracy-overlay-90:first-child{
  --gradient-via-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.first\:via-login:first-child{
  --gradient-via-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.first\:via-olive-light:first-child{
  --gradient-via-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.first\:via-olive-drab:first-child{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.first\:via-olive-dark:first-child{
  --gradient-via-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.first\:via-daisy-light:first-child{
  --gradient-via-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.first\:via-feedback-gumby:first-child{
  --gradient-via-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.first\:via-feedback-daisy:first-child{
  --gradient-via-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.first\:via-feedback-pokey:first-child{
  --gradient-via-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.first\:via-feedback-aster:first-child{
  --gradient-via-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.first\:via-feedback-aster-dark:first-child{
  --gradient-via-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.first\:via-feedback-roxo:first-child{
  --gradient-via-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.first\:via-feedback-error:first-child{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.first\:via-feedback-success:first-child{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.first\:via-functional-aoki:first-child{
  --gradient-via-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.first\:via-functional-aoki-dark:first-child{
  --gradient-via-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.first\:via-functional-aoki-hocus:first-child{
  --gradient-via-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.first\:via-functional-aoki-active:first-child{
  --gradient-via-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.first\:via-functional-aoki-light:first-child{
  --gradient-via-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.first\:via-functional-kermit:first-child{
  --gradient-via-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.first\:via-mixlabPlus-light:first-child{
  --gradient-via-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.first\:via-primary-orange-light:first-child{
  --gradient-via-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.first\:via-off-white:first-child{
  --gradient-via-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.first\:to-black:first-child{
  --gradient-to-color: #000000;
}

.first\:to-transparent:first-child{
  --gradient-to-color: transparent;
}

.first\:to-error:first-child{
  --gradient-to-color: #f44336;
}

.first\:to-success:first-child{
  --gradient-to-color: #5ca02c;
}

.first\:to-white-10:first-child{
  --gradient-to-color: #FBFBFB;
}

.first\:to-white-20:first-child{
  --gradient-to-color: #ECECEC;
}

.first\:to-white:first-child{
  --gradient-to-color: #FFFFFF;
}

.first\:to-cheeto:first-child{
  --gradient-to-color: #f7a500;
}

.first\:to-cheeto-very-light:first-child{
  --gradient-to-color: #fffaf2;
}

.first\:to-cheeto-light:first-child{
  --gradient-to-color: #ffd649;
}

.first\:to-cheeto-dark:first-child{
  --gradient-to-color: #bf7600;
}

.first\:to-cheeto-hocus:first-child{
  --gradient-to-color: #f8bd0f;
}

.first\:to-cheeto-active:first-child{
  --gradient-to-color: #f8d61b;
}

.first\:to-cheeto-ml-plus:first-child{
  --gradient-to-color: #FBEFCA;
}

.first\:to-cheeto-banner:first-child{
  --gradient-to-color: #fef7e5;
}

.first\:to-gracy-1:first-child{
  --gradient-to-color: #f8f8fa;
}

.first\:to-gracy-10:first-child{
  --gradient-to-color: #faf7fd;
}

.first\:to-gracy-20:first-child{
  --gradient-to-color: #e0dde3;
}

.first\:to-gracy-30:first-child{
  --gradient-to-color: #c8c5ca;
}

.first\:to-gracy-40:first-child{
  --gradient-to-color: #aeacb0;
}

.first\:to-gracy-50:first-child{
  --gradient-to-color: #969497;
}

.first\:to-gracy-60:first-child{
  --gradient-to-color: #7c7b7e;
}

.first\:to-gracy-70:first-child{
  --gradient-to-color: #646265;
}

.first\:to-gracy-80:first-child{
  --gradient-to-color: #4a494b;
}

.first\:to-gracy-90:first-child{
  --gradient-to-color: #323132;
}

.first\:to-gracy-100:first-child{
  --gradient-to-color: #181818;
}

.first\:to-gracy:first-child{
  --gradient-to-color: #6F7878;
}

.first\:to-gracy-overlay-90:first-child{
  --gradient-to-color: rgba(50,49,50,0.5);
}

.first\:to-login:first-child{
  --gradient-to-color: #FDF7E7;
}

.first\:to-olive-light:first-child{
  --gradient-to-color: #DFF5F6;
}

.first\:to-olive-drab:first-child{
  --gradient-to-color: #5ca02c;
}

.first\:to-olive-dark:first-child{
  --gradient-to-color: #096348;
}

.first\:to-daisy-light:first-child{
  --gradient-to-color: #fffce1;
}

.first\:to-feedback-gumby:first-child{
  --gradient-to-color: #c8e6c9;
}

.first\:to-feedback-daisy:first-child{
  --gradient-to-color: #fff9c4;
}

.first\:to-feedback-pokey:first-child{
  --gradient-to-color: #ffcdd2;
}

.first\:to-feedback-aster:first-child{
  --gradient-to-color: #b3e5fc;
}

.first\:to-feedback-aster-dark:first-child{
  --gradient-to-color: #03567C;
}

.first\:to-feedback-roxo:first-child{
  --gradient-to-color: #d1c4e9;
}

.first\:to-feedback-error:first-child{
  --gradient-to-color: #f44336;
}

.first\:to-feedback-success:first-child{
  --gradient-to-color: #5ca02c;
}

.first\:to-functional-aoki:first-child{
  --gradient-to-color: #6f2ca0;
}

.first\:to-functional-aoki-dark:first-child{
  --gradient-to-color: #3e0071;
}

.first\:to-functional-aoki-hocus:first-child{
  --gradient-to-color: #9035af;
}

.first\:to-functional-aoki-active:first-child{
  --gradient-to-color: #a04fbc;
}

.first\:to-functional-aoki-light:first-child{
  --gradient-to-color: #a15ad2;
}

.first\:to-functional-kermit:first-child{
  --gradient-to-color: #5aa120;
}

.first\:to-mixlabPlus-light:first-child{
  --gradient-to-color: #FFFEF9;
}

.first\:to-primary-orange-light:first-child{
  --gradient-to-color: ;
}

.first\:to-off-white:first-child{
  --gradient-to-color: #FAF9F6;
}

.last\:from-black:last-child{
  --gradient-from-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.last\:from-transparent:last-child{
  --gradient-from-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.last\:from-error:last-child{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.last\:from-success:last-child{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.last\:from-white-10:last-child{
  --gradient-from-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.last\:from-white-20:last-child{
  --gradient-from-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

.last\:from-white:last-child{
  --gradient-from-color: #FFFFFF;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.last\:from-cheeto:last-child{
  --gradient-from-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.last\:from-cheeto-very-light:last-child{
  --gradient-from-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.last\:from-cheeto-light:last-child{
  --gradient-from-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.last\:from-cheeto-dark:last-child{
  --gradient-from-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.last\:from-cheeto-hocus:last-child{
  --gradient-from-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.last\:from-cheeto-active:last-child{
  --gradient-from-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.last\:from-cheeto-ml-plus:last-child{
  --gradient-from-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.last\:from-cheeto-banner:last-child{
  --gradient-from-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.last\:from-gracy-1:last-child{
  --gradient-from-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.last\:from-gracy-10:last-child{
  --gradient-from-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.last\:from-gracy-20:last-child{
  --gradient-from-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.last\:from-gracy-30:last-child{
  --gradient-from-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.last\:from-gracy-40:last-child{
  --gradient-from-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.last\:from-gracy-50:last-child{
  --gradient-from-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.last\:from-gracy-60:last-child{
  --gradient-from-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.last\:from-gracy-70:last-child{
  --gradient-from-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.last\:from-gracy-80:last-child{
  --gradient-from-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.last\:from-gracy-90:last-child{
  --gradient-from-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.last\:from-gracy-100:last-child{
  --gradient-from-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.last\:from-gracy:last-child{
  --gradient-from-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.last\:from-gracy-overlay-90:last-child{
  --gradient-from-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.last\:from-login:last-child{
  --gradient-from-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.last\:from-olive-light:last-child{
  --gradient-from-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.last\:from-olive-drab:last-child{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.last\:from-olive-dark:last-child{
  --gradient-from-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.last\:from-daisy-light:last-child{
  --gradient-from-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.last\:from-feedback-gumby:last-child{
  --gradient-from-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.last\:from-feedback-daisy:last-child{
  --gradient-from-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.last\:from-feedback-pokey:last-child{
  --gradient-from-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.last\:from-feedback-aster:last-child{
  --gradient-from-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.last\:from-feedback-aster-dark:last-child{
  --gradient-from-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.last\:from-feedback-roxo:last-child{
  --gradient-from-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.last\:from-feedback-error:last-child{
  --gradient-from-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.last\:from-feedback-success:last-child{
  --gradient-from-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.last\:from-functional-aoki:last-child{
  --gradient-from-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.last\:from-functional-aoki-dark:last-child{
  --gradient-from-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.last\:from-functional-aoki-hocus:last-child{
  --gradient-from-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.last\:from-functional-aoki-active:last-child{
  --gradient-from-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.last\:from-functional-aoki-light:last-child{
  --gradient-from-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.last\:from-functional-kermit:last-child{
  --gradient-from-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.last\:from-mixlabPlus-light:last-child{
  --gradient-from-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.last\:from-primary-orange-light:last-child{
  --gradient-from-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.last\:from-off-white:last-child{
  --gradient-from-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.last\:via-black:last-child{
  --gradient-via-color: #000000;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.last\:via-transparent:last-child{
  --gradient-via-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.last\:via-error:last-child{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.last\:via-success:last-child{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.last\:via-white-10:last-child{
  --gradient-via-color: #FBFBFB;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
}

.last\:via-white-20:last-child{
  --gradient-via-color: #ECECEC;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
}

.last\:via-white:last-child{
  --gradient-via-color: #FFFFFF;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.last\:via-cheeto:last-child{
  --gradient-via-color: #f7a500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
}

.last\:via-cheeto-very-light:last-child{
  --gradient-via-color: #fffaf2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
}

.last\:via-cheeto-light:last-child{
  --gradient-via-color: #ffd649;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
}

.last\:via-cheeto-dark:last-child{
  --gradient-via-color: #bf7600;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
}

.last\:via-cheeto-hocus:last-child{
  --gradient-via-color: #f8bd0f;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
}

.last\:via-cheeto-active:last-child{
  --gradient-via-color: #f8d61b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
}

.last\:via-cheeto-ml-plus:last-child{
  --gradient-via-color: #FBEFCA;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
}

.last\:via-cheeto-banner:last-child{
  --gradient-via-color: #fef7e5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
}

.last\:via-gracy-1:last-child{
  --gradient-via-color: #f8f8fa;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
}

.last\:via-gracy-10:last-child{
  --gradient-via-color: #faf7fd;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
}

.last\:via-gracy-20:last-child{
  --gradient-via-color: #e0dde3;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
}

.last\:via-gracy-30:last-child{
  --gradient-via-color: #c8c5ca;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
}

.last\:via-gracy-40:last-child{
  --gradient-via-color: #aeacb0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
}

.last\:via-gracy-50:last-child{
  --gradient-via-color: #969497;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
}

.last\:via-gracy-60:last-child{
  --gradient-via-color: #7c7b7e;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
}

.last\:via-gracy-70:last-child{
  --gradient-via-color: #646265;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
}

.last\:via-gracy-80:last-child{
  --gradient-via-color: #4a494b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
}

.last\:via-gracy-90:last-child{
  --gradient-via-color: #323132;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.last\:via-gracy-100:last-child{
  --gradient-via-color: #181818;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
}

.last\:via-gracy:last-child{
  --gradient-via-color: #6F7878;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
}

.last\:via-gracy-overlay-90:last-child{
  --gradient-via-color: rgba(50,49,50,0.5);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
}

.last\:via-login:last-child{
  --gradient-via-color: #FDF7E7;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
}

.last\:via-olive-light:last-child{
  --gradient-via-color: #DFF5F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
}

.last\:via-olive-drab:last-child{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.last\:via-olive-dark:last-child{
  --gradient-via-color: #096348;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
}

.last\:via-daisy-light:last-child{
  --gradient-via-color: #fffce1;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
}

.last\:via-feedback-gumby:last-child{
  --gradient-via-color: #c8e6c9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
}

.last\:via-feedback-daisy:last-child{
  --gradient-via-color: #fff9c4;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
}

.last\:via-feedback-pokey:last-child{
  --gradient-via-color: #ffcdd2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
}

.last\:via-feedback-aster:last-child{
  --gradient-via-color: #b3e5fc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
}

.last\:via-feedback-aster-dark:last-child{
  --gradient-via-color: #03567C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
}

.last\:via-feedback-roxo:last-child{
  --gradient-via-color: #d1c4e9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
}

.last\:via-feedback-error:last-child{
  --gradient-via-color: #f44336;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
}

.last\:via-feedback-success:last-child{
  --gradient-via-color: #5ca02c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
}

.last\:via-functional-aoki:last-child{
  --gradient-via-color: #6f2ca0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
}

.last\:via-functional-aoki-dark:last-child{
  --gradient-via-color: #3e0071;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
}

.last\:via-functional-aoki-hocus:last-child{
  --gradient-via-color: #9035af;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
}

.last\:via-functional-aoki-active:last-child{
  --gradient-via-color: #a04fbc;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
}

.last\:via-functional-aoki-light:last-child{
  --gradient-via-color: #a15ad2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
}

.last\:via-functional-kermit:last-child{
  --gradient-via-color: #5aa120;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
}

.last\:via-mixlabPlus-light:last-child{
  --gradient-via-color: #FFFEF9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
}

.last\:via-primary-orange-light:last-child{
  --gradient-via-color: ;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
}

.last\:via-off-white:last-child{
  --gradient-via-color: #FAF9F6;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
}

.last\:to-black:last-child{
  --gradient-to-color: #000000;
}

.last\:to-transparent:last-child{
  --gradient-to-color: transparent;
}

.last\:to-error:last-child{
  --gradient-to-color: #f44336;
}

.last\:to-success:last-child{
  --gradient-to-color: #5ca02c;
}

.last\:to-white-10:last-child{
  --gradient-to-color: #FBFBFB;
}

.last\:to-white-20:last-child{
  --gradient-to-color: #ECECEC;
}

.last\:to-white:last-child{
  --gradient-to-color: #FFFFFF;
}

.last\:to-cheeto:last-child{
  --gradient-to-color: #f7a500;
}

.last\:to-cheeto-very-light:last-child{
  --gradient-to-color: #fffaf2;
}

.last\:to-cheeto-light:last-child{
  --gradient-to-color: #ffd649;
}

.last\:to-cheeto-dark:last-child{
  --gradient-to-color: #bf7600;
}

.last\:to-cheeto-hocus:last-child{
  --gradient-to-color: #f8bd0f;
}

.last\:to-cheeto-active:last-child{
  --gradient-to-color: #f8d61b;
}

.last\:to-cheeto-ml-plus:last-child{
  --gradient-to-color: #FBEFCA;
}

.last\:to-cheeto-banner:last-child{
  --gradient-to-color: #fef7e5;
}

.last\:to-gracy-1:last-child{
  --gradient-to-color: #f8f8fa;
}

.last\:to-gracy-10:last-child{
  --gradient-to-color: #faf7fd;
}

.last\:to-gracy-20:last-child{
  --gradient-to-color: #e0dde3;
}

.last\:to-gracy-30:last-child{
  --gradient-to-color: #c8c5ca;
}

.last\:to-gracy-40:last-child{
  --gradient-to-color: #aeacb0;
}

.last\:to-gracy-50:last-child{
  --gradient-to-color: #969497;
}

.last\:to-gracy-60:last-child{
  --gradient-to-color: #7c7b7e;
}

.last\:to-gracy-70:last-child{
  --gradient-to-color: #646265;
}

.last\:to-gracy-80:last-child{
  --gradient-to-color: #4a494b;
}

.last\:to-gracy-90:last-child{
  --gradient-to-color: #323132;
}

.last\:to-gracy-100:last-child{
  --gradient-to-color: #181818;
}

.last\:to-gracy:last-child{
  --gradient-to-color: #6F7878;
}

.last\:to-gracy-overlay-90:last-child{
  --gradient-to-color: rgba(50,49,50,0.5);
}

.last\:to-login:last-child{
  --gradient-to-color: #FDF7E7;
}

.last\:to-olive-light:last-child{
  --gradient-to-color: #DFF5F6;
}

.last\:to-olive-drab:last-child{
  --gradient-to-color: #5ca02c;
}

.last\:to-olive-dark:last-child{
  --gradient-to-color: #096348;
}

.last\:to-daisy-light:last-child{
  --gradient-to-color: #fffce1;
}

.last\:to-feedback-gumby:last-child{
  --gradient-to-color: #c8e6c9;
}

.last\:to-feedback-daisy:last-child{
  --gradient-to-color: #fff9c4;
}

.last\:to-feedback-pokey:last-child{
  --gradient-to-color: #ffcdd2;
}

.last\:to-feedback-aster:last-child{
  --gradient-to-color: #b3e5fc;
}

.last\:to-feedback-aster-dark:last-child{
  --gradient-to-color: #03567C;
}

.last\:to-feedback-roxo:last-child{
  --gradient-to-color: #d1c4e9;
}

.last\:to-feedback-error:last-child{
  --gradient-to-color: #f44336;
}

.last\:to-feedback-success:last-child{
  --gradient-to-color: #5ca02c;
}

.last\:to-functional-aoki:last-child{
  --gradient-to-color: #6f2ca0;
}

.last\:to-functional-aoki-dark:last-child{
  --gradient-to-color: #3e0071;
}

.last\:to-functional-aoki-hocus:last-child{
  --gradient-to-color: #9035af;
}

.last\:to-functional-aoki-active:last-child{
  --gradient-to-color: #a04fbc;
}

.last\:to-functional-aoki-light:last-child{
  --gradient-to-color: #a15ad2;
}

.last\:to-functional-kermit:last-child{
  --gradient-to-color: #5aa120;
}

.last\:to-mixlabPlus-light:last-child{
  --gradient-to-color: #FFFEF9;
}

.last\:to-primary-orange-light:last-child{
  --gradient-to-color: ;
}

.last\:to-off-white:last-child{
  --gradient-to-color: #FAF9F6;
}

.bg-opacity-0{
  --bg-opacity: 0;
}

.bg-opacity-25{
  --bg-opacity: 0.25;
}

.bg-opacity-50{
  --bg-opacity: .5;
}

.bg-opacity-75{
  --bg-opacity: 0.75;
}

.bg-opacity-80{
  --bg-opacity: .8;
}

.bg-opacity-100{
  --bg-opacity: 1;
}

.hover\:bg-opacity-0:hover{
  --bg-opacity: 0;
}

.hover\:bg-opacity-25:hover{
  --bg-opacity: 0.25;
}

.hover\:bg-opacity-50:hover{
  --bg-opacity: .5;
}

.hover\:bg-opacity-75:hover{
  --bg-opacity: 0.75;
}

.hover\:bg-opacity-80:hover{
  --bg-opacity: .8;
}

.hover\:bg-opacity-100:hover{
  --bg-opacity: 1;
}

.focus\:bg-opacity-0:focus{
  --bg-opacity: 0;
}

.focus\:bg-opacity-25:focus{
  --bg-opacity: 0.25;
}

.focus\:bg-opacity-50:focus{
  --bg-opacity: .5;
}

.focus\:bg-opacity-75:focus{
  --bg-opacity: 0.75;
}

.focus\:bg-opacity-80:focus{
  --bg-opacity: .8;
}

.focus\:bg-opacity-100:focus{
  --bg-opacity: 1;
}

.active\:bg-opacity-0:active{
  --bg-opacity: 0;
}

.active\:bg-opacity-25:active{
  --bg-opacity: 0.25;
}

.active\:bg-opacity-50:active{
  --bg-opacity: .5;
}

.active\:bg-opacity-75:active{
  --bg-opacity: 0.75;
}

.active\:bg-opacity-80:active{
  --bg-opacity: .8;
}

.active\:bg-opacity-100:active{
  --bg-opacity: 1;
}

.first\:bg-opacity-0:first-child{
  --bg-opacity: 0;
}

.first\:bg-opacity-25:first-child{
  --bg-opacity: 0.25;
}

.first\:bg-opacity-50:first-child{
  --bg-opacity: .5;
}

.first\:bg-opacity-75:first-child{
  --bg-opacity: 0.75;
}

.first\:bg-opacity-80:first-child{
  --bg-opacity: .8;
}

.first\:bg-opacity-100:first-child{
  --bg-opacity: 1;
}

.last\:bg-opacity-0:last-child{
  --bg-opacity: 0;
}

.last\:bg-opacity-25:last-child{
  --bg-opacity: 0.25;
}

.last\:bg-opacity-50:last-child{
  --bg-opacity: .5;
}

.last\:bg-opacity-75:last-child{
  --bg-opacity: 0.75;
}

.last\:bg-opacity-80:last-child{
  --bg-opacity: .8;
}

.last\:bg-opacity-100:last-child{
  --bg-opacity: 1;
}

.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;
}

.hover\:bg-bottom:hover{
  background-position: bottom;
}

.hover\:bg-center:hover{
  background-position: center;
}

.hover\:bg-left:hover{
  background-position: left;
}

.hover\:bg-left-bottom:hover{
  background-position: left bottom;
}

.hover\:bg-left-top:hover{
  background-position: left top;
}

.hover\:bg-right:hover{
  background-position: right;
}

.hover\:bg-right-bottom:hover{
  background-position: right bottom;
}

.hover\:bg-right-top:hover{
  background-position: right top;
}

.hover\:bg-top:hover{
  background-position: top;
}

.focus\:bg-bottom:focus{
  background-position: bottom;
}

.focus\:bg-center:focus{
  background-position: center;
}

.focus\:bg-left:focus{
  background-position: left;
}

.focus\:bg-left-bottom:focus{
  background-position: left bottom;
}

.focus\:bg-left-top:focus{
  background-position: left top;
}

.focus\:bg-right:focus{
  background-position: right;
}

.focus\:bg-right-bottom:focus{
  background-position: right bottom;
}

.focus\:bg-right-top:focus{
  background-position: right top;
}

.focus\:bg-top:focus{
  background-position: top;
}

.active\:bg-bottom:active{
  background-position: bottom;
}

.active\:bg-center:active{
  background-position: center;
}

.active\:bg-left:active{
  background-position: left;
}

.active\:bg-left-bottom:active{
  background-position: left bottom;
}

.active\:bg-left-top:active{
  background-position: left top;
}

.active\:bg-right:active{
  background-position: right;
}

.active\:bg-right-bottom:active{
  background-position: right bottom;
}

.active\:bg-right-top:active{
  background-position: right top;
}

.active\:bg-top:active{
  background-position: top;
}

.first\:bg-bottom:first-child{
  background-position: bottom;
}

.first\:bg-center:first-child{
  background-position: center;
}

.first\:bg-left:first-child{
  background-position: left;
}

.first\:bg-left-bottom:first-child{
  background-position: left bottom;
}

.first\:bg-left-top:first-child{
  background-position: left top;
}

.first\:bg-right:first-child{
  background-position: right;
}

.first\:bg-right-bottom:first-child{
  background-position: right bottom;
}

.first\:bg-right-top:first-child{
  background-position: right top;
}

.first\:bg-top:first-child{
  background-position: top;
}

.last\:bg-bottom:last-child{
  background-position: bottom;
}

.last\:bg-center:last-child{
  background-position: center;
}

.last\:bg-left:last-child{
  background-position: left;
}

.last\:bg-left-bottom:last-child{
  background-position: left bottom;
}

.last\:bg-left-top:last-child{
  background-position: left top;
}

.last\:bg-right:last-child{
  background-position: right;
}

.last\:bg-right-bottom:last-child{
  background-position: right bottom;
}

.last\:bg-right-top:last-child{
  background-position: right top;
}

.last\:bg-top:last-child{
  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;
}

.hover\:bg-repeat:hover{
  background-repeat: repeat;
}

.hover\:bg-no-repeat:hover{
  background-repeat: no-repeat;
}

.hover\:bg-repeat-x:hover{
  background-repeat: repeat-x;
}

.hover\:bg-repeat-y:hover{
  background-repeat: repeat-y;
}

.hover\:bg-repeat-round:hover{
  background-repeat: round;
}

.hover\:bg-repeat-space:hover{
  background-repeat: space;
}

.focus\:bg-repeat:focus{
  background-repeat: repeat;
}

.focus\:bg-no-repeat:focus{
  background-repeat: no-repeat;
}

.focus\:bg-repeat-x:focus{
  background-repeat: repeat-x;
}

.focus\:bg-repeat-y:focus{
  background-repeat: repeat-y;
}

.focus\:bg-repeat-round:focus{
  background-repeat: round;
}

.focus\:bg-repeat-space:focus{
  background-repeat: space;
}

.active\:bg-repeat:active{
  background-repeat: repeat;
}

.active\:bg-no-repeat:active{
  background-repeat: no-repeat;
}

.active\:bg-repeat-x:active{
  background-repeat: repeat-x;
}

.active\:bg-repeat-y:active{
  background-repeat: repeat-y;
}

.active\:bg-repeat-round:active{
  background-repeat: round;
}

.active\:bg-repeat-space:active{
  background-repeat: space;
}

.first\:bg-repeat:first-child{
  background-repeat: repeat;
}

.first\:bg-no-repeat:first-child{
  background-repeat: no-repeat;
}

.first\:bg-repeat-x:first-child{
  background-repeat: repeat-x;
}

.first\:bg-repeat-y:first-child{
  background-repeat: repeat-y;
}

.first\:bg-repeat-round:first-child{
  background-repeat: round;
}

.first\:bg-repeat-space:first-child{
  background-repeat: space;
}

.last\:bg-repeat:last-child{
  background-repeat: repeat;
}

.last\:bg-no-repeat:last-child{
  background-repeat: no-repeat;
}

.last\:bg-repeat-x:last-child{
  background-repeat: repeat-x;
}

.last\:bg-repeat-y:last-child{
  background-repeat: repeat-y;
}

.last\:bg-repeat-round:last-child{
  background-repeat: round;
}

.last\:bg-repeat-space:last-child{
  background-repeat: space;
}

.bg-auto{
  background-size: auto;
}

.bg-cover{
  background-size: cover;
}

.bg-contain{
  background-size: contain;
}

.hover\:bg-auto:hover{
  background-size: auto;
}

.hover\:bg-cover:hover{
  background-size: cover;
}

.hover\:bg-contain:hover{
  background-size: contain;
}

.focus\:bg-auto:focus{
  background-size: auto;
}

.focus\:bg-cover:focus{
  background-size: cover;
}

.focus\:bg-contain:focus{
  background-size: contain;
}

.active\:bg-auto:active{
  background-size: auto;
}

.active\:bg-cover:active{
  background-size: cover;
}

.active\:bg-contain:active{
  background-size: contain;
}

.first\:bg-auto:first-child{
  background-size: auto;
}

.first\:bg-cover:first-child{
  background-size: cover;
}

.first\:bg-contain:first-child{
  background-size: contain;
}

.last\:bg-auto:last-child{
  background-size: auto;
}

.last\:bg-cover:last-child{
  background-size: cover;
}

.last\:bg-contain:last-child{
  background-size: contain;
}

.border-collapse{
  border-collapse: collapse;
}

.border-separate{
  border-collapse: separate;
}

.hover\:border-collapse:hover{
  border-collapse: collapse;
}

.hover\:border-separate:hover{
  border-collapse: separate;
}

.focus\:border-collapse:focus{
  border-collapse: collapse;
}

.focus\:border-separate:focus{
  border-collapse: separate;
}

.active\:border-collapse:active{
  border-collapse: collapse;
}

.active\:border-separate:active{
  border-collapse: separate;
}

.first\:border-collapse:first-child{
  border-collapse: collapse;
}

.first\:border-separate:first-child{
  border-collapse: separate;
}

.last\:border-collapse:last-child{
  border-collapse: collapse;
}

.last\:border-separate:last-child{
  border-collapse: separate;
}

.border-black{
  --border-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}

.border-transparent{
  border-color: transparent;
}

.border-error{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.border-success{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.border-white-10{
  --border-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--border-opacity));
}

.border-white-20{
  --border-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--border-opacity));
}

.border-white{
  --border-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.border-cheeto{
  --border-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--border-opacity));
}

.border-cheeto-very-light{
  --border-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--border-opacity));
}

.border-cheeto-light{
  --border-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--border-opacity));
}

.border-cheeto-dark{
  --border-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--border-opacity));
}

.border-cheeto-hocus{
  --border-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--border-opacity));
}

.border-cheeto-active{
  --border-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--border-opacity));
}

.border-cheeto-ml-plus{
  --border-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--border-opacity));
}

.border-cheeto-banner{
  --border-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--border-opacity));
}

.border-gracy-1{
  --border-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--border-opacity));
}

.border-gracy-10{
  --border-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--border-opacity));
}

.border-gracy-20{
  --border-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--border-opacity));
}

.border-gracy-30{
  --border-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--border-opacity));
}

.border-gracy-40{
  --border-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--border-opacity));
}

.border-gracy-50{
  --border-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--border-opacity));
}

.border-gracy-60{
  --border-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--border-opacity));
}

.border-gracy-70{
  --border-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--border-opacity));
}

.border-gracy-80{
  --border-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--border-opacity));
}

.border-gracy-90{
  --border-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--border-opacity));
}

.border-gracy-100{
  --border-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--border-opacity));
}

.border-gracy{
  --border-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--border-opacity));
}

.border-gracy-overlay-90{
  border-color: rgba(50,49,50,0.5);
}

.border-login{
  --border-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--border-opacity));
}

.border-olive-light{
  --border-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--border-opacity));
}

.border-olive-drab{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.border-olive-dark{
  --border-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--border-opacity));
}

.border-daisy-light{
  --border-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--border-opacity));
}

.border-feedback-gumby{
  --border-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--border-opacity));
}

.border-feedback-daisy{
  --border-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--border-opacity));
}

.border-feedback-pokey{
  --border-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--border-opacity));
}

.border-feedback-aster{
  --border-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--border-opacity));
}

.border-feedback-aster-dark{
  --border-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--border-opacity));
}

.border-feedback-roxo{
  --border-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--border-opacity));
}

.border-feedback-error{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.border-feedback-success{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.border-functional-aoki{
  --border-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--border-opacity));
}

.border-functional-aoki-dark{
  --border-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--border-opacity));
}

.border-functional-aoki-hocus{
  --border-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--border-opacity));
}

.border-functional-aoki-active{
  --border-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--border-opacity));
}

.border-functional-aoki-light{
  --border-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--border-opacity));
}

.border-functional-kermit{
  --border-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--border-opacity));
}

.border-mixlabPlus-light{
  --border-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--border-opacity));
}

.border-primary-orange-light{
  border-color: ;
}

.border-off-white{
  --border-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--border-opacity));
}

.hover\:border-black:hover{
  --border-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}

.hover\:border-transparent:hover{
  border-color: transparent;
}

.hover\:border-error:hover{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.hover\:border-success:hover{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.hover\:border-white-10:hover{
  --border-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--border-opacity));
}

.hover\:border-white-20:hover{
  --border-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--border-opacity));
}

.hover\:border-white:hover{
  --border-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.hover\:border-cheeto:hover{
  --border-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--border-opacity));
}

.hover\:border-cheeto-very-light:hover{
  --border-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--border-opacity));
}

.hover\:border-cheeto-light:hover{
  --border-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--border-opacity));
}

.hover\:border-cheeto-dark:hover{
  --border-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--border-opacity));
}

.hover\:border-cheeto-hocus:hover{
  --border-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--border-opacity));
}

.hover\:border-cheeto-active:hover{
  --border-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--border-opacity));
}

.hover\:border-cheeto-ml-plus:hover{
  --border-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--border-opacity));
}

.hover\:border-cheeto-banner:hover{
  --border-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--border-opacity));
}

.hover\:border-gracy-1:hover{
  --border-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--border-opacity));
}

.hover\:border-gracy-10:hover{
  --border-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--border-opacity));
}

.hover\:border-gracy-20:hover{
  --border-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--border-opacity));
}

.hover\:border-gracy-30:hover{
  --border-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--border-opacity));
}

.hover\:border-gracy-40:hover{
  --border-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--border-opacity));
}

.hover\:border-gracy-50:hover{
  --border-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--border-opacity));
}

.hover\:border-gracy-60:hover{
  --border-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--border-opacity));
}

.hover\:border-gracy-70:hover{
  --border-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--border-opacity));
}

.hover\:border-gracy-80:hover{
  --border-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--border-opacity));
}

.hover\:border-gracy-90:hover{
  --border-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--border-opacity));
}

.hover\:border-gracy-100:hover{
  --border-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--border-opacity));
}

.hover\:border-gracy:hover{
  --border-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--border-opacity));
}

.hover\:border-gracy-overlay-90:hover{
  border-color: rgba(50,49,50,0.5);
}

.hover\:border-login:hover{
  --border-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--border-opacity));
}

.hover\:border-olive-light:hover{
  --border-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--border-opacity));
}

.hover\:border-olive-drab:hover{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.hover\:border-olive-dark:hover{
  --border-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--border-opacity));
}

.hover\:border-daisy-light:hover{
  --border-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--border-opacity));
}

.hover\:border-feedback-gumby:hover{
  --border-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--border-opacity));
}

.hover\:border-feedback-daisy:hover{
  --border-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--border-opacity));
}

.hover\:border-feedback-pokey:hover{
  --border-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--border-opacity));
}

.hover\:border-feedback-aster:hover{
  --border-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--border-opacity));
}

.hover\:border-feedback-aster-dark:hover{
  --border-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--border-opacity));
}

.hover\:border-feedback-roxo:hover{
  --border-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--border-opacity));
}

.hover\:border-feedback-error:hover{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.hover\:border-feedback-success:hover{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.hover\:border-functional-aoki:hover{
  --border-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--border-opacity));
}

.hover\:border-functional-aoki-dark:hover{
  --border-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--border-opacity));
}

.hover\:border-functional-aoki-hocus:hover{
  --border-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--border-opacity));
}

.hover\:border-functional-aoki-active:hover{
  --border-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--border-opacity));
}

.hover\:border-functional-aoki-light:hover{
  --border-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--border-opacity));
}

.hover\:border-functional-kermit:hover{
  --border-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--border-opacity));
}

.hover\:border-mixlabPlus-light:hover{
  --border-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--border-opacity));
}

.hover\:border-primary-orange-light:hover{
  border-color: ;
}

.hover\:border-off-white:hover{
  --border-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--border-opacity));
}

.focus\:border-black:focus{
  --border-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}

.focus\:border-transparent:focus{
  border-color: transparent;
}

.focus\:border-error:focus{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.focus\:border-success:focus{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.focus\:border-white-10:focus{
  --border-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--border-opacity));
}

.focus\:border-white-20:focus{
  --border-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--border-opacity));
}

.focus\:border-white:focus{
  --border-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.focus\:border-cheeto:focus{
  --border-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--border-opacity));
}

.focus\:border-cheeto-very-light:focus{
  --border-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--border-opacity));
}

.focus\:border-cheeto-light:focus{
  --border-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--border-opacity));
}

.focus\:border-cheeto-dark:focus{
  --border-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--border-opacity));
}

.focus\:border-cheeto-hocus:focus{
  --border-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--border-opacity));
}

.focus\:border-cheeto-active:focus{
  --border-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--border-opacity));
}

.focus\:border-cheeto-ml-plus:focus{
  --border-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--border-opacity));
}

.focus\:border-cheeto-banner:focus{
  --border-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--border-opacity));
}

.focus\:border-gracy-1:focus{
  --border-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--border-opacity));
}

.focus\:border-gracy-10:focus{
  --border-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--border-opacity));
}

.focus\:border-gracy-20:focus{
  --border-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--border-opacity));
}

.focus\:border-gracy-30:focus{
  --border-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--border-opacity));
}

.focus\:border-gracy-40:focus{
  --border-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--border-opacity));
}

.focus\:border-gracy-50:focus{
  --border-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--border-opacity));
}

.focus\:border-gracy-60:focus{
  --border-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--border-opacity));
}

.focus\:border-gracy-70:focus{
  --border-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--border-opacity));
}

.focus\:border-gracy-80:focus{
  --border-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--border-opacity));
}

.focus\:border-gracy-90:focus{
  --border-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--border-opacity));
}

.focus\:border-gracy-100:focus{
  --border-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--border-opacity));
}

.focus\:border-gracy:focus{
  --border-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--border-opacity));
}

.focus\:border-gracy-overlay-90:focus{
  border-color: rgba(50,49,50,0.5);
}

.focus\:border-login:focus{
  --border-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--border-opacity));
}

.focus\:border-olive-light:focus{
  --border-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--border-opacity));
}

.focus\:border-olive-drab:focus{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.focus\:border-olive-dark:focus{
  --border-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--border-opacity));
}

.focus\:border-daisy-light:focus{
  --border-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--border-opacity));
}

.focus\:border-feedback-gumby:focus{
  --border-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--border-opacity));
}

.focus\:border-feedback-daisy:focus{
  --border-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--border-opacity));
}

.focus\:border-feedback-pokey:focus{
  --border-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--border-opacity));
}

.focus\:border-feedback-aster:focus{
  --border-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--border-opacity));
}

.focus\:border-feedback-aster-dark:focus{
  --border-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--border-opacity));
}

.focus\:border-feedback-roxo:focus{
  --border-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--border-opacity));
}

.focus\:border-feedback-error:focus{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.focus\:border-feedback-success:focus{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.focus\:border-functional-aoki:focus{
  --border-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--border-opacity));
}

.focus\:border-functional-aoki-dark:focus{
  --border-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--border-opacity));
}

.focus\:border-functional-aoki-hocus:focus{
  --border-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--border-opacity));
}

.focus\:border-functional-aoki-active:focus{
  --border-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--border-opacity));
}

.focus\:border-functional-aoki-light:focus{
  --border-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--border-opacity));
}

.focus\:border-functional-kermit:focus{
  --border-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--border-opacity));
}

.focus\:border-mixlabPlus-light:focus{
  --border-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--border-opacity));
}

.focus\:border-primary-orange-light:focus{
  border-color: ;
}

.focus\:border-off-white:focus{
  --border-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--border-opacity));
}

.active\:border-black:active{
  --border-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}

.active\:border-transparent:active{
  border-color: transparent;
}

.active\:border-error:active{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.active\:border-success:active{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.active\:border-white-10:active{
  --border-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--border-opacity));
}

.active\:border-white-20:active{
  --border-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--border-opacity));
}

.active\:border-white:active{
  --border-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.active\:border-cheeto:active{
  --border-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--border-opacity));
}

.active\:border-cheeto-very-light:active{
  --border-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--border-opacity));
}

.active\:border-cheeto-light:active{
  --border-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--border-opacity));
}

.active\:border-cheeto-dark:active{
  --border-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--border-opacity));
}

.active\:border-cheeto-hocus:active{
  --border-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--border-opacity));
}

.active\:border-cheeto-active:active{
  --border-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--border-opacity));
}

.active\:border-cheeto-ml-plus:active{
  --border-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--border-opacity));
}

.active\:border-cheeto-banner:active{
  --border-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--border-opacity));
}

.active\:border-gracy-1:active{
  --border-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--border-opacity));
}

.active\:border-gracy-10:active{
  --border-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--border-opacity));
}

.active\:border-gracy-20:active{
  --border-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--border-opacity));
}

.active\:border-gracy-30:active{
  --border-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--border-opacity));
}

.active\:border-gracy-40:active{
  --border-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--border-opacity));
}

.active\:border-gracy-50:active{
  --border-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--border-opacity));
}

.active\:border-gracy-60:active{
  --border-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--border-opacity));
}

.active\:border-gracy-70:active{
  --border-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--border-opacity));
}

.active\:border-gracy-80:active{
  --border-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--border-opacity));
}

.active\:border-gracy-90:active{
  --border-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--border-opacity));
}

.active\:border-gracy-100:active{
  --border-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--border-opacity));
}

.active\:border-gracy:active{
  --border-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--border-opacity));
}

.active\:border-gracy-overlay-90:active{
  border-color: rgba(50,49,50,0.5);
}

.active\:border-login:active{
  --border-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--border-opacity));
}

.active\:border-olive-light:active{
  --border-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--border-opacity));
}

.active\:border-olive-drab:active{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.active\:border-olive-dark:active{
  --border-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--border-opacity));
}

.active\:border-daisy-light:active{
  --border-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--border-opacity));
}

.active\:border-feedback-gumby:active{
  --border-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--border-opacity));
}

.active\:border-feedback-daisy:active{
  --border-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--border-opacity));
}

.active\:border-feedback-pokey:active{
  --border-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--border-opacity));
}

.active\:border-feedback-aster:active{
  --border-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--border-opacity));
}

.active\:border-feedback-aster-dark:active{
  --border-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--border-opacity));
}

.active\:border-feedback-roxo:active{
  --border-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--border-opacity));
}

.active\:border-feedback-error:active{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.active\:border-feedback-success:active{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.active\:border-functional-aoki:active{
  --border-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--border-opacity));
}

.active\:border-functional-aoki-dark:active{
  --border-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--border-opacity));
}

.active\:border-functional-aoki-hocus:active{
  --border-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--border-opacity));
}

.active\:border-functional-aoki-active:active{
  --border-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--border-opacity));
}

.active\:border-functional-aoki-light:active{
  --border-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--border-opacity));
}

.active\:border-functional-kermit:active{
  --border-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--border-opacity));
}

.active\:border-mixlabPlus-light:active{
  --border-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--border-opacity));
}

.active\:border-primary-orange-light:active{
  border-color: ;
}

.active\:border-off-white:active{
  --border-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--border-opacity));
}

.first\:border-black:first-child{
  --border-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}

.first\:border-transparent:first-child{
  border-color: transparent;
}

.first\:border-error:first-child{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.first\:border-success:first-child{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.first\:border-white-10:first-child{
  --border-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--border-opacity));
}

.first\:border-white-20:first-child{
  --border-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--border-opacity));
}

.first\:border-white:first-child{
  --border-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.first\:border-cheeto:first-child{
  --border-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--border-opacity));
}

.first\:border-cheeto-very-light:first-child{
  --border-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--border-opacity));
}

.first\:border-cheeto-light:first-child{
  --border-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--border-opacity));
}

.first\:border-cheeto-dark:first-child{
  --border-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--border-opacity));
}

.first\:border-cheeto-hocus:first-child{
  --border-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--border-opacity));
}

.first\:border-cheeto-active:first-child{
  --border-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--border-opacity));
}

.first\:border-cheeto-ml-plus:first-child{
  --border-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--border-opacity));
}

.first\:border-cheeto-banner:first-child{
  --border-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--border-opacity));
}

.first\:border-gracy-1:first-child{
  --border-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--border-opacity));
}

.first\:border-gracy-10:first-child{
  --border-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--border-opacity));
}

.first\:border-gracy-20:first-child{
  --border-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--border-opacity));
}

.first\:border-gracy-30:first-child{
  --border-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--border-opacity));
}

.first\:border-gracy-40:first-child{
  --border-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--border-opacity));
}

.first\:border-gracy-50:first-child{
  --border-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--border-opacity));
}

.first\:border-gracy-60:first-child{
  --border-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--border-opacity));
}

.first\:border-gracy-70:first-child{
  --border-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--border-opacity));
}

.first\:border-gracy-80:first-child{
  --border-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--border-opacity));
}

.first\:border-gracy-90:first-child{
  --border-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--border-opacity));
}

.first\:border-gracy-100:first-child{
  --border-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--border-opacity));
}

.first\:border-gracy:first-child{
  --border-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--border-opacity));
}

.first\:border-gracy-overlay-90:first-child{
  border-color: rgba(50,49,50,0.5);
}

.first\:border-login:first-child{
  --border-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--border-opacity));
}

.first\:border-olive-light:first-child{
  --border-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--border-opacity));
}

.first\:border-olive-drab:first-child{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.first\:border-olive-dark:first-child{
  --border-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--border-opacity));
}

.first\:border-daisy-light:first-child{
  --border-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--border-opacity));
}

.first\:border-feedback-gumby:first-child{
  --border-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--border-opacity));
}

.first\:border-feedback-daisy:first-child{
  --border-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--border-opacity));
}

.first\:border-feedback-pokey:first-child{
  --border-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--border-opacity));
}

.first\:border-feedback-aster:first-child{
  --border-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--border-opacity));
}

.first\:border-feedback-aster-dark:first-child{
  --border-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--border-opacity));
}

.first\:border-feedback-roxo:first-child{
  --border-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--border-opacity));
}

.first\:border-feedback-error:first-child{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.first\:border-feedback-success:first-child{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.first\:border-functional-aoki:first-child{
  --border-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--border-opacity));
}

.first\:border-functional-aoki-dark:first-child{
  --border-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--border-opacity));
}

.first\:border-functional-aoki-hocus:first-child{
  --border-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--border-opacity));
}

.first\:border-functional-aoki-active:first-child{
  --border-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--border-opacity));
}

.first\:border-functional-aoki-light:first-child{
  --border-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--border-opacity));
}

.first\:border-functional-kermit:first-child{
  --border-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--border-opacity));
}

.first\:border-mixlabPlus-light:first-child{
  --border-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--border-opacity));
}

.first\:border-primary-orange-light:first-child{
  border-color: ;
}

.first\:border-off-white:first-child{
  --border-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--border-opacity));
}

.last\:border-black:last-child{
  --border-opacity: 1;
  border-color: #000000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
}

.last\:border-transparent:last-child{
  border-color: transparent;
}

.last\:border-error:last-child{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.last\:border-success:last-child{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.last\:border-white-10:last-child{
  --border-opacity: 1;
  border-color: #FBFBFB;
  border-color: rgba(251, 251, 251, var(--border-opacity));
}

.last\:border-white-20:last-child{
  --border-opacity: 1;
  border-color: #ECECEC;
  border-color: rgba(236, 236, 236, var(--border-opacity));
}

.last\:border-white:last-child{
  --border-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.last\:border-cheeto:last-child{
  --border-opacity: 1;
  border-color: #f7a500;
  border-color: rgba(247, 165, 0, var(--border-opacity));
}

.last\:border-cheeto-very-light:last-child{
  --border-opacity: 1;
  border-color: #fffaf2;
  border-color: rgba(255, 250, 242, var(--border-opacity));
}

.last\:border-cheeto-light:last-child{
  --border-opacity: 1;
  border-color: #ffd649;
  border-color: rgba(255, 214, 73, var(--border-opacity));
}

.last\:border-cheeto-dark:last-child{
  --border-opacity: 1;
  border-color: #bf7600;
  border-color: rgba(191, 118, 0, var(--border-opacity));
}

.last\:border-cheeto-hocus:last-child{
  --border-opacity: 1;
  border-color: #f8bd0f;
  border-color: rgba(248, 189, 15, var(--border-opacity));
}

.last\:border-cheeto-active:last-child{
  --border-opacity: 1;
  border-color: #f8d61b;
  border-color: rgba(248, 214, 27, var(--border-opacity));
}

.last\:border-cheeto-ml-plus:last-child{
  --border-opacity: 1;
  border-color: #FBEFCA;
  border-color: rgba(251, 239, 202, var(--border-opacity));
}

.last\:border-cheeto-banner:last-child{
  --border-opacity: 1;
  border-color: #fef7e5;
  border-color: rgba(254, 247, 229, var(--border-opacity));
}

.last\:border-gracy-1:last-child{
  --border-opacity: 1;
  border-color: #f8f8fa;
  border-color: rgba(248, 248, 250, var(--border-opacity));
}

.last\:border-gracy-10:last-child{
  --border-opacity: 1;
  border-color: #faf7fd;
  border-color: rgba(250, 247, 253, var(--border-opacity));
}

.last\:border-gracy-20:last-child{
  --border-opacity: 1;
  border-color: #e0dde3;
  border-color: rgba(224, 221, 227, var(--border-opacity));
}

.last\:border-gracy-30:last-child{
  --border-opacity: 1;
  border-color: #c8c5ca;
  border-color: rgba(200, 197, 202, var(--border-opacity));
}

.last\:border-gracy-40:last-child{
  --border-opacity: 1;
  border-color: #aeacb0;
  border-color: rgba(174, 172, 176, var(--border-opacity));
}

.last\:border-gracy-50:last-child{
  --border-opacity: 1;
  border-color: #969497;
  border-color: rgba(150, 148, 151, var(--border-opacity));
}

.last\:border-gracy-60:last-child{
  --border-opacity: 1;
  border-color: #7c7b7e;
  border-color: rgba(124, 123, 126, var(--border-opacity));
}

.last\:border-gracy-70:last-child{
  --border-opacity: 1;
  border-color: #646265;
  border-color: rgba(100, 98, 101, var(--border-opacity));
}

.last\:border-gracy-80:last-child{
  --border-opacity: 1;
  border-color: #4a494b;
  border-color: rgba(74, 73, 75, var(--border-opacity));
}

.last\:border-gracy-90:last-child{
  --border-opacity: 1;
  border-color: #323132;
  border-color: rgba(50, 49, 50, var(--border-opacity));
}

.last\:border-gracy-100:last-child{
  --border-opacity: 1;
  border-color: #181818;
  border-color: rgba(24, 24, 24, var(--border-opacity));
}

.last\:border-gracy:last-child{
  --border-opacity: 1;
  border-color: #6F7878;
  border-color: rgba(111, 120, 120, var(--border-opacity));
}

.last\:border-gracy-overlay-90:last-child{
  border-color: rgba(50,49,50,0.5);
}

.last\:border-login:last-child{
  --border-opacity: 1;
  border-color: #FDF7E7;
  border-color: rgba(253, 247, 231, var(--border-opacity));
}

.last\:border-olive-light:last-child{
  --border-opacity: 1;
  border-color: #DFF5F6;
  border-color: rgba(223, 245, 246, var(--border-opacity));
}

.last\:border-olive-drab:last-child{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.last\:border-olive-dark:last-child{
  --border-opacity: 1;
  border-color: #096348;
  border-color: rgba(9, 99, 72, var(--border-opacity));
}

.last\:border-daisy-light:last-child{
  --border-opacity: 1;
  border-color: #fffce1;
  border-color: rgba(255, 252, 225, var(--border-opacity));
}

.last\:border-feedback-gumby:last-child{
  --border-opacity: 1;
  border-color: #c8e6c9;
  border-color: rgba(200, 230, 201, var(--border-opacity));
}

.last\:border-feedback-daisy:last-child{
  --border-opacity: 1;
  border-color: #fff9c4;
  border-color: rgba(255, 249, 196, var(--border-opacity));
}

.last\:border-feedback-pokey:last-child{
  --border-opacity: 1;
  border-color: #ffcdd2;
  border-color: rgba(255, 205, 210, var(--border-opacity));
}

.last\:border-feedback-aster:last-child{
  --border-opacity: 1;
  border-color: #b3e5fc;
  border-color: rgba(179, 229, 252, var(--border-opacity));
}

.last\:border-feedback-aster-dark:last-child{
  --border-opacity: 1;
  border-color: #03567C;
  border-color: rgba(3, 86, 124, var(--border-opacity));
}

.last\:border-feedback-roxo:last-child{
  --border-opacity: 1;
  border-color: #d1c4e9;
  border-color: rgba(209, 196, 233, var(--border-opacity));
}

.last\:border-feedback-error:last-child{
  --border-opacity: 1;
  border-color: #f44336;
  border-color: rgba(244, 67, 54, var(--border-opacity));
}

.last\:border-feedback-success:last-child{
  --border-opacity: 1;
  border-color: #5ca02c;
  border-color: rgba(92, 160, 44, var(--border-opacity));
}

.last\:border-functional-aoki:last-child{
  --border-opacity: 1;
  border-color: #6f2ca0;
  border-color: rgba(111, 44, 160, var(--border-opacity));
}

.last\:border-functional-aoki-dark:last-child{
  --border-opacity: 1;
  border-color: #3e0071;
  border-color: rgba(62, 0, 113, var(--border-opacity));
}

.last\:border-functional-aoki-hocus:last-child{
  --border-opacity: 1;
  border-color: #9035af;
  border-color: rgba(144, 53, 175, var(--border-opacity));
}

.last\:border-functional-aoki-active:last-child{
  --border-opacity: 1;
  border-color: #a04fbc;
  border-color: rgba(160, 79, 188, var(--border-opacity));
}

.last\:border-functional-aoki-light:last-child{
  --border-opacity: 1;
  border-color: #a15ad2;
  border-color: rgba(161, 90, 210, var(--border-opacity));
}

.last\:border-functional-kermit:last-child{
  --border-opacity: 1;
  border-color: #5aa120;
  border-color: rgba(90, 161, 32, var(--border-opacity));
}

.last\:border-mixlabPlus-light:last-child{
  --border-opacity: 1;
  border-color: #FFFEF9;
  border-color: rgba(255, 254, 249, var(--border-opacity));
}

.last\:border-primary-orange-light:last-child{
  border-color: ;
}

.last\:border-off-white:last-child{
  --border-opacity: 1;
  border-color: #FAF9F6;
  border-color: rgba(250, 249, 246, var(--border-opacity));
}

.border-opacity-0{
  --border-opacity: 0;
}

.border-opacity-25{
  --border-opacity: 0.25;
}

.border-opacity-50{
  --border-opacity: .5;
}

.border-opacity-75{
  --border-opacity: 0.75;
}

.border-opacity-80{
  --border-opacity: .8;
}

.border-opacity-100{
  --border-opacity: 1;
}

.hover\:border-opacity-0:hover{
  --border-opacity: 0;
}

.hover\:border-opacity-25:hover{
  --border-opacity: 0.25;
}

.hover\:border-opacity-50:hover{
  --border-opacity: .5;
}

.hover\:border-opacity-75:hover{
  --border-opacity: 0.75;
}

.hover\:border-opacity-80:hover{
  --border-opacity: .8;
}

.hover\:border-opacity-100:hover{
  --border-opacity: 1;
}

.focus\:border-opacity-0:focus{
  --border-opacity: 0;
}

.focus\:border-opacity-25:focus{
  --border-opacity: 0.25;
}

.focus\:border-opacity-50:focus{
  --border-opacity: .5;
}

.focus\:border-opacity-75:focus{
  --border-opacity: 0.75;
}

.focus\:border-opacity-80:focus{
  --border-opacity: .8;
}

.focus\:border-opacity-100:focus{
  --border-opacity: 1;
}

.active\:border-opacity-0:active{
  --border-opacity: 0;
}

.active\:border-opacity-25:active{
  --border-opacity: 0.25;
}

.active\:border-opacity-50:active{
  --border-opacity: .5;
}

.active\:border-opacity-75:active{
  --border-opacity: 0.75;
}

.active\:border-opacity-80:active{
  --border-opacity: .8;
}

.active\:border-opacity-100:active{
  --border-opacity: 1;
}

.first\:border-opacity-0:first-child{
  --border-opacity: 0;
}

.first\:border-opacity-25:first-child{
  --border-opacity: 0.25;
}

.first\:border-opacity-50:first-child{
  --border-opacity: .5;
}

.first\:border-opacity-75:first-child{
  --border-opacity: 0.75;
}

.first\:border-opacity-80:first-child{
  --border-opacity: .8;
}

.first\:border-opacity-100:first-child{
  --border-opacity: 1;
}

.last\:border-opacity-0:last-child{
  --border-opacity: 0;
}

.last\:border-opacity-25:last-child{
  --border-opacity: 0.25;
}

.last\:border-opacity-50:last-child{
  --border-opacity: .5;
}

.last\:border-opacity-75:last-child{
  --border-opacity: 0.75;
}

.last\:border-opacity-80:last-child{
  --border-opacity: .8;
}

.last\:border-opacity-100:last-child{
  --border-opacity: 1;
}

.rounded-none{
  border-radius: 0;
}

.rounded-sm{
  border-radius: 0.125rem;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-md{
  border-radius: 0.375rem;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-xl{
  border-radius: 30px;
}

.rounded-t-none{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.rounded-r-none{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rounded-b-none{
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.rounded-l-none{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rounded-t-sm{
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.rounded-r-sm{
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}

.rounded-b-sm{
  border-bottom-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.rounded-l-sm{
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.rounded-t{
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-r{
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.rounded-b{
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-l{
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-t-md{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.rounded-r-md{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.rounded-b-md{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.rounded-l-md{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.rounded-t-lg{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.rounded-r-lg{
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.rounded-b-lg{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-l-lg{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-t-full{
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.rounded-r-full{
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.rounded-b-full{
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-l-full{
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-t-xl{
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.rounded-r-xl{
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.rounded-b-xl{
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.rounded-l-xl{
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.rounded-tl-none{
  border-top-left-radius: 0;
}

.rounded-tr-none{
  border-top-right-radius: 0;
}

.rounded-br-none{
  border-bottom-right-radius: 0;
}

.rounded-bl-none{
  border-bottom-left-radius: 0;
}

.rounded-tl-sm{
  border-top-left-radius: 0.125rem;
}

.rounded-tr-sm{
  border-top-right-radius: 0.125rem;
}

.rounded-br-sm{
  border-bottom-right-radius: 0.125rem;
}

.rounded-bl-sm{
  border-bottom-left-radius: 0.125rem;
}

.rounded-tl{
  border-top-left-radius: 0.25rem;
}

.rounded-tr{
  border-top-right-radius: 0.25rem;
}

.rounded-br{
  border-bottom-right-radius: 0.25rem;
}

.rounded-bl{
  border-bottom-left-radius: 0.25rem;
}

.rounded-tl-md{
  border-top-left-radius: 0.375rem;
}

.rounded-tr-md{
  border-top-right-radius: 0.375rem;
}

.rounded-br-md{
  border-bottom-right-radius: 0.375rem;
}

.rounded-bl-md{
  border-bottom-left-radius: 0.375rem;
}

.rounded-tl-lg{
  border-top-left-radius: 0.5rem;
}

.rounded-tr-lg{
  border-top-right-radius: 0.5rem;
}

.rounded-br-lg{
  border-bottom-right-radius: 0.5rem;
}

.rounded-bl-lg{
  border-bottom-left-radius: 0.5rem;
}

.rounded-tl-full{
  border-top-left-radius: 9999px;
}

.rounded-tr-full{
  border-top-right-radius: 9999px;
}

.rounded-br-full{
  border-bottom-right-radius: 9999px;
}

.rounded-bl-full{
  border-bottom-left-radius: 9999px;
}

.rounded-tl-xl{
  border-top-left-radius: 30px;
}

.rounded-tr-xl{
  border-top-right-radius: 30px;
}

.rounded-br-xl{
  border-bottom-right-radius: 30px;
}

.rounded-bl-xl{
  border-bottom-left-radius: 30px;
}

.hover\:rounded-none:hover{
  border-radius: 0;
}

.hover\:rounded-sm:hover{
  border-radius: 0.125rem;
}

.hover\:rounded:hover{
  border-radius: 0.25rem;
}

.hover\:rounded-md:hover{
  border-radius: 0.375rem;
}

.hover\:rounded-lg:hover{
  border-radius: 0.5rem;
}

.hover\:rounded-full:hover{
  border-radius: 9999px;
}

.hover\:rounded-xl:hover{
  border-radius: 30px;
}

.hover\:rounded-t-none:hover{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.hover\:rounded-r-none:hover{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.hover\:rounded-b-none:hover{
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.hover\:rounded-l-none:hover{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.hover\:rounded-t-sm:hover{
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.hover\:rounded-r-sm:hover{
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}

.hover\:rounded-b-sm:hover{
  border-bottom-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.hover\:rounded-l-sm:hover{
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.hover\:rounded-t:hover{
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.hover\:rounded-r:hover{
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.hover\:rounded-b:hover{
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.hover\:rounded-l:hover{
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.hover\:rounded-t-md:hover{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.hover\:rounded-r-md:hover{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.hover\:rounded-b-md:hover{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.hover\:rounded-l-md:hover{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.hover\:rounded-t-lg:hover{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.hover\:rounded-r-lg:hover{
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.hover\:rounded-b-lg:hover{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.hover\:rounded-l-lg:hover{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.hover\:rounded-t-full:hover{
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.hover\:rounded-r-full:hover{
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.hover\:rounded-b-full:hover{
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.hover\:rounded-l-full:hover{
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.hover\:rounded-t-xl:hover{
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.hover\:rounded-r-xl:hover{
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.hover\:rounded-b-xl:hover{
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.hover\:rounded-l-xl:hover{
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.hover\:rounded-tl-none:hover{
  border-top-left-radius: 0;
}

.hover\:rounded-tr-none:hover{
  border-top-right-radius: 0;
}

.hover\:rounded-br-none:hover{
  border-bottom-right-radius: 0;
}

.hover\:rounded-bl-none:hover{
  border-bottom-left-radius: 0;
}

.hover\:rounded-tl-sm:hover{
  border-top-left-radius: 0.125rem;
}

.hover\:rounded-tr-sm:hover{
  border-top-right-radius: 0.125rem;
}

.hover\:rounded-br-sm:hover{
  border-bottom-right-radius: 0.125rem;
}

.hover\:rounded-bl-sm:hover{
  border-bottom-left-radius: 0.125rem;
}

.hover\:rounded-tl:hover{
  border-top-left-radius: 0.25rem;
}

.hover\:rounded-tr:hover{
  border-top-right-radius: 0.25rem;
}

.hover\:rounded-br:hover{
  border-bottom-right-radius: 0.25rem;
}

.hover\:rounded-bl:hover{
  border-bottom-left-radius: 0.25rem;
}

.hover\:rounded-tl-md:hover{
  border-top-left-radius: 0.375rem;
}

.hover\:rounded-tr-md:hover{
  border-top-right-radius: 0.375rem;
}

.hover\:rounded-br-md:hover{
  border-bottom-right-radius: 0.375rem;
}

.hover\:rounded-bl-md:hover{
  border-bottom-left-radius: 0.375rem;
}

.hover\:rounded-tl-lg:hover{
  border-top-left-radius: 0.5rem;
}

.hover\:rounded-tr-lg:hover{
  border-top-right-radius: 0.5rem;
}

.hover\:rounded-br-lg:hover{
  border-bottom-right-radius: 0.5rem;
}

.hover\:rounded-bl-lg:hover{
  border-bottom-left-radius: 0.5rem;
}

.hover\:rounded-tl-full:hover{
  border-top-left-radius: 9999px;
}

.hover\:rounded-tr-full:hover{
  border-top-right-radius: 9999px;
}

.hover\:rounded-br-full:hover{
  border-bottom-right-radius: 9999px;
}

.hover\:rounded-bl-full:hover{
  border-bottom-left-radius: 9999px;
}

.hover\:rounded-tl-xl:hover{
  border-top-left-radius: 30px;
}

.hover\:rounded-tr-xl:hover{
  border-top-right-radius: 30px;
}

.hover\:rounded-br-xl:hover{
  border-bottom-right-radius: 30px;
}

.hover\:rounded-bl-xl:hover{
  border-bottom-left-radius: 30px;
}

.focus\:rounded-none:focus{
  border-radius: 0;
}

.focus\:rounded-sm:focus{
  border-radius: 0.125rem;
}

.focus\:rounded:focus{
  border-radius: 0.25rem;
}

.focus\:rounded-md:focus{
  border-radius: 0.375rem;
}

.focus\:rounded-lg:focus{
  border-radius: 0.5rem;
}

.focus\:rounded-full:focus{
  border-radius: 9999px;
}

.focus\:rounded-xl:focus{
  border-radius: 30px;
}

.focus\:rounded-t-none:focus{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.focus\:rounded-r-none:focus{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.focus\:rounded-b-none:focus{
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.focus\:rounded-l-none:focus{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.focus\:rounded-t-sm:focus{
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.focus\:rounded-r-sm:focus{
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}

.focus\:rounded-b-sm:focus{
  border-bottom-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.focus\:rounded-l-sm:focus{
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.focus\:rounded-t:focus{
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.focus\:rounded-r:focus{
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.focus\:rounded-b:focus{
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.focus\:rounded-l:focus{
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.focus\:rounded-t-md:focus{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.focus\:rounded-r-md:focus{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.focus\:rounded-b-md:focus{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.focus\:rounded-l-md:focus{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.focus\:rounded-t-lg:focus{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.focus\:rounded-r-lg:focus{
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.focus\:rounded-b-lg:focus{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.focus\:rounded-l-lg:focus{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.focus\:rounded-t-full:focus{
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.focus\:rounded-r-full:focus{
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.focus\:rounded-b-full:focus{
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.focus\:rounded-l-full:focus{
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.focus\:rounded-t-xl:focus{
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.focus\:rounded-r-xl:focus{
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.focus\:rounded-b-xl:focus{
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.focus\:rounded-l-xl:focus{
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.focus\:rounded-tl-none:focus{
  border-top-left-radius: 0;
}

.focus\:rounded-tr-none:focus{
  border-top-right-radius: 0;
}

.focus\:rounded-br-none:focus{
  border-bottom-right-radius: 0;
}

.focus\:rounded-bl-none:focus{
  border-bottom-left-radius: 0;
}

.focus\:rounded-tl-sm:focus{
  border-top-left-radius: 0.125rem;
}

.focus\:rounded-tr-sm:focus{
  border-top-right-radius: 0.125rem;
}

.focus\:rounded-br-sm:focus{
  border-bottom-right-radius: 0.125rem;
}

.focus\:rounded-bl-sm:focus{
  border-bottom-left-radius: 0.125rem;
}

.focus\:rounded-tl:focus{
  border-top-left-radius: 0.25rem;
}

.focus\:rounded-tr:focus{
  border-top-right-radius: 0.25rem;
}

.focus\:rounded-br:focus{
  border-bottom-right-radius: 0.25rem;
}

.focus\:rounded-bl:focus{
  border-bottom-left-radius: 0.25rem;
}

.focus\:rounded-tl-md:focus{
  border-top-left-radius: 0.375rem;
}

.focus\:rounded-tr-md:focus{
  border-top-right-radius: 0.375rem;
}

.focus\:rounded-br-md:focus{
  border-bottom-right-radius: 0.375rem;
}

.focus\:rounded-bl-md:focus{
  border-bottom-left-radius: 0.375rem;
}

.focus\:rounded-tl-lg:focus{
  border-top-left-radius: 0.5rem;
}

.focus\:rounded-tr-lg:focus{
  border-top-right-radius: 0.5rem;
}

.focus\:rounded-br-lg:focus{
  border-bottom-right-radius: 0.5rem;
}

.focus\:rounded-bl-lg:focus{
  border-bottom-left-radius: 0.5rem;
}

.focus\:rounded-tl-full:focus{
  border-top-left-radius: 9999px;
}

.focus\:rounded-tr-full:focus{
  border-top-right-radius: 9999px;
}

.focus\:rounded-br-full:focus{
  border-bottom-right-radius: 9999px;
}

.focus\:rounded-bl-full:focus{
  border-bottom-left-radius: 9999px;
}

.focus\:rounded-tl-xl:focus{
  border-top-left-radius: 30px;
}

.focus\:rounded-tr-xl:focus{
  border-top-right-radius: 30px;
}

.focus\:rounded-br-xl:focus{
  border-bottom-right-radius: 30px;
}

.focus\:rounded-bl-xl:focus{
  border-bottom-left-radius: 30px;
}

.active\:rounded-none:active{
  border-radius: 0;
}

.active\:rounded-sm:active{
  border-radius: 0.125rem;
}

.active\:rounded:active{
  border-radius: 0.25rem;
}

.active\:rounded-md:active{
  border-radius: 0.375rem;
}

.active\:rounded-lg:active{
  border-radius: 0.5rem;
}

.active\:rounded-full:active{
  border-radius: 9999px;
}

.active\:rounded-xl:active{
  border-radius: 30px;
}

.active\:rounded-t-none:active{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.active\:rounded-r-none:active{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.active\:rounded-b-none:active{
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.active\:rounded-l-none:active{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.active\:rounded-t-sm:active{
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.active\:rounded-r-sm:active{
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}

.active\:rounded-b-sm:active{
  border-bottom-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.active\:rounded-l-sm:active{
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.active\:rounded-t:active{
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.active\:rounded-r:active{
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.active\:rounded-b:active{
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.active\:rounded-l:active{
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.active\:rounded-t-md:active{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.active\:rounded-r-md:active{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.active\:rounded-b-md:active{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.active\:rounded-l-md:active{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.active\:rounded-t-lg:active{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.active\:rounded-r-lg:active{
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.active\:rounded-b-lg:active{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.active\:rounded-l-lg:active{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.active\:rounded-t-full:active{
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.active\:rounded-r-full:active{
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.active\:rounded-b-full:active{
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.active\:rounded-l-full:active{
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.active\:rounded-t-xl:active{
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.active\:rounded-r-xl:active{
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.active\:rounded-b-xl:active{
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.active\:rounded-l-xl:active{
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.active\:rounded-tl-none:active{
  border-top-left-radius: 0;
}

.active\:rounded-tr-none:active{
  border-top-right-radius: 0;
}

.active\:rounded-br-none:active{
  border-bottom-right-radius: 0;
}

.active\:rounded-bl-none:active{
  border-bottom-left-radius: 0;
}

.active\:rounded-tl-sm:active{
  border-top-left-radius: 0.125rem;
}

.active\:rounded-tr-sm:active{
  border-top-right-radius: 0.125rem;
}

.active\:rounded-br-sm:active{
  border-bottom-right-radius: 0.125rem;
}

.active\:rounded-bl-sm:active{
  border-bottom-left-radius: 0.125rem;
}

.active\:rounded-tl:active{
  border-top-left-radius: 0.25rem;
}

.active\:rounded-tr:active{
  border-top-right-radius: 0.25rem;
}

.active\:rounded-br:active{
  border-bottom-right-radius: 0.25rem;
}

.active\:rounded-bl:active{
  border-bottom-left-radius: 0.25rem;
}

.active\:rounded-tl-md:active{
  border-top-left-radius: 0.375rem;
}

.active\:rounded-tr-md:active{
  border-top-right-radius: 0.375rem;
}

.active\:rounded-br-md:active{
  border-bottom-right-radius: 0.375rem;
}

.active\:rounded-bl-md:active{
  border-bottom-left-radius: 0.375rem;
}

.active\:rounded-tl-lg:active{
  border-top-left-radius: 0.5rem;
}

.active\:rounded-tr-lg:active{
  border-top-right-radius: 0.5rem;
}

.active\:rounded-br-lg:active{
  border-bottom-right-radius: 0.5rem;
}

.active\:rounded-bl-lg:active{
  border-bottom-left-radius: 0.5rem;
}

.active\:rounded-tl-full:active{
  border-top-left-radius: 9999px;
}

.active\:rounded-tr-full:active{
  border-top-right-radius: 9999px;
}

.active\:rounded-br-full:active{
  border-bottom-right-radius: 9999px;
}

.active\:rounded-bl-full:active{
  border-bottom-left-radius: 9999px;
}

.active\:rounded-tl-xl:active{
  border-top-left-radius: 30px;
}

.active\:rounded-tr-xl:active{
  border-top-right-radius: 30px;
}

.active\:rounded-br-xl:active{
  border-bottom-right-radius: 30px;
}

.active\:rounded-bl-xl:active{
  border-bottom-left-radius: 30px;
}

.first\:rounded-none:first-child{
  border-radius: 0;
}

.first\:rounded-sm:first-child{
  border-radius: 0.125rem;
}

.first\:rounded:first-child{
  border-radius: 0.25rem;
}

.first\:rounded-md:first-child{
  border-radius: 0.375rem;
}

.first\:rounded-lg:first-child{
  border-radius: 0.5rem;
}

.first\:rounded-full:first-child{
  border-radius: 9999px;
}

.first\:rounded-xl:first-child{
  border-radius: 30px;
}

.first\:rounded-t-none:first-child{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.first\:rounded-r-none:first-child{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.first\:rounded-b-none:first-child{
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.first\:rounded-l-none:first-child{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.first\:rounded-t-sm:first-child{
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.first\:rounded-r-sm:first-child{
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}

.first\:rounded-b-sm:first-child{
  border-bottom-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.first\:rounded-l-sm:first-child{
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.first\:rounded-t:first-child{
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.first\:rounded-r:first-child{
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.first\:rounded-b:first-child{
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.first\:rounded-l:first-child{
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.first\:rounded-t-md:first-child{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.first\:rounded-r-md:first-child{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.first\:rounded-b-md:first-child{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.first\:rounded-l-md:first-child{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.first\:rounded-t-lg:first-child{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.first\:rounded-r-lg:first-child{
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.first\:rounded-b-lg:first-child{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.first\:rounded-l-lg:first-child{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.first\:rounded-t-full:first-child{
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.first\:rounded-r-full:first-child{
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.first\:rounded-b-full:first-child{
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.first\:rounded-l-full:first-child{
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.first\:rounded-t-xl:first-child{
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.first\:rounded-r-xl:first-child{
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.first\:rounded-b-xl:first-child{
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.first\:rounded-l-xl:first-child{
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.first\:rounded-tl-none:first-child{
  border-top-left-radius: 0;
}

.first\:rounded-tr-none:first-child{
  border-top-right-radius: 0;
}

.first\:rounded-br-none:first-child{
  border-bottom-right-radius: 0;
}

.first\:rounded-bl-none:first-child{
  border-bottom-left-radius: 0;
}

.first\:rounded-tl-sm:first-child{
  border-top-left-radius: 0.125rem;
}

.first\:rounded-tr-sm:first-child{
  border-top-right-radius: 0.125rem;
}

.first\:rounded-br-sm:first-child{
  border-bottom-right-radius: 0.125rem;
}

.first\:rounded-bl-sm:first-child{
  border-bottom-left-radius: 0.125rem;
}

.first\:rounded-tl:first-child{
  border-top-left-radius: 0.25rem;
}

.first\:rounded-tr:first-child{
  border-top-right-radius: 0.25rem;
}

.first\:rounded-br:first-child{
  border-bottom-right-radius: 0.25rem;
}

.first\:rounded-bl:first-child{
  border-bottom-left-radius: 0.25rem;
}

.first\:rounded-tl-md:first-child{
  border-top-left-radius: 0.375rem;
}

.first\:rounded-tr-md:first-child{
  border-top-right-radius: 0.375rem;
}

.first\:rounded-br-md:first-child{
  border-bottom-right-radius: 0.375rem;
}

.first\:rounded-bl-md:first-child{
  border-bottom-left-radius: 0.375rem;
}

.first\:rounded-tl-lg:first-child{
  border-top-left-radius: 0.5rem;
}

.first\:rounded-tr-lg:first-child{
  border-top-right-radius: 0.5rem;
}

.first\:rounded-br-lg:first-child{
  border-bottom-right-radius: 0.5rem;
}

.first\:rounded-bl-lg:first-child{
  border-bottom-left-radius: 0.5rem;
}

.first\:rounded-tl-full:first-child{
  border-top-left-radius: 9999px;
}

.first\:rounded-tr-full:first-child{
  border-top-right-radius: 9999px;
}

.first\:rounded-br-full:first-child{
  border-bottom-right-radius: 9999px;
}

.first\:rounded-bl-full:first-child{
  border-bottom-left-radius: 9999px;
}

.first\:rounded-tl-xl:first-child{
  border-top-left-radius: 30px;
}

.first\:rounded-tr-xl:first-child{
  border-top-right-radius: 30px;
}

.first\:rounded-br-xl:first-child{
  border-bottom-right-radius: 30px;
}

.first\:rounded-bl-xl:first-child{
  border-bottom-left-radius: 30px;
}

.last\:rounded-none:last-child{
  border-radius: 0;
}

.last\:rounded-sm:last-child{
  border-radius: 0.125rem;
}

.last\:rounded:last-child{
  border-radius: 0.25rem;
}

.last\:rounded-md:last-child{
  border-radius: 0.375rem;
}

.last\:rounded-lg:last-child{
  border-radius: 0.5rem;
}

.last\:rounded-full:last-child{
  border-radius: 9999px;
}

.last\:rounded-xl:last-child{
  border-radius: 30px;
}

.last\:rounded-t-none:last-child{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.last\:rounded-r-none:last-child{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.last\:rounded-b-none:last-child{
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.last\:rounded-l-none:last-child{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.last\:rounded-t-sm:last-child{
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.last\:rounded-r-sm:last-child{
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}

.last\:rounded-b-sm:last-child{
  border-bottom-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.last\:rounded-l-sm:last-child{
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.last\:rounded-t:last-child{
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.last\:rounded-r:last-child{
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.last\:rounded-b:last-child{
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.last\:rounded-l:last-child{
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.last\:rounded-t-md:last-child{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.last\:rounded-r-md:last-child{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.last\:rounded-b-md:last-child{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.last\:rounded-l-md:last-child{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.last\:rounded-t-lg:last-child{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.last\:rounded-r-lg:last-child{
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.last\:rounded-b-lg:last-child{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.last\:rounded-l-lg:last-child{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.last\:rounded-t-full:last-child{
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.last\:rounded-r-full:last-child{
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.last\:rounded-b-full:last-child{
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.last\:rounded-l-full:last-child{
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.last\:rounded-t-xl:last-child{
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.last\:rounded-r-xl:last-child{
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.last\:rounded-b-xl:last-child{
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.last\:rounded-l-xl:last-child{
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.last\:rounded-tl-none:last-child{
  border-top-left-radius: 0;
}

.last\:rounded-tr-none:last-child{
  border-top-right-radius: 0;
}

.last\:rounded-br-none:last-child{
  border-bottom-right-radius: 0;
}

.last\:rounded-bl-none:last-child{
  border-bottom-left-radius: 0;
}

.last\:rounded-tl-sm:last-child{
  border-top-left-radius: 0.125rem;
}

.last\:rounded-tr-sm:last-child{
  border-top-right-radius: 0.125rem;
}

.last\:rounded-br-sm:last-child{
  border-bottom-right-radius: 0.125rem;
}

.last\:rounded-bl-sm:last-child{
  border-bottom-left-radius: 0.125rem;
}

.last\:rounded-tl:last-child{
  border-top-left-radius: 0.25rem;
}

.last\:rounded-tr:last-child{
  border-top-right-radius: 0.25rem;
}

.last\:rounded-br:last-child{
  border-bottom-right-radius: 0.25rem;
}

.last\:rounded-bl:last-child{
  border-bottom-left-radius: 0.25rem;
}

.last\:rounded-tl-md:last-child{
  border-top-left-radius: 0.375rem;
}

.last\:rounded-tr-md:last-child{
  border-top-right-radius: 0.375rem;
}

.last\:rounded-br-md:last-child{
  border-bottom-right-radius: 0.375rem;
}

.last\:rounded-bl-md:last-child{
  border-bottom-left-radius: 0.375rem;
}

.last\:rounded-tl-lg:last-child{
  border-top-left-radius: 0.5rem;
}

.last\:rounded-tr-lg:last-child{
  border-top-right-radius: 0.5rem;
}

.last\:rounded-br-lg:last-child{
  border-bottom-right-radius: 0.5rem;
}

.last\:rounded-bl-lg:last-child{
  border-bottom-left-radius: 0.5rem;
}

.last\:rounded-tl-full:last-child{
  border-top-left-radius: 9999px;
}

.last\:rounded-tr-full:last-child{
  border-top-right-radius: 9999px;
}

.last\:rounded-br-full:last-child{
  border-bottom-right-radius: 9999px;
}

.last\:rounded-bl-full:last-child{
  border-bottom-left-radius: 9999px;
}

.last\:rounded-tl-xl:last-child{
  border-top-left-radius: 30px;
}

.last\:rounded-tr-xl:last-child{
  border-top-right-radius: 30px;
}

.last\:rounded-br-xl:last-child{
  border-bottom-right-radius: 30px;
}

.last\:rounded-bl-xl:last-child{
  border-bottom-left-radius: 30px;
}

.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;
}

.hover\:border-solid:hover{
  border-style: solid;
}

.hover\:border-dashed:hover{
  border-style: dashed;
}

.hover\:border-dotted:hover{
  border-style: dotted;
}

.hover\:border-double:hover{
  border-style: double;
}

.hover\:border-none:hover{
  border-style: none;
}

.focus\:border-solid:focus{
  border-style: solid;
}

.focus\:border-dashed:focus{
  border-style: dashed;
}

.focus\:border-dotted:focus{
  border-style: dotted;
}

.focus\:border-double:focus{
  border-style: double;
}

.focus\:border-none:focus{
  border-style: none;
}

.active\:border-solid:active{
  border-style: solid;
}

.active\:border-dashed:active{
  border-style: dashed;
}

.active\:border-dotted:active{
  border-style: dotted;
}

.active\:border-double:active{
  border-style: double;
}

.active\:border-none:active{
  border-style: none;
}

.first\:border-solid:first-child{
  border-style: solid;
}

.first\:border-dashed:first-child{
  border-style: dashed;
}

.first\:border-dotted:first-child{
  border-style: dotted;
}

.first\:border-double:first-child{
  border-style: double;
}

.first\:border-none:first-child{
  border-style: none;
}

.last\:border-solid:last-child{
  border-style: solid;
}

.last\:border-dashed:last-child{
  border-style: dashed;
}

.last\:border-dotted:last-child{
  border-style: dotted;
}

.last\:border-double:last-child{
  border-style: double;
}

.last\:border-none:last-child{
  border-style: none;
}

.border-0{
  border-width: 0;
}

.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: 0;
}

.border-r-0{
  border-right-width: 0;
}

.border-b-0{
  border-bottom-width: 0;
}

.border-l-0{
  border-left-width: 0;
}

.border-t-2{
  border-top-width: 2px;
}

.border-r-2{
  border-right-width: 2px;
}

.border-b-2{
  border-bottom-width: 2px;
}

.border-l-2{
  border-left-width: 2px;
}

.border-t-4{
  border-top-width: 4px;
}

.border-r-4{
  border-right-width: 4px;
}

.border-b-4{
  border-bottom-width: 4px;
}

.border-l-4{
  border-left-width: 4px;
}

.border-t-8{
  border-top-width: 8px;
}

.border-r-8{
  border-right-width: 8px;
}

.border-b-8{
  border-bottom-width: 8px;
}

.border-l-8{
  border-left-width: 8px;
}

.border-t{
  border-top-width: 1px;
}

.border-r{
  border-right-width: 1px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-l{
  border-left-width: 1px;
}

.hover\:border-0:hover{
  border-width: 0;
}

.hover\:border-2:hover{
  border-width: 2px;
}

.hover\:border-4:hover{
  border-width: 4px;
}

.hover\:border-8:hover{
  border-width: 8px;
}

.hover\:border:hover{
  border-width: 1px;
}

.hover\:border-t-0:hover{
  border-top-width: 0;
}

.hover\:border-r-0:hover{
  border-right-width: 0;
}

.hover\:border-b-0:hover{
  border-bottom-width: 0;
}

.hover\:border-l-0:hover{
  border-left-width: 0;
}

.hover\:border-t-2:hover{
  border-top-width: 2px;
}

.hover\:border-r-2:hover{
  border-right-width: 2px;
}

.hover\:border-b-2:hover{
  border-bottom-width: 2px;
}

.hover\:border-l-2:hover{
  border-left-width: 2px;
}

.hover\:border-t-4:hover{
  border-top-width: 4px;
}

.hover\:border-r-4:hover{
  border-right-width: 4px;
}

.hover\:border-b-4:hover{
  border-bottom-width: 4px;
}

.hover\:border-l-4:hover{
  border-left-width: 4px;
}

.hover\:border-t-8:hover{
  border-top-width: 8px;
}

.hover\:border-r-8:hover{
  border-right-width: 8px;
}

.hover\:border-b-8:hover{
  border-bottom-width: 8px;
}

.hover\:border-l-8:hover{
  border-left-width: 8px;
}

.hover\:border-t:hover{
  border-top-width: 1px;
}

.hover\:border-r:hover{
  border-right-width: 1px;
}

.hover\:border-b:hover{
  border-bottom-width: 1px;
}

.hover\:border-l:hover{
  border-left-width: 1px;
}

.focus\:border-0:focus{
  border-width: 0;
}

.focus\:border-2:focus{
  border-width: 2px;
}

.focus\:border-4:focus{
  border-width: 4px;
}

.focus\:border-8:focus{
  border-width: 8px;
}

.focus\:border:focus{
  border-width: 1px;
}

.focus\:border-t-0:focus{
  border-top-width: 0;
}

.focus\:border-r-0:focus{
  border-right-width: 0;
}

.focus\:border-b-0:focus{
  border-bottom-width: 0;
}

.focus\:border-l-0:focus{
  border-left-width: 0;
}

.focus\:border-t-2:focus{
  border-top-width: 2px;
}

.focus\:border-r-2:focus{
  border-right-width: 2px;
}

.focus\:border-b-2:focus{
  border-bottom-width: 2px;
}

.focus\:border-l-2:focus{
  border-left-width: 2px;
}

.focus\:border-t-4:focus{
  border-top-width: 4px;
}

.focus\:border-r-4:focus{
  border-right-width: 4px;
}

.focus\:border-b-4:focus{
  border-bottom-width: 4px;
}

.focus\:border-l-4:focus{
  border-left-width: 4px;
}

.focus\:border-t-8:focus{
  border-top-width: 8px;
}

.focus\:border-r-8:focus{
  border-right-width: 8px;
}

.focus\:border-b-8:focus{
  border-bottom-width: 8px;
}

.focus\:border-l-8:focus{
  border-left-width: 8px;
}

.focus\:border-t:focus{
  border-top-width: 1px;
}

.focus\:border-r:focus{
  border-right-width: 1px;
}

.focus\:border-b:focus{
  border-bottom-width: 1px;
}

.focus\:border-l:focus{
  border-left-width: 1px;
}

.active\:border-0:active{
  border-width: 0;
}

.active\:border-2:active{
  border-width: 2px;
}

.active\:border-4:active{
  border-width: 4px;
}

.active\:border-8:active{
  border-width: 8px;
}

.active\:border:active{
  border-width: 1px;
}

.active\:border-t-0:active{
  border-top-width: 0;
}

.active\:border-r-0:active{
  border-right-width: 0;
}

.active\:border-b-0:active{
  border-bottom-width: 0;
}

.active\:border-l-0:active{
  border-left-width: 0;
}

.active\:border-t-2:active{
  border-top-width: 2px;
}

.active\:border-r-2:active{
  border-right-width: 2px;
}

.active\:border-b-2:active{
  border-bottom-width: 2px;
}

.active\:border-l-2:active{
  border-left-width: 2px;
}

.active\:border-t-4:active{
  border-top-width: 4px;
}

.active\:border-r-4:active{
  border-right-width: 4px;
}

.active\:border-b-4:active{
  border-bottom-width: 4px;
}

.active\:border-l-4:active{
  border-left-width: 4px;
}

.active\:border-t-8:active{
  border-top-width: 8px;
}

.active\:border-r-8:active{
  border-right-width: 8px;
}

.active\:border-b-8:active{
  border-bottom-width: 8px;
}

.active\:border-l-8:active{
  border-left-width: 8px;
}

.active\:border-t:active{
  border-top-width: 1px;
}

.active\:border-r:active{
  border-right-width: 1px;
}

.active\:border-b:active{
  border-bottom-width: 1px;
}

.active\:border-l:active{
  border-left-width: 1px;
}

.first\:border-0:first-child{
  border-width: 0;
}

.first\:border-2:first-child{
  border-width: 2px;
}

.first\:border-4:first-child{
  border-width: 4px;
}

.first\:border-8:first-child{
  border-width: 8px;
}

.first\:border:first-child{
  border-width: 1px;
}

.first\:border-t-0:first-child{
  border-top-width: 0;
}

.first\:border-r-0:first-child{
  border-right-width: 0;
}

.first\:border-b-0:first-child{
  border-bottom-width: 0;
}

.first\:border-l-0:first-child{
  border-left-width: 0;
}

.first\:border-t-2:first-child{
  border-top-width: 2px;
}

.first\:border-r-2:first-child{
  border-right-width: 2px;
}

.first\:border-b-2:first-child{
  border-bottom-width: 2px;
}

.first\:border-l-2:first-child{
  border-left-width: 2px;
}

.first\:border-t-4:first-child{
  border-top-width: 4px;
}

.first\:border-r-4:first-child{
  border-right-width: 4px;
}

.first\:border-b-4:first-child{
  border-bottom-width: 4px;
}

.first\:border-l-4:first-child{
  border-left-width: 4px;
}

.first\:border-t-8:first-child{
  border-top-width: 8px;
}

.first\:border-r-8:first-child{
  border-right-width: 8px;
}

.first\:border-b-8:first-child{
  border-bottom-width: 8px;
}

.first\:border-l-8:first-child{
  border-left-width: 8px;
}

.first\:border-t:first-child{
  border-top-width: 1px;
}

.first\:border-r:first-child{
  border-right-width: 1px;
}

.first\:border-b:first-child{
  border-bottom-width: 1px;
}

.first\:border-l:first-child{
  border-left-width: 1px;
}

.last\:border-0:last-child{
  border-width: 0;
}

.last\:border-2:last-child{
  border-width: 2px;
}

.last\:border-4:last-child{
  border-width: 4px;
}

.last\:border-8:last-child{
  border-width: 8px;
}

.last\:border:last-child{
  border-width: 1px;
}

.last\:border-t-0:last-child{
  border-top-width: 0;
}

.last\:border-r-0:last-child{
  border-right-width: 0;
}

.last\:border-b-0:last-child{
  border-bottom-width: 0;
}

.last\:border-l-0:last-child{
  border-left-width: 0;
}

.last\:border-t-2:last-child{
  border-top-width: 2px;
}

.last\:border-r-2:last-child{
  border-right-width: 2px;
}

.last\:border-b-2:last-child{
  border-bottom-width: 2px;
}

.last\:border-l-2:last-child{
  border-left-width: 2px;
}

.last\:border-t-4:last-child{
  border-top-width: 4px;
}

.last\:border-r-4:last-child{
  border-right-width: 4px;
}

.last\:border-b-4:last-child{
  border-bottom-width: 4px;
}

.last\:border-l-4:last-child{
  border-left-width: 4px;
}

.last\:border-t-8:last-child{
  border-top-width: 8px;
}

.last\:border-r-8:last-child{
  border-right-width: 8px;
}

.last\:border-b-8:last-child{
  border-bottom-width: 8px;
}

.last\:border-l-8:last-child{
  border-left-width: 8px;
}

.last\:border-t:last-child{
  border-top-width: 1px;
}

.last\:border-r:last-child{
  border-right-width: 1px;
}

.last\:border-b:last-child{
  border-bottom-width: 1px;
}

.last\:border-l:last-child{
  border-left-width: 1px;
}

.box-border{
  box-sizing: border-box;
}

.box-content{
  box-sizing: content-box;
}

.hover\:box-border:hover{
  box-sizing: border-box;
}

.hover\:box-content:hover{
  box-sizing: content-box;
}

.focus\:box-border:focus{
  box-sizing: border-box;
}

.focus\:box-content:focus{
  box-sizing: content-box;
}

.active\:box-border:active{
  box-sizing: border-box;
}

.active\:box-content:active{
  box-sizing: content-box;
}

.first\:box-border:first-child{
  box-sizing: border-box;
}

.first\:box-content:first-child{
  box-sizing: content-box;
}

.last\:box-border:last-child{
  box-sizing: border-box;
}

.last\:box-content:last-child{
  box-sizing: content-box;
}

.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-not-allowed{
  cursor: not-allowed;
}

.hover\:cursor-auto:hover{
  cursor: auto;
}

.hover\:cursor-default:hover{
  cursor: default;
}

.hover\:cursor-pointer:hover{
  cursor: pointer;
}

.hover\:cursor-wait:hover{
  cursor: wait;
}

.hover\:cursor-text:hover{
  cursor: text;
}

.hover\:cursor-move:hover{
  cursor: move;
}

.hover\:cursor-not-allowed:hover{
  cursor: not-allowed;
}

.focus\:cursor-auto:focus{
  cursor: auto;
}

.focus\:cursor-default:focus{
  cursor: default;
}

.focus\:cursor-pointer:focus{
  cursor: pointer;
}

.focus\:cursor-wait:focus{
  cursor: wait;
}

.focus\:cursor-text:focus{
  cursor: text;
}

.focus\:cursor-move:focus{
  cursor: move;
}

.focus\:cursor-not-allowed:focus{
  cursor: not-allowed;
}

.active\:cursor-auto:active{
  cursor: auto;
}

.active\:cursor-default:active{
  cursor: default;
}

.active\:cursor-pointer:active{
  cursor: pointer;
}

.active\:cursor-wait:active{
  cursor: wait;
}

.active\:cursor-text:active{
  cursor: text;
}

.active\:cursor-move:active{
  cursor: move;
}

.active\:cursor-not-allowed:active{
  cursor: not-allowed;
}

.first\:cursor-auto:first-child{
  cursor: auto;
}

.first\:cursor-default:first-child{
  cursor: default;
}

.first\:cursor-pointer:first-child{
  cursor: pointer;
}

.first\:cursor-wait:first-child{
  cursor: wait;
}

.first\:cursor-text:first-child{
  cursor: text;
}

.first\:cursor-move:first-child{
  cursor: move;
}

.first\:cursor-not-allowed:first-child{
  cursor: not-allowed;
}

.last\:cursor-auto:last-child{
  cursor: auto;
}

.last\:cursor-default:last-child{
  cursor: default;
}

.last\:cursor-pointer:last-child{
  cursor: pointer;
}

.last\:cursor-wait:last-child{
  cursor: wait;
}

.last\:cursor-text:last-child{
  cursor: text;
}

.last\:cursor-move:last-child{
  cursor: move;
}

.last\:cursor-not-allowed:last-child{
  cursor: not-allowed;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.inline{
  display: inline;
}

.flex{
  display: flex;
}

.inline-flex{
  display: inline-flex;
}

.table{
  display: 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;
}

.hidden{
  display: none;
}

.hover\:block:hover{
  display: block;
}

.hover\:inline-block:hover{
  display: inline-block;
}

.hover\:inline:hover{
  display: inline;
}

.hover\:flex:hover{
  display: flex;
}

.hover\:inline-flex:hover{
  display: inline-flex;
}

.hover\:table:hover{
  display: table;
}

.hover\:table-caption:hover{
  display: table-caption;
}

.hover\:table-cell:hover{
  display: table-cell;
}

.hover\:table-column:hover{
  display: table-column;
}

.hover\:table-column-group:hover{
  display: table-column-group;
}

.hover\:table-footer-group:hover{
  display: table-footer-group;
}

.hover\:table-header-group:hover{
  display: table-header-group;
}

.hover\:table-row-group:hover{
  display: table-row-group;
}

.hover\:table-row:hover{
  display: table-row;
}

.hover\:flow-root:hover{
  display: flow-root;
}

.hover\:grid:hover{
  display: grid;
}

.hover\:inline-grid:hover{
  display: inline-grid;
}

.hover\:contents:hover{
  display: contents;
}

.hover\:hidden:hover{
  display: none;
}

.focus\:block:focus{
  display: block;
}

.focus\:inline-block:focus{
  display: inline-block;
}

.focus\:inline:focus{
  display: inline;
}

.focus\:flex:focus{
  display: flex;
}

.focus\:inline-flex:focus{
  display: inline-flex;
}

.focus\:table:focus{
  display: table;
}

.focus\:table-caption:focus{
  display: table-caption;
}

.focus\:table-cell:focus{
  display: table-cell;
}

.focus\:table-column:focus{
  display: table-column;
}

.focus\:table-column-group:focus{
  display: table-column-group;
}

.focus\:table-footer-group:focus{
  display: table-footer-group;
}

.focus\:table-header-group:focus{
  display: table-header-group;
}

.focus\:table-row-group:focus{
  display: table-row-group;
}

.focus\:table-row:focus{
  display: table-row;
}

.focus\:flow-root:focus{
  display: flow-root;
}

.focus\:grid:focus{
  display: grid;
}

.focus\:inline-grid:focus{
  display: inline-grid;
}

.focus\:contents:focus{
  display: contents;
}

.focus\:hidden:focus{
  display: none;
}

.active\:block:active{
  display: block;
}

.active\:inline-block:active{
  display: inline-block;
}

.active\:inline:active{
  display: inline;
}

.active\:flex:active{
  display: flex;
}

.active\:inline-flex:active{
  display: inline-flex;
}

.active\:table:active{
  display: table;
}

.active\:table-caption:active{
  display: table-caption;
}

.active\:table-cell:active{
  display: table-cell;
}

.active\:table-column:active{
  display: table-column;
}

.active\:table-column-group:active{
  display: table-column-group;
}

.active\:table-footer-group:active{
  display: table-footer-group;
}

.active\:table-header-group:active{
  display: table-header-group;
}

.active\:table-row-group:active{
  display: table-row-group;
}

.active\:table-row:active{
  display: table-row;
}

.active\:flow-root:active{
  display: flow-root;
}

.active\:grid:active{
  display: grid;
}

.active\:inline-grid:active{
  display: inline-grid;
}

.active\:contents:active{
  display: contents;
}

.active\:hidden:active{
  display: none;
}

.first\:block:first-child{
  display: block;
}

.first\:inline-block:first-child{
  display: inline-block;
}

.first\:inline:first-child{
  display: inline;
}

.first\:flex:first-child{
  display: flex;
}

.first\:inline-flex:first-child{
  display: inline-flex;
}

.first\:table:first-child{
  display: table;
}

.first\:table-caption:first-child{
  display: table-caption;
}

.first\:table-cell:first-child{
  display: table-cell;
}

.first\:table-column:first-child{
  display: table-column;
}

.first\:table-column-group:first-child{
  display: table-column-group;
}

.first\:table-footer-group:first-child{
  display: table-footer-group;
}

.first\:table-header-group:first-child{
  display: table-header-group;
}

.first\:table-row-group:first-child{
  display: table-row-group;
}

.first\:table-row:first-child{
  display: table-row;
}

.first\:flow-root:first-child{
  display: flow-root;
}

.first\:grid:first-child{
  display: grid;
}

.first\:inline-grid:first-child{
  display: inline-grid;
}

.first\:contents:first-child{
  display: contents;
}

.first\:hidden:first-child{
  display: none;
}

.last\:block:last-child{
  display: block;
}

.last\:inline-block:last-child{
  display: inline-block;
}

.last\:inline:last-child{
  display: inline;
}

.last\:flex:last-child{
  display: flex;
}

.last\:inline-flex:last-child{
  display: inline-flex;
}

.last\:table:last-child{
  display: table;
}

.last\:table-caption:last-child{
  display: table-caption;
}

.last\:table-cell:last-child{
  display: table-cell;
}

.last\:table-column:last-child{
  display: table-column;
}

.last\:table-column-group:last-child{
  display: table-column-group;
}

.last\:table-footer-group:last-child{
  display: table-footer-group;
}

.last\:table-header-group:last-child{
  display: table-header-group;
}

.last\:table-row-group:last-child{
  display: table-row-group;
}

.last\:table-row:last-child{
  display: table-row;
}

.last\:flow-root:last-child{
  display: flow-root;
}

.last\:grid:last-child{
  display: grid;
}

.last\:inline-grid:last-child{
  display: inline-grid;
}

.last\:contents:last-child{
  display: contents;
}

.last\:hidden:last-child{
  display: 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;
}

.hover\:flex-row:hover{
  flex-direction: row;
}

.hover\:flex-row-reverse:hover{
  flex-direction: row-reverse;
}

.hover\:flex-col:hover{
  flex-direction: column;
}

.hover\:flex-col-reverse:hover{
  flex-direction: column-reverse;
}

.focus\:flex-row:focus{
  flex-direction: row;
}

.focus\:flex-row-reverse:focus{
  flex-direction: row-reverse;
}

.focus\:flex-col:focus{
  flex-direction: column;
}

.focus\:flex-col-reverse:focus{
  flex-direction: column-reverse;
}

.active\:flex-row:active{
  flex-direction: row;
}

.active\:flex-row-reverse:active{
  flex-direction: row-reverse;
}

.active\:flex-col:active{
  flex-direction: column;
}

.active\:flex-col-reverse:active{
  flex-direction: column-reverse;
}

.first\:flex-row:first-child{
  flex-direction: row;
}

.first\:flex-row-reverse:first-child{
  flex-direction: row-reverse;
}

.first\:flex-col:first-child{
  flex-direction: column;
}

.first\:flex-col-reverse:first-child{
  flex-direction: column-reverse;
}

.last\:flex-row:last-child{
  flex-direction: row;
}

.last\:flex-row-reverse:last-child{
  flex-direction: row-reverse;
}

.last\:flex-col:last-child{
  flex-direction: column;
}

.last\:flex-col-reverse:last-child{
  flex-direction: column-reverse;
}

.flex-wrap{
  flex-wrap: wrap;
}

.flex-wrap-reverse{
  flex-wrap: wrap-reverse;
}

.flex-no-wrap{
  flex-wrap: nowrap;
}

.hover\:flex-wrap:hover{
  flex-wrap: wrap;
}

.hover\:flex-wrap-reverse:hover{
  flex-wrap: wrap-reverse;
}

.hover\:flex-no-wrap:hover{
  flex-wrap: nowrap;
}

.focus\:flex-wrap:focus{
  flex-wrap: wrap;
}

.focus\:flex-wrap-reverse:focus{
  flex-wrap: wrap-reverse;
}

.focus\:flex-no-wrap:focus{
  flex-wrap: nowrap;
}

.active\:flex-wrap:active{
  flex-wrap: wrap;
}

.active\:flex-wrap-reverse:active{
  flex-wrap: wrap-reverse;
}

.active\:flex-no-wrap:active{
  flex-wrap: nowrap;
}

.first\:flex-wrap:first-child{
  flex-wrap: wrap;
}

.first\:flex-wrap-reverse:first-child{
  flex-wrap: wrap-reverse;
}

.first\:flex-no-wrap:first-child{
  flex-wrap: nowrap;
}

.last\:flex-wrap:last-child{
  flex-wrap: wrap;
}

.last\:flex-wrap-reverse:last-child{
  flex-wrap: wrap-reverse;
}

.last\:flex-no-wrap:last-child{
  flex-wrap: nowrap;
}

.place-items-auto{
  place-items: auto;
}

.place-items-start{
  place-items: start;
}

.place-items-end{
  place-items: end;
}

.place-items-center{
  place-items: center;
}

.place-items-stretch{
  place-items: stretch;
}

.hover\:place-items-auto:hover{
  place-items: auto;
}

.hover\:place-items-start:hover{
  place-items: start;
}

.hover\:place-items-end:hover{
  place-items: end;
}

.hover\:place-items-center:hover{
  place-items: center;
}

.hover\:place-items-stretch:hover{
  place-items: stretch;
}

.focus\:place-items-auto:focus{
  place-items: auto;
}

.focus\:place-items-start:focus{
  place-items: start;
}

.focus\:place-items-end:focus{
  place-items: end;
}

.focus\:place-items-center:focus{
  place-items: center;
}

.focus\:place-items-stretch:focus{
  place-items: stretch;
}

.active\:place-items-auto:active{
  place-items: auto;
}

.active\:place-items-start:active{
  place-items: start;
}

.active\:place-items-end:active{
  place-items: end;
}

.active\:place-items-center:active{
  place-items: center;
}

.active\:place-items-stretch:active{
  place-items: stretch;
}

.first\:place-items-auto:first-child{
  place-items: auto;
}

.first\:place-items-start:first-child{
  place-items: start;
}

.first\:place-items-end:first-child{
  place-items: end;
}

.first\:place-items-center:first-child{
  place-items: center;
}

.first\:place-items-stretch:first-child{
  place-items: stretch;
}

.last\:place-items-auto:last-child{
  place-items: auto;
}

.last\:place-items-start:last-child{
  place-items: start;
}

.last\:place-items-end:last-child{
  place-items: end;
}

.last\:place-items-center:last-child{
  place-items: center;
}

.last\:place-items-stretch:last-child{
  place-items: stretch;
}

.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;
}

.hover\:place-content-center:hover{
  place-content: center;
}

.hover\:place-content-start:hover{
  place-content: start;
}

.hover\:place-content-end:hover{
  place-content: end;
}

.hover\:place-content-between:hover{
  place-content: space-between;
}

.hover\:place-content-around:hover{
  place-content: space-around;
}

.hover\:place-content-evenly:hover{
  place-content: space-evenly;
}

.hover\:place-content-stretch:hover{
  place-content: stretch;
}

.focus\:place-content-center:focus{
  place-content: center;
}

.focus\:place-content-start:focus{
  place-content: start;
}

.focus\:place-content-end:focus{
  place-content: end;
}

.focus\:place-content-between:focus{
  place-content: space-between;
}

.focus\:place-content-around:focus{
  place-content: space-around;
}

.focus\:place-content-evenly:focus{
  place-content: space-evenly;
}

.focus\:place-content-stretch:focus{
  place-content: stretch;
}

.active\:place-content-center:active{
  place-content: center;
}

.active\:place-content-start:active{
  place-content: start;
}

.active\:place-content-end:active{
  place-content: end;
}

.active\:place-content-between:active{
  place-content: space-between;
}

.active\:place-content-around:active{
  place-content: space-around;
}

.active\:place-content-evenly:active{
  place-content: space-evenly;
}

.active\:place-content-stretch:active{
  place-content: stretch;
}

.first\:place-content-center:first-child{
  place-content: center;
}

.first\:place-content-start:first-child{
  place-content: start;
}

.first\:place-content-end:first-child{
  place-content: end;
}

.first\:place-content-between:first-child{
  place-content: space-between;
}

.first\:place-content-around:first-child{
  place-content: space-around;
}

.first\:place-content-evenly:first-child{
  place-content: space-evenly;
}

.first\:place-content-stretch:first-child{
  place-content: stretch;
}

.last\:place-content-center:last-child{
  place-content: center;
}

.last\:place-content-start:last-child{
  place-content: start;
}

.last\:place-content-end:last-child{
  place-content: end;
}

.last\:place-content-between:last-child{
  place-content: space-between;
}

.last\:place-content-around:last-child{
  place-content: space-around;
}

.last\:place-content-evenly:last-child{
  place-content: space-evenly;
}

.last\:place-content-stretch:last-child{
  place-content: stretch;
}

.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;
}

.hover\:place-self-auto:hover{
  place-self: auto;
}

.hover\:place-self-start:hover{
  place-self: start;
}

.hover\:place-self-end:hover{
  place-self: end;
}

.hover\:place-self-center:hover{
  place-self: center;
}

.hover\:place-self-stretch:hover{
  place-self: stretch;
}

.focus\:place-self-auto:focus{
  place-self: auto;
}

.focus\:place-self-start:focus{
  place-self: start;
}

.focus\:place-self-end:focus{
  place-self: end;
}

.focus\:place-self-center:focus{
  place-self: center;
}

.focus\:place-self-stretch:focus{
  place-self: stretch;
}

.active\:place-self-auto:active{
  place-self: auto;
}

.active\:place-self-start:active{
  place-self: start;
}

.active\:place-self-end:active{
  place-self: end;
}

.active\:place-self-center:active{
  place-self: center;
}

.active\:place-self-stretch:active{
  place-self: stretch;
}

.first\:place-self-auto:first-child{
  place-self: auto;
}

.first\:place-self-start:first-child{
  place-self: start;
}

.first\:place-self-end:first-child{
  place-self: end;
}

.first\:place-self-center:first-child{
  place-self: center;
}

.first\:place-self-stretch:first-child{
  place-self: stretch;
}

.last\:place-self-auto:last-child{
  place-self: auto;
}

.last\:place-self-start:last-child{
  place-self: start;
}

.last\:place-self-end:last-child{
  place-self: end;
}

.last\:place-self-center:last-child{
  place-self: center;
}

.last\:place-self-stretch:last-child{
  place-self: stretch;
}

.items-start{
  align-items: flex-start;
}

.items-end{
  align-items: flex-end;
}

.items-center{
  align-items: center;
}

.items-baseline{
  align-items: baseline;
}

.items-stretch{
  align-items: stretch;
}

.hover\:items-start:hover{
  align-items: flex-start;
}

.hover\:items-end:hover{
  align-items: flex-end;
}

.hover\:items-center:hover{
  align-items: center;
}

.hover\:items-baseline:hover{
  align-items: baseline;
}

.hover\:items-stretch:hover{
  align-items: stretch;
}

.focus\:items-start:focus{
  align-items: flex-start;
}

.focus\:items-end:focus{
  align-items: flex-end;
}

.focus\:items-center:focus{
  align-items: center;
}

.focus\:items-baseline:focus{
  align-items: baseline;
}

.focus\:items-stretch:focus{
  align-items: stretch;
}

.active\:items-start:active{
  align-items: flex-start;
}

.active\:items-end:active{
  align-items: flex-end;
}

.active\:items-center:active{
  align-items: center;
}

.active\:items-baseline:active{
  align-items: baseline;
}

.active\:items-stretch:active{
  align-items: stretch;
}

.first\:items-start:first-child{
  align-items: flex-start;
}

.first\:items-end:first-child{
  align-items: flex-end;
}

.first\:items-center:first-child{
  align-items: center;
}

.first\:items-baseline:first-child{
  align-items: baseline;
}

.first\:items-stretch:first-child{
  align-items: stretch;
}

.last\:items-start:last-child{
  align-items: flex-start;
}

.last\:items-end:last-child{
  align-items: flex-end;
}

.last\:items-center:last-child{
  align-items: center;
}

.last\:items-baseline:last-child{
  align-items: baseline;
}

.last\:items-stretch:last-child{
  align-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;
}

.hover\:content-center:hover{
  align-content: center;
}

.hover\:content-start:hover{
  align-content: flex-start;
}

.hover\:content-end:hover{
  align-content: flex-end;
}

.hover\:content-between:hover{
  align-content: space-between;
}

.hover\:content-around:hover{
  align-content: space-around;
}

.hover\:content-evenly:hover{
  align-content: space-evenly;
}

.focus\:content-center:focus{
  align-content: center;
}

.focus\:content-start:focus{
  align-content: flex-start;
}

.focus\:content-end:focus{
  align-content: flex-end;
}

.focus\:content-between:focus{
  align-content: space-between;
}

.focus\:content-around:focus{
  align-content: space-around;
}

.focus\:content-evenly:focus{
  align-content: space-evenly;
}

.active\:content-center:active{
  align-content: center;
}

.active\:content-start:active{
  align-content: flex-start;
}

.active\:content-end:active{
  align-content: flex-end;
}

.active\:content-between:active{
  align-content: space-between;
}

.active\:content-around:active{
  align-content: space-around;
}

.active\:content-evenly:active{
  align-content: space-evenly;
}

.first\:content-center:first-child{
  align-content: center;
}

.first\:content-start:first-child{
  align-content: flex-start;
}

.first\:content-end:first-child{
  align-content: flex-end;
}

.first\:content-between:first-child{
  align-content: space-between;
}

.first\:content-around:first-child{
  align-content: space-around;
}

.first\:content-evenly:first-child{
  align-content: space-evenly;
}

.last\:content-center:last-child{
  align-content: center;
}

.last\:content-start:last-child{
  align-content: flex-start;
}

.last\:content-end:last-child{
  align-content: flex-end;
}

.last\:content-between:last-child{
  align-content: space-between;
}

.last\:content-around:last-child{
  align-content: space-around;
}

.last\:content-evenly:last-child{
  align-content: space-evenly;
}

.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;
}

.hover\:self-auto:hover{
  align-self: auto;
}

.hover\:self-start:hover{
  align-self: flex-start;
}

.hover\:self-end:hover{
  align-self: flex-end;
}

.hover\:self-center:hover{
  align-self: center;
}

.hover\:self-stretch:hover{
  align-self: stretch;
}

.focus\:self-auto:focus{
  align-self: auto;
}

.focus\:self-start:focus{
  align-self: flex-start;
}

.focus\:self-end:focus{
  align-self: flex-end;
}

.focus\:self-center:focus{
  align-self: center;
}

.focus\:self-stretch:focus{
  align-self: stretch;
}

.active\:self-auto:active{
  align-self: auto;
}

.active\:self-start:active{
  align-self: flex-start;
}

.active\:self-end:active{
  align-self: flex-end;
}

.active\:self-center:active{
  align-self: center;
}

.active\:self-stretch:active{
  align-self: stretch;
}

.first\:self-auto:first-child{
  align-self: auto;
}

.first\:self-start:first-child{
  align-self: flex-start;
}

.first\:self-end:first-child{
  align-self: flex-end;
}

.first\:self-center:first-child{
  align-self: center;
}

.first\:self-stretch:first-child{
  align-self: stretch;
}

.last\:self-auto:last-child{
  align-self: auto;
}

.last\:self-start:last-child{
  align-self: flex-start;
}

.last\:self-end:last-child{
  align-self: flex-end;
}

.last\:self-center:last-child{
  align-self: center;
}

.last\:self-stretch:last-child{
  align-self: stretch;
}

.justify-items-auto{
  justify-items: auto;
}

.justify-items-start{
  justify-items: start;
}

.justify-items-end{
  justify-items: end;
}

.justify-items-center{
  justify-items: center;
}

.justify-items-stretch{
  justify-items: stretch;
}

.hover\:justify-items-auto:hover{
  justify-items: auto;
}

.hover\:justify-items-start:hover{
  justify-items: start;
}

.hover\:justify-items-end:hover{
  justify-items: end;
}

.hover\:justify-items-center:hover{
  justify-items: center;
}

.hover\:justify-items-stretch:hover{
  justify-items: stretch;
}

.focus\:justify-items-auto:focus{
  justify-items: auto;
}

.focus\:justify-items-start:focus{
  justify-items: start;
}

.focus\:justify-items-end:focus{
  justify-items: end;
}

.focus\:justify-items-center:focus{
  justify-items: center;
}

.focus\:justify-items-stretch:focus{
  justify-items: stretch;
}

.active\:justify-items-auto:active{
  justify-items: auto;
}

.active\:justify-items-start:active{
  justify-items: start;
}

.active\:justify-items-end:active{
  justify-items: end;
}

.active\:justify-items-center:active{
  justify-items: center;
}

.active\:justify-items-stretch:active{
  justify-items: stretch;
}

.first\:justify-items-auto:first-child{
  justify-items: auto;
}

.first\:justify-items-start:first-child{
  justify-items: start;
}

.first\:justify-items-end:first-child{
  justify-items: end;
}

.first\:justify-items-center:first-child{
  justify-items: center;
}

.first\:justify-items-stretch:first-child{
  justify-items: stretch;
}

.last\:justify-items-auto:last-child{
  justify-items: auto;
}

.last\:justify-items-start:last-child{
  justify-items: start;
}

.last\:justify-items-end:last-child{
  justify-items: end;
}

.last\:justify-items-center:last-child{
  justify-items: center;
}

.last\:justify-items-stretch:last-child{
  justify-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;
}

.hover\:justify-start:hover{
  justify-content: flex-start;
}

.hover\:justify-end:hover{
  justify-content: flex-end;
}

.hover\:justify-center:hover{
  justify-content: center;
}

.hover\:justify-between:hover{
  justify-content: space-between;
}

.hover\:justify-around:hover{
  justify-content: space-around;
}

.hover\:justify-evenly:hover{
  justify-content: space-evenly;
}

.focus\:justify-start:focus{
  justify-content: flex-start;
}

.focus\:justify-end:focus{
  justify-content: flex-end;
}

.focus\:justify-center:focus{
  justify-content: center;
}

.focus\:justify-between:focus{
  justify-content: space-between;
}

.focus\:justify-around:focus{
  justify-content: space-around;
}

.focus\:justify-evenly:focus{
  justify-content: space-evenly;
}

.active\:justify-start:active{
  justify-content: flex-start;
}

.active\:justify-end:active{
  justify-content: flex-end;
}

.active\:justify-center:active{
  justify-content: center;
}

.active\:justify-between:active{
  justify-content: space-between;
}

.active\:justify-around:active{
  justify-content: space-around;
}

.active\:justify-evenly:active{
  justify-content: space-evenly;
}

.first\:justify-start:first-child{
  justify-content: flex-start;
}

.first\:justify-end:first-child{
  justify-content: flex-end;
}

.first\:justify-center:first-child{
  justify-content: center;
}

.first\:justify-between:first-child{
  justify-content: space-between;
}

.first\:justify-around:first-child{
  justify-content: space-around;
}

.first\:justify-evenly:first-child{
  justify-content: space-evenly;
}

.last\:justify-start:last-child{
  justify-content: flex-start;
}

.last\:justify-end:last-child{
  justify-content: flex-end;
}

.last\:justify-center:last-child{
  justify-content: center;
}

.last\:justify-between:last-child{
  justify-content: space-between;
}

.last\:justify-around:last-child{
  justify-content: space-around;
}

.last\:justify-evenly:last-child{
  justify-content: space-evenly;
}

.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;
}

.hover\:justify-self-auto:hover{
  justify-self: auto;
}

.hover\:justify-self-start:hover{
  justify-self: start;
}

.hover\:justify-self-end:hover{
  justify-self: end;
}

.hover\:justify-self-center:hover{
  justify-self: center;
}

.hover\:justify-self-stretch:hover{
  justify-self: stretch;
}

.focus\:justify-self-auto:focus{
  justify-self: auto;
}

.focus\:justify-self-start:focus{
  justify-self: start;
}

.focus\:justify-self-end:focus{
  justify-self: end;
}

.focus\:justify-self-center:focus{
  justify-self: center;
}

.focus\:justify-self-stretch:focus{
  justify-self: stretch;
}

.active\:justify-self-auto:active{
  justify-self: auto;
}

.active\:justify-self-start:active{
  justify-self: start;
}

.active\:justify-self-end:active{
  justify-self: end;
}

.active\:justify-self-center:active{
  justify-self: center;
}

.active\:justify-self-stretch:active{
  justify-self: stretch;
}

.first\:justify-self-auto:first-child{
  justify-self: auto;
}

.first\:justify-self-start:first-child{
  justify-self: start;
}

.first\:justify-self-end:first-child{
  justify-self: end;
}

.first\:justify-self-center:first-child{
  justify-self: center;
}

.first\:justify-self-stretch:first-child{
  justify-self: stretch;
}

.last\:justify-self-auto:last-child{
  justify-self: auto;
}

.last\:justify-self-start:last-child{
  justify-self: start;
}

.last\:justify-self-end:last-child{
  justify-self: end;
}

.last\:justify-self-center:last-child{
  justify-self: center;
}

.last\:justify-self-stretch:last-child{
  justify-self: stretch;
}

.flex-1{
  flex: 1 1 0%;
}

.flex-auto{
  flex: 1 1 auto;
}

.flex-initial{
  flex: 0 1 auto;
}

.flex-none{
  flex: none;
}

.hover\:flex-1:hover{
  flex: 1 1 0%;
}

.hover\:flex-auto:hover{
  flex: 1 1 auto;
}

.hover\:flex-initial:hover{
  flex: 0 1 auto;
}

.hover\:flex-none:hover{
  flex: none;
}

.focus\:flex-1:focus{
  flex: 1 1 0%;
}

.focus\:flex-auto:focus{
  flex: 1 1 auto;
}

.focus\:flex-initial:focus{
  flex: 0 1 auto;
}

.focus\:flex-none:focus{
  flex: none;
}

.active\:flex-1:active{
  flex: 1 1 0%;
}

.active\:flex-auto:active{
  flex: 1 1 auto;
}

.active\:flex-initial:active{
  flex: 0 1 auto;
}

.active\:flex-none:active{
  flex: none;
}

.first\:flex-1:first-child{
  flex: 1 1 0%;
}

.first\:flex-auto:first-child{
  flex: 1 1 auto;
}

.first\:flex-initial:first-child{
  flex: 0 1 auto;
}

.first\:flex-none:first-child{
  flex: none;
}

.last\:flex-1:last-child{
  flex: 1 1 0%;
}

.last\:flex-auto:last-child{
  flex: 1 1 auto;
}

.last\:flex-initial:last-child{
  flex: 0 1 auto;
}

.last\:flex-none:last-child{
  flex: none;
}

.flex-grow-0{
  flex-grow: 0;
}

.flex-grow-2{
  flex-grow: 2;
}

.flex-grow{
  flex-grow: 1;
}

.hover\:flex-grow-0:hover{
  flex-grow: 0;
}

.hover\:flex-grow-2:hover{
  flex-grow: 2;
}

.hover\:flex-grow:hover{
  flex-grow: 1;
}

.focus\:flex-grow-0:focus{
  flex-grow: 0;
}

.focus\:flex-grow-2:focus{
  flex-grow: 2;
}

.focus\:flex-grow:focus{
  flex-grow: 1;
}

.active\:flex-grow-0:active{
  flex-grow: 0;
}

.active\:flex-grow-2:active{
  flex-grow: 2;
}

.active\:flex-grow:active{
  flex-grow: 1;
}

.first\:flex-grow-0:first-child{
  flex-grow: 0;
}

.first\:flex-grow-2:first-child{
  flex-grow: 2;
}

.first\:flex-grow:first-child{
  flex-grow: 1;
}

.last\:flex-grow-0:last-child{
  flex-grow: 0;
}

.last\:flex-grow-2:last-child{
  flex-grow: 2;
}

.last\:flex-grow:last-child{
  flex-grow: 1;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.flex-shrink{
  flex-shrink: 1;
}

.hover\:flex-shrink-0:hover{
  flex-shrink: 0;
}

.hover\:flex-shrink:hover{
  flex-shrink: 1;
}

.focus\:flex-shrink-0:focus{
  flex-shrink: 0;
}

.focus\:flex-shrink:focus{
  flex-shrink: 1;
}

.active\:flex-shrink-0:active{
  flex-shrink: 0;
}

.active\:flex-shrink:active{
  flex-shrink: 1;
}

.first\:flex-shrink-0:first-child{
  flex-shrink: 0;
}

.first\:flex-shrink:first-child{
  flex-shrink: 1;
}

.last\:flex-shrink-0:last-child{
  flex-shrink: 0;
}

.last\:flex-shrink:last-child{
  flex-shrink: 1;
}

.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;
}

.hover\:order-1:hover{
  order: 1;
}

.hover\:order-2:hover{
  order: 2;
}

.hover\:order-3:hover{
  order: 3;
}

.hover\:order-4:hover{
  order: 4;
}

.hover\:order-5:hover{
  order: 5;
}

.hover\:order-6:hover{
  order: 6;
}

.hover\:order-7:hover{
  order: 7;
}

.hover\:order-8:hover{
  order: 8;
}

.hover\:order-9:hover{
  order: 9;
}

.hover\:order-10:hover{
  order: 10;
}

.hover\:order-11:hover{
  order: 11;
}

.hover\:order-12:hover{
  order: 12;
}

.hover\:order-first:hover{
  order: -9999;
}

.hover\:order-last:hover{
  order: 9999;
}

.hover\:order-none:hover{
  order: 0;
}

.focus\:order-1:focus{
  order: 1;
}

.focus\:order-2:focus{
  order: 2;
}

.focus\:order-3:focus{
  order: 3;
}

.focus\:order-4:focus{
  order: 4;
}

.focus\:order-5:focus{
  order: 5;
}

.focus\:order-6:focus{
  order: 6;
}

.focus\:order-7:focus{
  order: 7;
}

.focus\:order-8:focus{
  order: 8;
}

.focus\:order-9:focus{
  order: 9;
}

.focus\:order-10:focus{
  order: 10;
}

.focus\:order-11:focus{
  order: 11;
}

.focus\:order-12:focus{
  order: 12;
}

.focus\:order-first:focus{
  order: -9999;
}

.focus\:order-last:focus{
  order: 9999;
}

.focus\:order-none:focus{
  order: 0;
}

.active\:order-1:active{
  order: 1;
}

.active\:order-2:active{
  order: 2;
}

.active\:order-3:active{
  order: 3;
}

.active\:order-4:active{
  order: 4;
}

.active\:order-5:active{
  order: 5;
}

.active\:order-6:active{
  order: 6;
}

.active\:order-7:active{
  order: 7;
}

.active\:order-8:active{
  order: 8;
}

.active\:order-9:active{
  order: 9;
}

.active\:order-10:active{
  order: 10;
}

.active\:order-11:active{
  order: 11;
}

.active\:order-12:active{
  order: 12;
}

.active\:order-first:active{
  order: -9999;
}

.active\:order-last:active{
  order: 9999;
}

.active\:order-none:active{
  order: 0;
}

.first\:order-1:first-child{
  order: 1;
}

.first\:order-2:first-child{
  order: 2;
}

.first\:order-3:first-child{
  order: 3;
}

.first\:order-4:first-child{
  order: 4;
}

.first\:order-5:first-child{
  order: 5;
}

.first\:order-6:first-child{
  order: 6;
}

.first\:order-7:first-child{
  order: 7;
}

.first\:order-8:first-child{
  order: 8;
}

.first\:order-9:first-child{
  order: 9;
}

.first\:order-10:first-child{
  order: 10;
}

.first\:order-11:first-child{
  order: 11;
}

.first\:order-12:first-child{
  order: 12;
}

.first\:order-first:first-child{
  order: -9999;
}

.first\:order-last:first-child{
  order: 9999;
}

.first\:order-none:first-child{
  order: 0;
}

.last\:order-1:last-child{
  order: 1;
}

.last\:order-2:last-child{
  order: 2;
}

.last\:order-3:last-child{
  order: 3;
}

.last\:order-4:last-child{
  order: 4;
}

.last\:order-5:last-child{
  order: 5;
}

.last\:order-6:last-child{
  order: 6;
}

.last\:order-7:last-child{
  order: 7;
}

.last\:order-8:last-child{
  order: 8;
}

.last\:order-9:last-child{
  order: 9;
}

.last\:order-10:last-child{
  order: 10;
}

.last\:order-11:last-child{
  order: 11;
}

.last\:order-12:last-child{
  order: 12;
}

.last\:order-first:last-child{
  order: -9999;
}

.last\:order-last:last-child{
  order: 9999;
}

.last\:order-none:last-child{
  order: 0;
}

.float-right{
  float: right;
}

.float-left{
  float: left;
}

.float-none{
  float: none;
}

.clearfix:after{
  content: "";
  display: table;
  clear: both;
}

.hover\:float-right:hover{
  float: right;
}

.hover\:float-left:hover{
  float: left;
}

.hover\:float-none:hover{
  float: none;
}

.hover\:clearfix:hover:after{
  content: "";
  display: table;
  clear: both;
}

.focus\:float-right:focus{
  float: right;
}

.focus\:float-left:focus{
  float: left;
}

.focus\:float-none:focus{
  float: none;
}

.focus\:clearfix:focus:after{
  content: "";
  display: table;
  clear: both;
}

.active\:float-right:active{
  float: right;
}

.active\:float-left:active{
  float: left;
}

.active\:float-none:active{
  float: none;
}

.active\:clearfix:active:after{
  content: "";
  display: table;
  clear: both;
}

.first\:float-right:first-child{
  float: right;
}

.first\:float-left:first-child{
  float: left;
}

.first\:float-none:first-child{
  float: none;
}

.first\:clearfix:first-child:after{
  content: "";
  display: table;
  clear: both;
}

.last\:float-right:last-child{
  float: right;
}

.last\:float-left:last-child{
  float: left;
}

.last\:float-none:last-child{
  float: none;
}

.last\:clearfix:last-child:after{
  content: "";
  display: table;
  clear: both;
}

.clear-left{
  clear: left;
}

.clear-right{
  clear: right;
}

.clear-both{
  clear: both;
}

.clear-none{
  clear: none;
}

.hover\:clear-left:hover{
  clear: left;
}

.hover\:clear-right:hover{
  clear: right;
}

.hover\:clear-both:hover{
  clear: both;
}

.hover\:clear-none:hover{
  clear: none;
}

.focus\:clear-left:focus{
  clear: left;
}

.focus\:clear-right:focus{
  clear: right;
}

.focus\:clear-both:focus{
  clear: both;
}

.focus\:clear-none:focus{
  clear: none;
}

.active\:clear-left:active{
  clear: left;
}

.active\:clear-right:active{
  clear: right;
}

.active\:clear-both:active{
  clear: both;
}

.active\:clear-none:active{
  clear: none;
}

.first\:clear-left:first-child{
  clear: left;
}

.first\:clear-right:first-child{
  clear: right;
}

.first\:clear-both:first-child{
  clear: both;
}

.first\:clear-none:first-child{
  clear: none;
}

.last\:clear-left:last-child{
  clear: left;
}

.last\:clear-right:last-child{
  clear: right;
}

.last\:clear-both:last-child{
  clear: both;
}

.last\:clear-none:last-child{
  clear: none;
}

.font-moderat{
  font-family: Moderat, Helvetica, sans-serif;
}

.font-brown-pro{
  font-family: Brown, Helvetica, sans-serif;
}

.font-print{
  font-family: Bianco Sans;
}

.font-print-serif{
  font-family: Bianco Serif;
}

.hover\:font-moderat:hover{
  font-family: Moderat, Helvetica, sans-serif;
}

.hover\:font-brown-pro:hover{
  font-family: Brown, Helvetica, sans-serif;
}

.hover\:font-print:hover{
  font-family: Bianco Sans;
}

.hover\:font-print-serif:hover{
  font-family: Bianco Serif;
}

.focus\:font-moderat:focus{
  font-family: Moderat, Helvetica, sans-serif;
}

.focus\:font-brown-pro:focus{
  font-family: Brown, Helvetica, sans-serif;
}

.focus\:font-print:focus{
  font-family: Bianco Sans;
}

.focus\:font-print-serif:focus{
  font-family: Bianco Serif;
}

.active\:font-moderat:active{
  font-family: Moderat, Helvetica, sans-serif;
}

.active\:font-brown-pro:active{
  font-family: Brown, Helvetica, sans-serif;
}

.active\:font-print:active{
  font-family: Bianco Sans;
}

.active\:font-print-serif:active{
  font-family: Bianco Serif;
}

.first\:font-moderat:first-child{
  font-family: Moderat, Helvetica, sans-serif;
}

.first\:font-brown-pro:first-child{
  font-family: Brown, Helvetica, sans-serif;
}

.first\:font-print:first-child{
  font-family: Bianco Sans;
}

.first\:font-print-serif:first-child{
  font-family: Bianco Serif;
}

.last\:font-moderat:last-child{
  font-family: Moderat, Helvetica, sans-serif;
}

.last\:font-brown-pro:last-child{
  font-family: Brown, Helvetica, sans-serif;
}

.last\:font-print:last-child{
  font-family: Bianco Sans;
}

.last\:font-print-serif:last-child{
  font-family: Bianco Serif;
}

.font-hairline{
  font-weight: 100;
}

.font-thin{
  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;
}

.hover\:font-hairline:hover{
  font-weight: 100;
}

.hover\:font-thin:hover{
  font-weight: 200;
}

.hover\:font-light:hover{
  font-weight: 300;
}

.hover\:font-normal:hover{
  font-weight: 400;
}

.hover\:font-medium:hover{
  font-weight: 500;
}

.hover\:font-semibold:hover{
  font-weight: 600;
}

.hover\:font-bold:hover{
  font-weight: 700;
}

.hover\:font-extrabold:hover{
  font-weight: 800;
}

.hover\:font-black:hover{
  font-weight: 900;
}

.focus\:font-hairline:focus{
  font-weight: 100;
}

.focus\:font-thin:focus{
  font-weight: 200;
}

.focus\:font-light:focus{
  font-weight: 300;
}

.focus\:font-normal:focus{
  font-weight: 400;
}

.focus\:font-medium:focus{
  font-weight: 500;
}

.focus\:font-semibold:focus{
  font-weight: 600;
}

.focus\:font-bold:focus{
  font-weight: 700;
}

.focus\:font-extrabold:focus{
  font-weight: 800;
}

.focus\:font-black:focus{
  font-weight: 900;
}

.active\:font-hairline:active{
  font-weight: 100;
}

.active\:font-thin:active{
  font-weight: 200;
}

.active\:font-light:active{
  font-weight: 300;
}

.active\:font-normal:active{
  font-weight: 400;
}

.active\:font-medium:active{
  font-weight: 500;
}

.active\:font-semibold:active{
  font-weight: 600;
}

.active\:font-bold:active{
  font-weight: 700;
}

.active\:font-extrabold:active{
  font-weight: 800;
}

.active\:font-black:active{
  font-weight: 900;
}

.first\:font-hairline:first-child{
  font-weight: 100;
}

.first\:font-thin:first-child{
  font-weight: 200;
}

.first\:font-light:first-child{
  font-weight: 300;
}

.first\:font-normal:first-child{
  font-weight: 400;
}

.first\:font-medium:first-child{
  font-weight: 500;
}

.first\:font-semibold:first-child{
  font-weight: 600;
}

.first\:font-bold:first-child{
  font-weight: 700;
}

.first\:font-extrabold:first-child{
  font-weight: 800;
}

.first\:font-black:first-child{
  font-weight: 900;
}

.last\:font-hairline:last-child{
  font-weight: 100;
}

.last\:font-thin:last-child{
  font-weight: 200;
}

.last\:font-light:last-child{
  font-weight: 300;
}

.last\:font-normal:last-child{
  font-weight: 400;
}

.last\:font-medium:last-child{
  font-weight: 500;
}

.last\:font-semibold:last-child{
  font-weight: 600;
}

.last\:font-bold:last-child{
  font-weight: 700;
}

.last\:font-extrabold:last-child{
  font-weight: 800;
}

.last\:font-black:last-child{
  font-weight: 900;
}

.h-0{
  height: 0;
}

.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-8{
  height: 2rem;
}

.h-10{
  height: 2.5rem;
}

.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-40{
  height: 10rem;
}

.h-48{
  height: 12rem;
}

.h-56{
  height: 14rem;
}

.h-64{
  height: 16rem;
}

.h-auto{
  height: auto;
}

.h-px{
  height: 1px;
}

.h-full{
  height: 100%;
}

.h-screen{
  height: 100vh;
}

.hover\:h-0:hover{
  height: 0;
}

.hover\:h-1:hover{
  height: 0.25rem;
}

.hover\:h-2:hover{
  height: 0.5rem;
}

.hover\:h-3:hover{
  height: 0.75rem;
}

.hover\:h-4:hover{
  height: 1rem;
}

.hover\:h-5:hover{
  height: 1.25rem;
}

.hover\:h-6:hover{
  height: 1.5rem;
}

.hover\:h-8:hover{
  height: 2rem;
}

.hover\:h-10:hover{
  height: 2.5rem;
}

.hover\:h-12:hover{
  height: 3rem;
}

.hover\:h-14:hover{
  height: 3.5rem;
}

.hover\:h-16:hover{
  height: 4rem;
}

.hover\:h-20:hover{
  height: 5rem;
}

.hover\:h-24:hover{
  height: 6rem;
}

.hover\:h-28:hover{
  height: 7rem;
}

.hover\:h-32:hover{
  height: 8rem;
}

.hover\:h-40:hover{
  height: 10rem;
}

.hover\:h-48:hover{
  height: 12rem;
}

.hover\:h-56:hover{
  height: 14rem;
}

.hover\:h-64:hover{
  height: 16rem;
}

.hover\:h-auto:hover{
  height: auto;
}

.hover\:h-px:hover{
  height: 1px;
}

.hover\:h-full:hover{
  height: 100%;
}

.hover\:h-screen:hover{
  height: 100vh;
}

.focus\:h-0:focus{
  height: 0;
}

.focus\:h-1:focus{
  height: 0.25rem;
}

.focus\:h-2:focus{
  height: 0.5rem;
}

.focus\:h-3:focus{
  height: 0.75rem;
}

.focus\:h-4:focus{
  height: 1rem;
}

.focus\:h-5:focus{
  height: 1.25rem;
}

.focus\:h-6:focus{
  height: 1.5rem;
}

.focus\:h-8:focus{
  height: 2rem;
}

.focus\:h-10:focus{
  height: 2.5rem;
}

.focus\:h-12:focus{
  height: 3rem;
}

.focus\:h-14:focus{
  height: 3.5rem;
}

.focus\:h-16:focus{
  height: 4rem;
}

.focus\:h-20:focus{
  height: 5rem;
}

.focus\:h-24:focus{
  height: 6rem;
}

.focus\:h-28:focus{
  height: 7rem;
}

.focus\:h-32:focus{
  height: 8rem;
}

.focus\:h-40:focus{
  height: 10rem;
}

.focus\:h-48:focus{
  height: 12rem;
}

.focus\:h-56:focus{
  height: 14rem;
}

.focus\:h-64:focus{
  height: 16rem;
}

.focus\:h-auto:focus{
  height: auto;
}

.focus\:h-px:focus{
  height: 1px;
}

.focus\:h-full:focus{
  height: 100%;
}

.focus\:h-screen:focus{
  height: 100vh;
}

.active\:h-0:active{
  height: 0;
}

.active\:h-1:active{
  height: 0.25rem;
}

.active\:h-2:active{
  height: 0.5rem;
}

.active\:h-3:active{
  height: 0.75rem;
}

.active\:h-4:active{
  height: 1rem;
}

.active\:h-5:active{
  height: 1.25rem;
}

.active\:h-6:active{
  height: 1.5rem;
}

.active\:h-8:active{
  height: 2rem;
}

.active\:h-10:active{
  height: 2.5rem;
}

.active\:h-12:active{
  height: 3rem;
}

.active\:h-14:active{
  height: 3.5rem;
}

.active\:h-16:active{
  height: 4rem;
}

.active\:h-20:active{
  height: 5rem;
}

.active\:h-24:active{
  height: 6rem;
}

.active\:h-28:active{
  height: 7rem;
}

.active\:h-32:active{
  height: 8rem;
}

.active\:h-40:active{
  height: 10rem;
}

.active\:h-48:active{
  height: 12rem;
}

.active\:h-56:active{
  height: 14rem;
}

.active\:h-64:active{
  height: 16rem;
}

.active\:h-auto:active{
  height: auto;
}

.active\:h-px:active{
  height: 1px;
}

.active\:h-full:active{
  height: 100%;
}

.active\:h-screen:active{
  height: 100vh;
}

.first\:h-0:first-child{
  height: 0;
}

.first\:h-1:first-child{
  height: 0.25rem;
}

.first\:h-2:first-child{
  height: 0.5rem;
}

.first\:h-3:first-child{
  height: 0.75rem;
}

.first\:h-4:first-child{
  height: 1rem;
}

.first\:h-5:first-child{
  height: 1.25rem;
}

.first\:h-6:first-child{
  height: 1.5rem;
}

.first\:h-8:first-child{
  height: 2rem;
}

.first\:h-10:first-child{
  height: 2.5rem;
}

.first\:h-12:first-child{
  height: 3rem;
}

.first\:h-14:first-child{
  height: 3.5rem;
}

.first\:h-16:first-child{
  height: 4rem;
}

.first\:h-20:first-child{
  height: 5rem;
}

.first\:h-24:first-child{
  height: 6rem;
}

.first\:h-28:first-child{
  height: 7rem;
}

.first\:h-32:first-child{
  height: 8rem;
}

.first\:h-40:first-child{
  height: 10rem;
}

.first\:h-48:first-child{
  height: 12rem;
}

.first\:h-56:first-child{
  height: 14rem;
}

.first\:h-64:first-child{
  height: 16rem;
}

.first\:h-auto:first-child{
  height: auto;
}

.first\:h-px:first-child{
  height: 1px;
}

.first\:h-full:first-child{
  height: 100%;
}

.first\:h-screen:first-child{
  height: 100vh;
}

.last\:h-0:last-child{
  height: 0;
}

.last\:h-1:last-child{
  height: 0.25rem;
}

.last\:h-2:last-child{
  height: 0.5rem;
}

.last\:h-3:last-child{
  height: 0.75rem;
}

.last\:h-4:last-child{
  height: 1rem;
}

.last\:h-5:last-child{
  height: 1.25rem;
}

.last\:h-6:last-child{
  height: 1.5rem;
}

.last\:h-8:last-child{
  height: 2rem;
}

.last\:h-10:last-child{
  height: 2.5rem;
}

.last\:h-12:last-child{
  height: 3rem;
}

.last\:h-14:last-child{
  height: 3.5rem;
}

.last\:h-16:last-child{
  height: 4rem;
}

.last\:h-20:last-child{
  height: 5rem;
}

.last\:h-24:last-child{
  height: 6rem;
}

.last\:h-28:last-child{
  height: 7rem;
}

.last\:h-32:last-child{
  height: 8rem;
}

.last\:h-40:last-child{
  height: 10rem;
}

.last\:h-48:last-child{
  height: 12rem;
}

.last\:h-56:last-child{
  height: 14rem;
}

.last\:h-64:last-child{
  height: 16rem;
}

.last\:h-auto:last-child{
  height: auto;
}

.last\:h-px:last-child{
  height: 1px;
}

.last\:h-full:last-child{
  height: 100%;
}

.last\:h-screen:last-child{
  height: 100vh;
}

.text-xxxxxs{
  font-size: 0.3125rem;
}

.text-xxxxs{
  font-size: 0.375rem;
}

.text-xxxs{
  font-size: 0.5rem;
}

.text-xxs{
  font-size: 0.625rem;
}

.text-xs{
  font-size: 0.75rem;
}

.text-sm{
  font-size: 0.875rem;
}

.text-base{
  font-size: 1rem;
}

.text-lg{
  font-size: 1.125rem;
}

.text-xl{
  font-size: 1.5rem;
}

.text-2xl{
  font-size: 2rem;
}

.text-3xl{
  font-size: 3rem;
}

.text-4xl{
  font-size: 3.75rem;
}

.text-5xl{
  font-size: 6rem;
}

.hover\:text-xxxxxs:hover{
  font-size: 0.3125rem;
}

.hover\:text-xxxxs:hover{
  font-size: 0.375rem;
}

.hover\:text-xxxs:hover{
  font-size: 0.5rem;
}

.hover\:text-xxs:hover{
  font-size: 0.625rem;
}

.hover\:text-xs:hover{
  font-size: 0.75rem;
}

.hover\:text-sm:hover{
  font-size: 0.875rem;
}

.hover\:text-base:hover{
  font-size: 1rem;
}

.hover\:text-lg:hover{
  font-size: 1.125rem;
}

.hover\:text-xl:hover{
  font-size: 1.5rem;
}

.hover\:text-2xl:hover{
  font-size: 2rem;
}

.hover\:text-3xl:hover{
  font-size: 3rem;
}

.hover\:text-4xl:hover{
  font-size: 3.75rem;
}

.hover\:text-5xl:hover{
  font-size: 6rem;
}

.focus\:text-xxxxxs:focus{
  font-size: 0.3125rem;
}

.focus\:text-xxxxs:focus{
  font-size: 0.375rem;
}

.focus\:text-xxxs:focus{
  font-size: 0.5rem;
}

.focus\:text-xxs:focus{
  font-size: 0.625rem;
}

.focus\:text-xs:focus{
  font-size: 0.75rem;
}

.focus\:text-sm:focus{
  font-size: 0.875rem;
}

.focus\:text-base:focus{
  font-size: 1rem;
}

.focus\:text-lg:focus{
  font-size: 1.125rem;
}

.focus\:text-xl:focus{
  font-size: 1.5rem;
}

.focus\:text-2xl:focus{
  font-size: 2rem;
}

.focus\:text-3xl:focus{
  font-size: 3rem;
}

.focus\:text-4xl:focus{
  font-size: 3.75rem;
}

.focus\:text-5xl:focus{
  font-size: 6rem;
}

.active\:text-xxxxxs:active{
  font-size: 0.3125rem;
}

.active\:text-xxxxs:active{
  font-size: 0.375rem;
}

.active\:text-xxxs:active{
  font-size: 0.5rem;
}

.active\:text-xxs:active{
  font-size: 0.625rem;
}

.active\:text-xs:active{
  font-size: 0.75rem;
}

.active\:text-sm:active{
  font-size: 0.875rem;
}

.active\:text-base:active{
  font-size: 1rem;
}

.active\:text-lg:active{
  font-size: 1.125rem;
}

.active\:text-xl:active{
  font-size: 1.5rem;
}

.active\:text-2xl:active{
  font-size: 2rem;
}

.active\:text-3xl:active{
  font-size: 3rem;
}

.active\:text-4xl:active{
  font-size: 3.75rem;
}

.active\:text-5xl:active{
  font-size: 6rem;
}

.first\:text-xxxxxs:first-child{
  font-size: 0.3125rem;
}

.first\:text-xxxxs:first-child{
  font-size: 0.375rem;
}

.first\:text-xxxs:first-child{
  font-size: 0.5rem;
}

.first\:text-xxs:first-child{
  font-size: 0.625rem;
}

.first\:text-xs:first-child{
  font-size: 0.75rem;
}

.first\:text-sm:first-child{
  font-size: 0.875rem;
}

.first\:text-base:first-child{
  font-size: 1rem;
}

.first\:text-lg:first-child{
  font-size: 1.125rem;
}

.first\:text-xl:first-child{
  font-size: 1.5rem;
}

.first\:text-2xl:first-child{
  font-size: 2rem;
}

.first\:text-3xl:first-child{
  font-size: 3rem;
}

.first\:text-4xl:first-child{
  font-size: 3.75rem;
}

.first\:text-5xl:first-child{
  font-size: 6rem;
}

.last\:text-xxxxxs:last-child{
  font-size: 0.3125rem;
}

.last\:text-xxxxs:last-child{
  font-size: 0.375rem;
}

.last\:text-xxxs:last-child{
  font-size: 0.5rem;
}

.last\:text-xxs:last-child{
  font-size: 0.625rem;
}

.last\:text-xs:last-child{
  font-size: 0.75rem;
}

.last\:text-sm:last-child{
  font-size: 0.875rem;
}

.last\:text-base:last-child{
  font-size: 1rem;
}

.last\:text-lg:last-child{
  font-size: 1.125rem;
}

.last\:text-xl:last-child{
  font-size: 1.5rem;
}

.last\:text-2xl:last-child{
  font-size: 2rem;
}

.last\:text-3xl:last-child{
  font-size: 3rem;
}

.last\:text-4xl:last-child{
  font-size: 3.75rem;
}

.last\:text-5xl:last-child{
  font-size: 6rem;
}

.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;
}

.leading-snug{
  line-height: 1.375;
}

.leading-normal{
  line-height: 1.5;
}

.leading-relaxed{
  line-height: 1.625;
}

.leading-loose{
  line-height: 2;
}

.leading-error{
  line-height: 1.333;
}

.hover\:leading-3:hover{
  line-height: .75rem;
}

.hover\:leading-4:hover{
  line-height: 1rem;
}

.hover\:leading-5:hover{
  line-height: 1.25rem;
}

.hover\:leading-6:hover{
  line-height: 1.5rem;
}

.hover\:leading-7:hover{
  line-height: 1.75rem;
}

.hover\:leading-8:hover{
  line-height: 2rem;
}

.hover\:leading-9:hover{
  line-height: 2.25rem;
}

.hover\:leading-10:hover{
  line-height: 2.5rem;
}

.hover\:leading-none:hover{
  line-height: 1;
}

.hover\:leading-tight:hover{
  line-height: 1;
}

.hover\:leading-snug:hover{
  line-height: 1.375;
}

.hover\:leading-normal:hover{
  line-height: 1.5;
}

.hover\:leading-relaxed:hover{
  line-height: 1.625;
}

.hover\:leading-loose:hover{
  line-height: 2;
}

.hover\:leading-error:hover{
  line-height: 1.333;
}

.focus\:leading-3:focus{
  line-height: .75rem;
}

.focus\:leading-4:focus{
  line-height: 1rem;
}

.focus\:leading-5:focus{
  line-height: 1.25rem;
}

.focus\:leading-6:focus{
  line-height: 1.5rem;
}

.focus\:leading-7:focus{
  line-height: 1.75rem;
}

.focus\:leading-8:focus{
  line-height: 2rem;
}

.focus\:leading-9:focus{
  line-height: 2.25rem;
}

.focus\:leading-10:focus{
  line-height: 2.5rem;
}

.focus\:leading-none:focus{
  line-height: 1;
}

.focus\:leading-tight:focus{
  line-height: 1;
}

.focus\:leading-snug:focus{
  line-height: 1.375;
}

.focus\:leading-normal:focus{
  line-height: 1.5;
}

.focus\:leading-relaxed:focus{
  line-height: 1.625;
}

.focus\:leading-loose:focus{
  line-height: 2;
}

.focus\:leading-error:focus{
  line-height: 1.333;
}

.active\:leading-3:active{
  line-height: .75rem;
}

.active\:leading-4:active{
  line-height: 1rem;
}

.active\:leading-5:active{
  line-height: 1.25rem;
}

.active\:leading-6:active{
  line-height: 1.5rem;
}

.active\:leading-7:active{
  line-height: 1.75rem;
}

.active\:leading-8:active{
  line-height: 2rem;
}

.active\:leading-9:active{
  line-height: 2.25rem;
}

.active\:leading-10:active{
  line-height: 2.5rem;
}

.active\:leading-none:active{
  line-height: 1;
}

.active\:leading-tight:active{
  line-height: 1;
}

.active\:leading-snug:active{
  line-height: 1.375;
}

.active\:leading-normal:active{
  line-height: 1.5;
}

.active\:leading-relaxed:active{
  line-height: 1.625;
}

.active\:leading-loose:active{
  line-height: 2;
}

.active\:leading-error:active{
  line-height: 1.333;
}

.first\:leading-3:first-child{
  line-height: .75rem;
}

.first\:leading-4:first-child{
  line-height: 1rem;
}

.first\:leading-5:first-child{
  line-height: 1.25rem;
}

.first\:leading-6:first-child{
  line-height: 1.5rem;
}

.first\:leading-7:first-child{
  line-height: 1.75rem;
}

.first\:leading-8:first-child{
  line-height: 2rem;
}

.first\:leading-9:first-child{
  line-height: 2.25rem;
}

.first\:leading-10:first-child{
  line-height: 2.5rem;
}

.first\:leading-none:first-child{
  line-height: 1;
}

.first\:leading-tight:first-child{
  line-height: 1;
}

.first\:leading-snug:first-child{
  line-height: 1.375;
}

.first\:leading-normal:first-child{
  line-height: 1.5;
}

.first\:leading-relaxed:first-child{
  line-height: 1.625;
}

.first\:leading-loose:first-child{
  line-height: 2;
}

.first\:leading-error:first-child{
  line-height: 1.333;
}

.last\:leading-3:last-child{
  line-height: .75rem;
}

.last\:leading-4:last-child{
  line-height: 1rem;
}

.last\:leading-5:last-child{
  line-height: 1.25rem;
}

.last\:leading-6:last-child{
  line-height: 1.5rem;
}

.last\:leading-7:last-child{
  line-height: 1.75rem;
}

.last\:leading-8:last-child{
  line-height: 2rem;
}

.last\:leading-9:last-child{
  line-height: 2.25rem;
}

.last\:leading-10:last-child{
  line-height: 2.5rem;
}

.last\:leading-none:last-child{
  line-height: 1;
}

.last\:leading-tight:last-child{
  line-height: 1;
}

.last\:leading-snug:last-child{
  line-height: 1.375;
}

.last\:leading-normal:last-child{
  line-height: 1.5;
}

.last\:leading-relaxed:last-child{
  line-height: 1.625;
}

.last\:leading-loose:last-child{
  line-height: 2;
}

.last\:leading-error:last-child{
  line-height: 1.333;
}

.list-inside{
  list-style-position: inside;
}

.list-outside{
  list-style-position: outside;
}

.hover\:list-inside:hover{
  list-style-position: inside;
}

.hover\:list-outside:hover{
  list-style-position: outside;
}

.focus\:list-inside:focus{
  list-style-position: inside;
}

.focus\:list-outside:focus{
  list-style-position: outside;
}

.active\:list-inside:active{
  list-style-position: inside;
}

.active\:list-outside:active{
  list-style-position: outside;
}

.first\:list-inside:first-child{
  list-style-position: inside;
}

.first\:list-outside:first-child{
  list-style-position: outside;
}

.last\:list-inside:last-child{
  list-style-position: inside;
}

.last\:list-outside:last-child{
  list-style-position: outside;
}

.list-none{
  list-style-type: none;
}

.list-disc{
  list-style-type: disc;
}

.list-decimal{
  list-style-type: decimal;
}

.hover\:list-none:hover{
  list-style-type: none;
}

.hover\:list-disc:hover{
  list-style-type: disc;
}

.hover\:list-decimal:hover{
  list-style-type: decimal;
}

.focus\:list-none:focus{
  list-style-type: none;
}

.focus\:list-disc:focus{
  list-style-type: disc;
}

.focus\:list-decimal:focus{
  list-style-type: decimal;
}

.active\:list-none:active{
  list-style-type: none;
}

.active\:list-disc:active{
  list-style-type: disc;
}

.active\:list-decimal:active{
  list-style-type: decimal;
}

.first\:list-none:first-child{
  list-style-type: none;
}

.first\:list-disc:first-child{
  list-style-type: disc;
}

.first\:list-decimal:first-child{
  list-style-type: decimal;
}

.last\:list-none:last-child{
  list-style-type: none;
}

.last\:list-disc:last-child{
  list-style-type: disc;
}

.last\:list-decimal:last-child{
  list-style-type: decimal;
}

.m-0{
  margin: 0;
}

.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-10{
  margin: 2.5rem;
}

.m-12{
  margin: 3rem;
}

.m-14{
  margin: 3.5rem;
}

.m-16{
  margin: 4rem;
}

.m-18{
  margin: 4.5rem;
}

.m-20{
  margin: 5rem;
}

.m-24{
  margin: 6rem;
}

.m-32{
  margin: 8rem;
}

.m-40{
  margin: 10rem;
}

.m-48{
  margin: 12rem;
}

.m-56{
  margin: 14rem;
}

.m-64{
  margin: 16rem;
}

.m-auto{
  margin: auto;
}

.m-px{
  margin: 1px;
}

.-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-8{
  margin: -2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.m-bin{
  margin: -0.313rem;
}

.-m-0\.25{
  margin: -0.0625rem;
}

.m-0\.25{
  margin: 0.0625rem;
}

.m-3\.125{
  margin: 3.125rem;
}

.m-modal{
  margin: 6.25rem;
}

.m-sidebar{
  margin: 25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-auto{
  margin-top: auto;
  margin-bottom: auto;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-bin{
  margin-top: -0.313rem;
  margin-bottom: -0.313rem;
}

.mx-bin{
  margin-left: -0.313rem;
  margin-right: -0.313rem;
}

.-my-0\.25{
  margin-top: -0.0625rem;
  margin-bottom: -0.0625rem;
}

.-mx-0\.25{
  margin-left: -0.0625rem;
  margin-right: -0.0625rem;
}

.my-0\.25{
  margin-top: 0.0625rem;
  margin-bottom: 0.0625rem;
}

.mx-0\.25{
  margin-left: 0.0625rem;
  margin-right: 0.0625rem;
}

.my-3\.125{
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.mx-3\.125{
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}

.my-modal{
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

.mx-modal{
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}

.my-sidebar{
  margin-top: 25rem;
  margin-bottom: 25rem;
}

.mx-sidebar{
  margin-left: 25rem;
  margin-right: 25rem;
}

.mt-0{
  margin-top: 0;
}

.mr-0{
  margin-right: 0;
}

.mb-0{
  margin-bottom: 0;
}

.ml-0{
  margin-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-18{
  margin-top: 4.5rem;
}

.mr-18{
  margin-right: 4.5rem;
}

.mb-18{
  margin-bottom: 4.5rem;
}

.ml-18{
  margin-left: 4.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-auto{
  margin-top: auto;
}

.mr-auto{
  margin-right: auto;
}

.mb-auto{
  margin-bottom: auto;
}

.ml-auto{
  margin-left: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-bin{
  margin-top: -0.313rem;
}

.mr-bin{
  margin-right: -0.313rem;
}

.mb-bin{
  margin-bottom: -0.313rem;
}

.ml-bin{
  margin-left: -0.313rem;
}

.-mt-0\.25{
  margin-top: -0.0625rem;
}

.-mr-0\.25{
  margin-right: -0.0625rem;
}

.-mb-0\.25{
  margin-bottom: -0.0625rem;
}

.-ml-0\.25{
  margin-left: -0.0625rem;
}

.mt-0\.25{
  margin-top: 0.0625rem;
}

.mr-0\.25{
  margin-right: 0.0625rem;
}

.mb-0\.25{
  margin-bottom: 0.0625rem;
}

.ml-0\.25{
  margin-left: 0.0625rem;
}

.mt-3\.125{
  margin-top: 3.125rem;
}

.mr-3\.125{
  margin-right: 3.125rem;
}

.mb-3\.125{
  margin-bottom: 3.125rem;
}

.ml-3\.125{
  margin-left: 3.125rem;
}

.mt-modal{
  margin-top: 6.25rem;
}

.mr-modal{
  margin-right: 6.25rem;
}

.mb-modal{
  margin-bottom: 6.25rem;
}

.ml-modal{
  margin-left: 6.25rem;
}

.mt-sidebar{
  margin-top: 25rem;
}

.mr-sidebar{
  margin-right: 25rem;
}

.mb-sidebar{
  margin-bottom: 25rem;
}

.ml-sidebar{
  margin-left: 25rem;
}

.hover\:m-0:hover{
  margin: 0;
}

.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-10:hover{
  margin: 2.5rem;
}

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

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

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

.hover\:m-18:hover{
  margin: 4.5rem;
}

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

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

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

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

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

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

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

.hover\:m-auto:hover{
  margin: auto;
}

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

.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-8:hover{
  margin: -2rem;
}

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

.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-32:hover{
  margin: -8rem;
}

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

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

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

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

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

.hover\:m-bin:hover{
  margin: -0.313rem;
}

.hover\:-m-0\.25:hover{
  margin: -0.0625rem;
}

.hover\:m-0\.25:hover{
  margin: 0.0625rem;
}

.hover\:m-3\.125:hover{
  margin: 3.125rem;
}

.hover\:m-modal:hover{
  margin: 6.25rem;
}

.hover\:m-sidebar:hover{
  margin: 25rem;
}

.hover\:my-0:hover{
  margin-top: 0;
  margin-bottom: 0;
}

.hover\:mx-0:hover{
  margin-left: 0;
  margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover\:my-18:hover{
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

.hover\:mx-18:hover{
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover\:my-auto:hover{
  margin-top: auto;
  margin-bottom: auto;
}

.hover\:mx-auto:hover{
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover\:my-bin:hover{
  margin-top: -0.313rem;
  margin-bottom: -0.313rem;
}

.hover\:mx-bin:hover{
  margin-left: -0.313rem;
  margin-right: -0.313rem;
}

.hover\:-my-0\.25:hover{
  margin-top: -0.0625rem;
  margin-bottom: -0.0625rem;
}

.hover\:-mx-0\.25:hover{
  margin-left: -0.0625rem;
  margin-right: -0.0625rem;
}

.hover\:my-0\.25:hover{
  margin-top: 0.0625rem;
  margin-bottom: 0.0625rem;
}

.hover\:mx-0\.25:hover{
  margin-left: 0.0625rem;
  margin-right: 0.0625rem;
}

.hover\:my-3\.125:hover{
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.hover\:mx-3\.125:hover{
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}

.hover\:my-modal:hover{
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

.hover\:mx-modal:hover{
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}

.hover\:my-sidebar:hover{
  margin-top: 25rem;
  margin-bottom: 25rem;
}

.hover\:mx-sidebar:hover{
  margin-left: 25rem;
  margin-right: 25rem;
}

.hover\:mt-0:hover{
  margin-top: 0;
}

.hover\:mr-0:hover{
  margin-right: 0;
}

.hover\:mb-0:hover{
  margin-bottom: 0;
}

.hover\:ml-0:hover{
  margin-left: 0;
}

.hover\:mt-1:hover{
  margin-top: 0.25rem;
}

.hover\:mr-1:hover{
  margin-right: 0.25rem;
}

.hover\:mb-1:hover{
  margin-bottom: 0.25rem;
}

.hover\:ml-1:hover{
  margin-left: 0.25rem;
}

.hover\:mt-2:hover{
  margin-top: 0.5rem;
}

.hover\:mr-2:hover{
  margin-right: 0.5rem;
}

.hover\:mb-2:hover{
  margin-bottom: 0.5rem;
}

.hover\:ml-2:hover{
  margin-left: 0.5rem;
}

.hover\:mt-3:hover{
  margin-top: 0.75rem;
}

.hover\:mr-3:hover{
  margin-right: 0.75rem;
}

.hover\:mb-3:hover{
  margin-bottom: 0.75rem;
}

.hover\:ml-3:hover{
  margin-left: 0.75rem;
}

.hover\:mt-4:hover{
  margin-top: 1rem;
}

.hover\:mr-4:hover{
  margin-right: 1rem;
}

.hover\:mb-4:hover{
  margin-bottom: 1rem;
}

.hover\:ml-4:hover{
  margin-left: 1rem;
}

.hover\:mt-5:hover{
  margin-top: 1.25rem;
}

.hover\:mr-5:hover{
  margin-right: 1.25rem;
}

.hover\:mb-5:hover{
  margin-bottom: 1.25rem;
}

.hover\:ml-5:hover{
  margin-left: 1.25rem;
}

.hover\:mt-6:hover{
  margin-top: 1.5rem;
}

.hover\:mr-6:hover{
  margin-right: 1.5rem;
}

.hover\:mb-6:hover{
  margin-bottom: 1.5rem;
}

.hover\:ml-6:hover{
  margin-left: 1.5rem;
}

.hover\:mt-7:hover{
  margin-top: 1.75rem;
}

.hover\:mr-7:hover{
  margin-right: 1.75rem;
}

.hover\:mb-7:hover{
  margin-bottom: 1.75rem;
}

.hover\:ml-7:hover{
  margin-left: 1.75rem;
}

.hover\:mt-8:hover{
  margin-top: 2rem;
}

.hover\:mr-8:hover{
  margin-right: 2rem;
}

.hover\:mb-8:hover{
  margin-bottom: 2rem;
}

.hover\:ml-8:hover{
  margin-left: 2rem;
}

.hover\:mt-10:hover{
  margin-top: 2.5rem;
}

.hover\:mr-10:hover{
  margin-right: 2.5rem;
}

.hover\:mb-10:hover{
  margin-bottom: 2.5rem;
}

.hover\:ml-10:hover{
  margin-left: 2.5rem;
}

.hover\:mt-12:hover{
  margin-top: 3rem;
}

.hover\:mr-12:hover{
  margin-right: 3rem;
}

.hover\:mb-12:hover{
  margin-bottom: 3rem;
}

.hover\:ml-12:hover{
  margin-left: 3rem;
}

.hover\:mt-14:hover{
  margin-top: 3.5rem;
}

.hover\:mr-14:hover{
  margin-right: 3.5rem;
}

.hover\:mb-14:hover{
  margin-bottom: 3.5rem;
}

.hover\:ml-14:hover{
  margin-left: 3.5rem;
}

.hover\:mt-16:hover{
  margin-top: 4rem;
}

.hover\:mr-16:hover{
  margin-right: 4rem;
}

.hover\:mb-16:hover{
  margin-bottom: 4rem;
}

.hover\:ml-16:hover{
  margin-left: 4rem;
}

.hover\:mt-18:hover{
  margin-top: 4.5rem;
}

.hover\:mr-18:hover{
  margin-right: 4.5rem;
}

.hover\:mb-18:hover{
  margin-bottom: 4.5rem;
}

.hover\:ml-18:hover{
  margin-left: 4.5rem;
}

.hover\:mt-20:hover{
  margin-top: 5rem;
}

.hover\:mr-20:hover{
  margin-right: 5rem;
}

.hover\:mb-20:hover{
  margin-bottom: 5rem;
}

.hover\:ml-20:hover{
  margin-left: 5rem;
}

.hover\:mt-24:hover{
  margin-top: 6rem;
}

.hover\:mr-24:hover{
  margin-right: 6rem;
}

.hover\:mb-24:hover{
  margin-bottom: 6rem;
}

.hover\:ml-24:hover{
  margin-left: 6rem;
}

.hover\:mt-32:hover{
  margin-top: 8rem;
}

.hover\:mr-32:hover{
  margin-right: 8rem;
}

.hover\:mb-32:hover{
  margin-bottom: 8rem;
}

.hover\:ml-32:hover{
  margin-left: 8rem;
}

.hover\:mt-40:hover{
  margin-top: 10rem;
}

.hover\:mr-40:hover{
  margin-right: 10rem;
}

.hover\:mb-40:hover{
  margin-bottom: 10rem;
}

.hover\:ml-40:hover{
  margin-left: 10rem;
}

.hover\:mt-48:hover{
  margin-top: 12rem;
}

.hover\:mr-48:hover{
  margin-right: 12rem;
}

.hover\:mb-48:hover{
  margin-bottom: 12rem;
}

.hover\:ml-48:hover{
  margin-left: 12rem;
}

.hover\:mt-56:hover{
  margin-top: 14rem;
}

.hover\:mr-56:hover{
  margin-right: 14rem;
}

.hover\:mb-56:hover{
  margin-bottom: 14rem;
}

.hover\:ml-56:hover{
  margin-left: 14rem;
}

.hover\:mt-64:hover{
  margin-top: 16rem;
}

.hover\:mr-64:hover{
  margin-right: 16rem;
}

.hover\:mb-64:hover{
  margin-bottom: 16rem;
}

.hover\:ml-64:hover{
  margin-left: 16rem;
}

.hover\:mt-auto:hover{
  margin-top: auto;
}

.hover\:mr-auto:hover{
  margin-right: auto;
}

.hover\:mb-auto:hover{
  margin-bottom: auto;
}

.hover\:ml-auto:hover{
  margin-left: auto;
}

.hover\:mt-px:hover{
  margin-top: 1px;
}

.hover\:mr-px:hover{
  margin-right: 1px;
}

.hover\:mb-px:hover{
  margin-bottom: 1px;
}

.hover\:ml-px:hover{
  margin-left: 1px;
}

.hover\:-mt-1:hover{
  margin-top: -0.25rem;
}

.hover\:-mr-1:hover{
  margin-right: -0.25rem;
}

.hover\:-mb-1:hover{
  margin-bottom: -0.25rem;
}

.hover\:-ml-1:hover{
  margin-left: -0.25rem;
}

.hover\:-mt-2:hover{
  margin-top: -0.5rem;
}

.hover\:-mr-2:hover{
  margin-right: -0.5rem;
}

.hover\:-mb-2:hover{
  margin-bottom: -0.5rem;
}

.hover\:-ml-2:hover{
  margin-left: -0.5rem;
}

.hover\:-mt-3:hover{
  margin-top: -0.75rem;
}

.hover\:-mr-3:hover{
  margin-right: -0.75rem;
}

.hover\:-mb-3:hover{
  margin-bottom: -0.75rem;
}

.hover\:-ml-3:hover{
  margin-left: -0.75rem;
}

.hover\:-mt-4:hover{
  margin-top: -1rem;
}

.hover\:-mr-4:hover{
  margin-right: -1rem;
}

.hover\:-mb-4:hover{
  margin-bottom: -1rem;
}

.hover\:-ml-4:hover{
  margin-left: -1rem;
}

.hover\:-mt-5:hover{
  margin-top: -1.25rem;
}

.hover\:-mr-5:hover{
  margin-right: -1.25rem;
}

.hover\:-mb-5:hover{
  margin-bottom: -1.25rem;
}

.hover\:-ml-5:hover{
  margin-left: -1.25rem;
}

.hover\:-mt-6:hover{
  margin-top: -1.5rem;
}

.hover\:-mr-6:hover{
  margin-right: -1.5rem;
}

.hover\:-mb-6:hover{
  margin-bottom: -1.5rem;
}

.hover\:-ml-6:hover{
  margin-left: -1.5rem;
}

.hover\:-mt-8:hover{
  margin-top: -2rem;
}

.hover\:-mr-8:hover{
  margin-right: -2rem;
}

.hover\:-mb-8:hover{
  margin-bottom: -2rem;
}

.hover\:-ml-8:hover{
  margin-left: -2rem;
}

.hover\:-mt-10:hover{
  margin-top: -2.5rem;
}

.hover\:-mr-10:hover{
  margin-right: -2.5rem;
}

.hover\:-mb-10:hover{
  margin-bottom: -2.5rem;
}

.hover\:-ml-10:hover{
  margin-left: -2.5rem;
}

.hover\:-mt-12:hover{
  margin-top: -3rem;
}

.hover\:-mr-12:hover{
  margin-right: -3rem;
}

.hover\:-mb-12:hover{
  margin-bottom: -3rem;
}

.hover\:-ml-12:hover{
  margin-left: -3rem;
}

.hover\:-mt-14:hover{
  margin-top: -3.5rem;
}

.hover\:-mr-14:hover{
  margin-right: -3.5rem;
}

.hover\:-mb-14:hover{
  margin-bottom: -3.5rem;
}

.hover\:-ml-14:hover{
  margin-left: -3.5rem;
}

.hover\:-mt-16:hover{
  margin-top: -4rem;
}

.hover\:-mr-16:hover{
  margin-right: -4rem;
}

.hover\:-mb-16:hover{
  margin-bottom: -4rem;
}

.hover\:-ml-16:hover{
  margin-left: -4rem;
}

.hover\:-mt-20:hover{
  margin-top: -5rem;
}

.hover\:-mr-20:hover{
  margin-right: -5rem;
}

.hover\:-mb-20:hover{
  margin-bottom: -5rem;
}

.hover\:-ml-20:hover{
  margin-left: -5rem;
}

.hover\:-mt-24:hover{
  margin-top: -6rem;
}

.hover\:-mr-24:hover{
  margin-right: -6rem;
}

.hover\:-mb-24:hover{
  margin-bottom: -6rem;
}

.hover\:-ml-24:hover{
  margin-left: -6rem;
}

.hover\:-mt-32:hover{
  margin-top: -8rem;
}

.hover\:-mr-32:hover{
  margin-right: -8rem;
}

.hover\:-mb-32:hover{
  margin-bottom: -8rem;
}

.hover\:-ml-32:hover{
  margin-left: -8rem;
}

.hover\:-mt-40:hover{
  margin-top: -10rem;
}

.hover\:-mr-40:hover{
  margin-right: -10rem;
}

.hover\:-mb-40:hover{
  margin-bottom: -10rem;
}

.hover\:-ml-40:hover{
  margin-left: -10rem;
}

.hover\:-mt-48:hover{
  margin-top: -12rem;
}

.hover\:-mr-48:hover{
  margin-right: -12rem;
}

.hover\:-mb-48:hover{
  margin-bottom: -12rem;
}

.hover\:-ml-48:hover{
  margin-left: -12rem;
}

.hover\:-mt-56:hover{
  margin-top: -14rem;
}

.hover\:-mr-56:hover{
  margin-right: -14rem;
}

.hover\:-mb-56:hover{
  margin-bottom: -14rem;
}

.hover\:-ml-56:hover{
  margin-left: -14rem;
}

.hover\:-mt-64:hover{
  margin-top: -16rem;
}

.hover\:-mr-64:hover{
  margin-right: -16rem;
}

.hover\:-mb-64:hover{
  margin-bottom: -16rem;
}

.hover\:-ml-64:hover{
  margin-left: -16rem;
}

.hover\:-mt-px:hover{
  margin-top: -1px;
}

.hover\:-mr-px:hover{
  margin-right: -1px;
}

.hover\:-mb-px:hover{
  margin-bottom: -1px;
}

.hover\:-ml-px:hover{
  margin-left: -1px;
}

.hover\:mt-bin:hover{
  margin-top: -0.313rem;
}

.hover\:mr-bin:hover{
  margin-right: -0.313rem;
}

.hover\:mb-bin:hover{
  margin-bottom: -0.313rem;
}

.hover\:ml-bin:hover{
  margin-left: -0.313rem;
}

.hover\:-mt-0\.25:hover{
  margin-top: -0.0625rem;
}

.hover\:-mr-0\.25:hover{
  margin-right: -0.0625rem;
}

.hover\:-mb-0\.25:hover{
  margin-bottom: -0.0625rem;
}

.hover\:-ml-0\.25:hover{
  margin-left: -0.0625rem;
}

.hover\:mt-0\.25:hover{
  margin-top: 0.0625rem;
}

.hover\:mr-0\.25:hover{
  margin-right: 0.0625rem;
}

.hover\:mb-0\.25:hover{
  margin-bottom: 0.0625rem;
}

.hover\:ml-0\.25:hover{
  margin-left: 0.0625rem;
}

.hover\:mt-3\.125:hover{
  margin-top: 3.125rem;
}

.hover\:mr-3\.125:hover{
  margin-right: 3.125rem;
}

.hover\:mb-3\.125:hover{
  margin-bottom: 3.125rem;
}

.hover\:ml-3\.125:hover{
  margin-left: 3.125rem;
}

.hover\:mt-modal:hover{
  margin-top: 6.25rem;
}

.hover\:mr-modal:hover{
  margin-right: 6.25rem;
}

.hover\:mb-modal:hover{
  margin-bottom: 6.25rem;
}

.hover\:ml-modal:hover{
  margin-left: 6.25rem;
}

.hover\:mt-sidebar:hover{
  margin-top: 25rem;
}

.hover\:mr-sidebar:hover{
  margin-right: 25rem;
}

.hover\:mb-sidebar:hover{
  margin-bottom: 25rem;
}

.hover\:ml-sidebar:hover{
  margin-left: 25rem;
}

.focus\:m-0:focus{
  margin: 0;
}

.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-10:focus{
  margin: 2.5rem;
}

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

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

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

.focus\:m-18:focus{
  margin: 4.5rem;
}

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

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

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

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

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

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

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

.focus\:m-auto:focus{
  margin: auto;
}

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

.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-8:focus{
  margin: -2rem;
}

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

.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-32:focus{
  margin: -8rem;
}

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

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

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

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

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

.focus\:m-bin:focus{
  margin: -0.313rem;
}

.focus\:-m-0\.25:focus{
  margin: -0.0625rem;
}

.focus\:m-0\.25:focus{
  margin: 0.0625rem;
}

.focus\:m-3\.125:focus{
  margin: 3.125rem;
}

.focus\:m-modal:focus{
  margin: 6.25rem;
}

.focus\:m-sidebar:focus{
  margin: 25rem;
}

.focus\:my-0:focus{
  margin-top: 0;
  margin-bottom: 0;
}

.focus\:mx-0:focus{
  margin-left: 0;
  margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:my-18:focus{
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

.focus\:mx-18:focus{
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:my-auto:focus{
  margin-top: auto;
  margin-bottom: auto;
}

.focus\:mx-auto:focus{
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:my-bin:focus{
  margin-top: -0.313rem;
  margin-bottom: -0.313rem;
}

.focus\:mx-bin:focus{
  margin-left: -0.313rem;
  margin-right: -0.313rem;
}

.focus\:-my-0\.25:focus{
  margin-top: -0.0625rem;
  margin-bottom: -0.0625rem;
}

.focus\:-mx-0\.25:focus{
  margin-left: -0.0625rem;
  margin-right: -0.0625rem;
}

.focus\:my-0\.25:focus{
  margin-top: 0.0625rem;
  margin-bottom: 0.0625rem;
}

.focus\:mx-0\.25:focus{
  margin-left: 0.0625rem;
  margin-right: 0.0625rem;
}

.focus\:my-3\.125:focus{
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.focus\:mx-3\.125:focus{
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}

.focus\:my-modal:focus{
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

.focus\:mx-modal:focus{
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}

.focus\:my-sidebar:focus{
  margin-top: 25rem;
  margin-bottom: 25rem;
}

.focus\:mx-sidebar:focus{
  margin-left: 25rem;
  margin-right: 25rem;
}

.focus\:mt-0:focus{
  margin-top: 0;
}

.focus\:mr-0:focus{
  margin-right: 0;
}

.focus\:mb-0:focus{
  margin-bottom: 0;
}

.focus\:ml-0:focus{
  margin-left: 0;
}

.focus\:mt-1:focus{
  margin-top: 0.25rem;
}

.focus\:mr-1:focus{
  margin-right: 0.25rem;
}

.focus\:mb-1:focus{
  margin-bottom: 0.25rem;
}

.focus\:ml-1:focus{
  margin-left: 0.25rem;
}

.focus\:mt-2:focus{
  margin-top: 0.5rem;
}

.focus\:mr-2:focus{
  margin-right: 0.5rem;
}

.focus\:mb-2:focus{
  margin-bottom: 0.5rem;
}

.focus\:ml-2:focus{
  margin-left: 0.5rem;
}

.focus\:mt-3:focus{
  margin-top: 0.75rem;
}

.focus\:mr-3:focus{
  margin-right: 0.75rem;
}

.focus\:mb-3:focus{
  margin-bottom: 0.75rem;
}

.focus\:ml-3:focus{
  margin-left: 0.75rem;
}

.focus\:mt-4:focus{
  margin-top: 1rem;
}

.focus\:mr-4:focus{
  margin-right: 1rem;
}

.focus\:mb-4:focus{
  margin-bottom: 1rem;
}

.focus\:ml-4:focus{
  margin-left: 1rem;
}

.focus\:mt-5:focus{
  margin-top: 1.25rem;
}

.focus\:mr-5:focus{
  margin-right: 1.25rem;
}

.focus\:mb-5:focus{
  margin-bottom: 1.25rem;
}

.focus\:ml-5:focus{
  margin-left: 1.25rem;
}

.focus\:mt-6:focus{
  margin-top: 1.5rem;
}

.focus\:mr-6:focus{
  margin-right: 1.5rem;
}

.focus\:mb-6:focus{
  margin-bottom: 1.5rem;
}

.focus\:ml-6:focus{
  margin-left: 1.5rem;
}

.focus\:mt-7:focus{
  margin-top: 1.75rem;
}

.focus\:mr-7:focus{
  margin-right: 1.75rem;
}

.focus\:mb-7:focus{
  margin-bottom: 1.75rem;
}

.focus\:ml-7:focus{
  margin-left: 1.75rem;
}

.focus\:mt-8:focus{
  margin-top: 2rem;
}

.focus\:mr-8:focus{
  margin-right: 2rem;
}

.focus\:mb-8:focus{
  margin-bottom: 2rem;
}

.focus\:ml-8:focus{
  margin-left: 2rem;
}

.focus\:mt-10:focus{
  margin-top: 2.5rem;
}

.focus\:mr-10:focus{
  margin-right: 2.5rem;
}

.focus\:mb-10:focus{
  margin-bottom: 2.5rem;
}

.focus\:ml-10:focus{
  margin-left: 2.5rem;
}

.focus\:mt-12:focus{
  margin-top: 3rem;
}

.focus\:mr-12:focus{
  margin-right: 3rem;
}

.focus\:mb-12:focus{
  margin-bottom: 3rem;
}

.focus\:ml-12:focus{
  margin-left: 3rem;
}

.focus\:mt-14:focus{
  margin-top: 3.5rem;
}

.focus\:mr-14:focus{
  margin-right: 3.5rem;
}

.focus\:mb-14:focus{
  margin-bottom: 3.5rem;
}

.focus\:ml-14:focus{
  margin-left: 3.5rem;
}

.focus\:mt-16:focus{
  margin-top: 4rem;
}

.focus\:mr-16:focus{
  margin-right: 4rem;
}

.focus\:mb-16:focus{
  margin-bottom: 4rem;
}

.focus\:ml-16:focus{
  margin-left: 4rem;
}

.focus\:mt-18:focus{
  margin-top: 4.5rem;
}

.focus\:mr-18:focus{
  margin-right: 4.5rem;
}

.focus\:mb-18:focus{
  margin-bottom: 4.5rem;
}

.focus\:ml-18:focus{
  margin-left: 4.5rem;
}

.focus\:mt-20:focus{
  margin-top: 5rem;
}

.focus\:mr-20:focus{
  margin-right: 5rem;
}

.focus\:mb-20:focus{
  margin-bottom: 5rem;
}

.focus\:ml-20:focus{
  margin-left: 5rem;
}

.focus\:mt-24:focus{
  margin-top: 6rem;
}

.focus\:mr-24:focus{
  margin-right: 6rem;
}

.focus\:mb-24:focus{
  margin-bottom: 6rem;
}

.focus\:ml-24:focus{
  margin-left: 6rem;
}

.focus\:mt-32:focus{
  margin-top: 8rem;
}

.focus\:mr-32:focus{
  margin-right: 8rem;
}

.focus\:mb-32:focus{
  margin-bottom: 8rem;
}

.focus\:ml-32:focus{
  margin-left: 8rem;
}

.focus\:mt-40:focus{
  margin-top: 10rem;
}

.focus\:mr-40:focus{
  margin-right: 10rem;
}

.focus\:mb-40:focus{
  margin-bottom: 10rem;
}

.focus\:ml-40:focus{
  margin-left: 10rem;
}

.focus\:mt-48:focus{
  margin-top: 12rem;
}

.focus\:mr-48:focus{
  margin-right: 12rem;
}

.focus\:mb-48:focus{
  margin-bottom: 12rem;
}

.focus\:ml-48:focus{
  margin-left: 12rem;
}

.focus\:mt-56:focus{
  margin-top: 14rem;
}

.focus\:mr-56:focus{
  margin-right: 14rem;
}

.focus\:mb-56:focus{
  margin-bottom: 14rem;
}

.focus\:ml-56:focus{
  margin-left: 14rem;
}

.focus\:mt-64:focus{
  margin-top: 16rem;
}

.focus\:mr-64:focus{
  margin-right: 16rem;
}

.focus\:mb-64:focus{
  margin-bottom: 16rem;
}

.focus\:ml-64:focus{
  margin-left: 16rem;
}

.focus\:mt-auto:focus{
  margin-top: auto;
}

.focus\:mr-auto:focus{
  margin-right: auto;
}

.focus\:mb-auto:focus{
  margin-bottom: auto;
}

.focus\:ml-auto:focus{
  margin-left: auto;
}

.focus\:mt-px:focus{
  margin-top: 1px;
}

.focus\:mr-px:focus{
  margin-right: 1px;
}

.focus\:mb-px:focus{
  margin-bottom: 1px;
}

.focus\:ml-px:focus{
  margin-left: 1px;
}

.focus\:-mt-1:focus{
  margin-top: -0.25rem;
}

.focus\:-mr-1:focus{
  margin-right: -0.25rem;
}

.focus\:-mb-1:focus{
  margin-bottom: -0.25rem;
}

.focus\:-ml-1:focus{
  margin-left: -0.25rem;
}

.focus\:-mt-2:focus{
  margin-top: -0.5rem;
}

.focus\:-mr-2:focus{
  margin-right: -0.5rem;
}

.focus\:-mb-2:focus{
  margin-bottom: -0.5rem;
}

.focus\:-ml-2:focus{
  margin-left: -0.5rem;
}

.focus\:-mt-3:focus{
  margin-top: -0.75rem;
}

.focus\:-mr-3:focus{
  margin-right: -0.75rem;
}

.focus\:-mb-3:focus{
  margin-bottom: -0.75rem;
}

.focus\:-ml-3:focus{
  margin-left: -0.75rem;
}

.focus\:-mt-4:focus{
  margin-top: -1rem;
}

.focus\:-mr-4:focus{
  margin-right: -1rem;
}

.focus\:-mb-4:focus{
  margin-bottom: -1rem;
}

.focus\:-ml-4:focus{
  margin-left: -1rem;
}

.focus\:-mt-5:focus{
  margin-top: -1.25rem;
}

.focus\:-mr-5:focus{
  margin-right: -1.25rem;
}

.focus\:-mb-5:focus{
  margin-bottom: -1.25rem;
}

.focus\:-ml-5:focus{
  margin-left: -1.25rem;
}

.focus\:-mt-6:focus{
  margin-top: -1.5rem;
}

.focus\:-mr-6:focus{
  margin-right: -1.5rem;
}

.focus\:-mb-6:focus{
  margin-bottom: -1.5rem;
}

.focus\:-ml-6:focus{
  margin-left: -1.5rem;
}

.focus\:-mt-8:focus{
  margin-top: -2rem;
}

.focus\:-mr-8:focus{
  margin-right: -2rem;
}

.focus\:-mb-8:focus{
  margin-bottom: -2rem;
}

.focus\:-ml-8:focus{
  margin-left: -2rem;
}

.focus\:-mt-10:focus{
  margin-top: -2.5rem;
}

.focus\:-mr-10:focus{
  margin-right: -2.5rem;
}

.focus\:-mb-10:focus{
  margin-bottom: -2.5rem;
}

.focus\:-ml-10:focus{
  margin-left: -2.5rem;
}

.focus\:-mt-12:focus{
  margin-top: -3rem;
}

.focus\:-mr-12:focus{
  margin-right: -3rem;
}

.focus\:-mb-12:focus{
  margin-bottom: -3rem;
}

.focus\:-ml-12:focus{
  margin-left: -3rem;
}

.focus\:-mt-14:focus{
  margin-top: -3.5rem;
}

.focus\:-mr-14:focus{
  margin-right: -3.5rem;
}

.focus\:-mb-14:focus{
  margin-bottom: -3.5rem;
}

.focus\:-ml-14:focus{
  margin-left: -3.5rem;
}

.focus\:-mt-16:focus{
  margin-top: -4rem;
}

.focus\:-mr-16:focus{
  margin-right: -4rem;
}

.focus\:-mb-16:focus{
  margin-bottom: -4rem;
}

.focus\:-ml-16:focus{
  margin-left: -4rem;
}

.focus\:-mt-20:focus{
  margin-top: -5rem;
}

.focus\:-mr-20:focus{
  margin-right: -5rem;
}

.focus\:-mb-20:focus{
  margin-bottom: -5rem;
}

.focus\:-ml-20:focus{
  margin-left: -5rem;
}

.focus\:-mt-24:focus{
  margin-top: -6rem;
}

.focus\:-mr-24:focus{
  margin-right: -6rem;
}

.focus\:-mb-24:focus{
  margin-bottom: -6rem;
}

.focus\:-ml-24:focus{
  margin-left: -6rem;
}

.focus\:-mt-32:focus{
  margin-top: -8rem;
}

.focus\:-mr-32:focus{
  margin-right: -8rem;
}

.focus\:-mb-32:focus{
  margin-bottom: -8rem;
}

.focus\:-ml-32:focus{
  margin-left: -8rem;
}

.focus\:-mt-40:focus{
  margin-top: -10rem;
}

.focus\:-mr-40:focus{
  margin-right: -10rem;
}

.focus\:-mb-40:focus{
  margin-bottom: -10rem;
}

.focus\:-ml-40:focus{
  margin-left: -10rem;
}

.focus\:-mt-48:focus{
  margin-top: -12rem;
}

.focus\:-mr-48:focus{
  margin-right: -12rem;
}

.focus\:-mb-48:focus{
  margin-bottom: -12rem;
}

.focus\:-ml-48:focus{
  margin-left: -12rem;
}

.focus\:-mt-56:focus{
  margin-top: -14rem;
}

.focus\:-mr-56:focus{
  margin-right: -14rem;
}

.focus\:-mb-56:focus{
  margin-bottom: -14rem;
}

.focus\:-ml-56:focus{
  margin-left: -14rem;
}

.focus\:-mt-64:focus{
  margin-top: -16rem;
}

.focus\:-mr-64:focus{
  margin-right: -16rem;
}

.focus\:-mb-64:focus{
  margin-bottom: -16rem;
}

.focus\:-ml-64:focus{
  margin-left: -16rem;
}

.focus\:-mt-px:focus{
  margin-top: -1px;
}

.focus\:-mr-px:focus{
  margin-right: -1px;
}

.focus\:-mb-px:focus{
  margin-bottom: -1px;
}

.focus\:-ml-px:focus{
  margin-left: -1px;
}

.focus\:mt-bin:focus{
  margin-top: -0.313rem;
}

.focus\:mr-bin:focus{
  margin-right: -0.313rem;
}

.focus\:mb-bin:focus{
  margin-bottom: -0.313rem;
}

.focus\:ml-bin:focus{
  margin-left: -0.313rem;
}

.focus\:-mt-0\.25:focus{
  margin-top: -0.0625rem;
}

.focus\:-mr-0\.25:focus{
  margin-right: -0.0625rem;
}

.focus\:-mb-0\.25:focus{
  margin-bottom: -0.0625rem;
}

.focus\:-ml-0\.25:focus{
  margin-left: -0.0625rem;
}

.focus\:mt-0\.25:focus{
  margin-top: 0.0625rem;
}

.focus\:mr-0\.25:focus{
  margin-right: 0.0625rem;
}

.focus\:mb-0\.25:focus{
  margin-bottom: 0.0625rem;
}

.focus\:ml-0\.25:focus{
  margin-left: 0.0625rem;
}

.focus\:mt-3\.125:focus{
  margin-top: 3.125rem;
}

.focus\:mr-3\.125:focus{
  margin-right: 3.125rem;
}

.focus\:mb-3\.125:focus{
  margin-bottom: 3.125rem;
}

.focus\:ml-3\.125:focus{
  margin-left: 3.125rem;
}

.focus\:mt-modal:focus{
  margin-top: 6.25rem;
}

.focus\:mr-modal:focus{
  margin-right: 6.25rem;
}

.focus\:mb-modal:focus{
  margin-bottom: 6.25rem;
}

.focus\:ml-modal:focus{
  margin-left: 6.25rem;
}

.focus\:mt-sidebar:focus{
  margin-top: 25rem;
}

.focus\:mr-sidebar:focus{
  margin-right: 25rem;
}

.focus\:mb-sidebar:focus{
  margin-bottom: 25rem;
}

.focus\:ml-sidebar:focus{
  margin-left: 25rem;
}

.active\:m-0:active{
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.active\:m-18:active{
  margin: 4.5rem;
}

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

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

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

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

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

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

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

.active\:m-auto:active{
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active\:m-bin:active{
  margin: -0.313rem;
}

.active\:-m-0\.25:active{
  margin: -0.0625rem;
}

.active\:m-0\.25:active{
  margin: 0.0625rem;
}

.active\:m-3\.125:active{
  margin: 3.125rem;
}

.active\:m-modal:active{
  margin: 6.25rem;
}

.active\:m-sidebar:active{
  margin: 25rem;
}

.active\:my-0:active{
  margin-top: 0;
  margin-bottom: 0;
}

.active\:mx-0:active{
  margin-left: 0;
  margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active\:my-18:active{
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

.active\:mx-18:active{
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active\:my-auto:active{
  margin-top: auto;
  margin-bottom: auto;
}

.active\:mx-auto:active{
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active\:my-bin:active{
  margin-top: -0.313rem;
  margin-bottom: -0.313rem;
}

.active\:mx-bin:active{
  margin-left: -0.313rem;
  margin-right: -0.313rem;
}

.active\:-my-0\.25:active{
  margin-top: -0.0625rem;
  margin-bottom: -0.0625rem;
}

.active\:-mx-0\.25:active{
  margin-left: -0.0625rem;
  margin-right: -0.0625rem;
}

.active\:my-0\.25:active{
  margin-top: 0.0625rem;
  margin-bottom: 0.0625rem;
}

.active\:mx-0\.25:active{
  margin-left: 0.0625rem;
  margin-right: 0.0625rem;
}

.active\:my-3\.125:active{
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.active\:mx-3\.125:active{
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}

.active\:my-modal:active{
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

.active\:mx-modal:active{
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}

.active\:my-sidebar:active{
  margin-top: 25rem;
  margin-bottom: 25rem;
}

.active\:mx-sidebar:active{
  margin-left: 25rem;
  margin-right: 25rem;
}

.active\:mt-0:active{
  margin-top: 0;
}

.active\:mr-0:active{
  margin-right: 0;
}

.active\:mb-0:active{
  margin-bottom: 0;
}

.active\:ml-0:active{
  margin-left: 0;
}

.active\:mt-1:active{
  margin-top: 0.25rem;
}

.active\:mr-1:active{
  margin-right: 0.25rem;
}

.active\:mb-1:active{
  margin-bottom: 0.25rem;
}

.active\:ml-1:active{
  margin-left: 0.25rem;
}

.active\:mt-2:active{
  margin-top: 0.5rem;
}

.active\:mr-2:active{
  margin-right: 0.5rem;
}

.active\:mb-2:active{
  margin-bottom: 0.5rem;
}

.active\:ml-2:active{
  margin-left: 0.5rem;
}

.active\:mt-3:active{
  margin-top: 0.75rem;
}

.active\:mr-3:active{
  margin-right: 0.75rem;
}

.active\:mb-3:active{
  margin-bottom: 0.75rem;
}

.active\:ml-3:active{
  margin-left: 0.75rem;
}

.active\:mt-4:active{
  margin-top: 1rem;
}

.active\:mr-4:active{
  margin-right: 1rem;
}

.active\:mb-4:active{
  margin-bottom: 1rem;
}

.active\:ml-4:active{
  margin-left: 1rem;
}

.active\:mt-5:active{
  margin-top: 1.25rem;
}

.active\:mr-5:active{
  margin-right: 1.25rem;
}

.active\:mb-5:active{
  margin-bottom: 1.25rem;
}

.active\:ml-5:active{
  margin-left: 1.25rem;
}

.active\:mt-6:active{
  margin-top: 1.5rem;
}

.active\:mr-6:active{
  margin-right: 1.5rem;
}

.active\:mb-6:active{
  margin-bottom: 1.5rem;
}

.active\:ml-6:active{
  margin-left: 1.5rem;
}

.active\:mt-7:active{
  margin-top: 1.75rem;
}

.active\:mr-7:active{
  margin-right: 1.75rem;
}

.active\:mb-7:active{
  margin-bottom: 1.75rem;
}

.active\:ml-7:active{
  margin-left: 1.75rem;
}

.active\:mt-8:active{
  margin-top: 2rem;
}

.active\:mr-8:active{
  margin-right: 2rem;
}

.active\:mb-8:active{
  margin-bottom: 2rem;
}

.active\:ml-8:active{
  margin-left: 2rem;
}

.active\:mt-10:active{
  margin-top: 2.5rem;
}

.active\:mr-10:active{
  margin-right: 2.5rem;
}

.active\:mb-10:active{
  margin-bottom: 2.5rem;
}

.active\:ml-10:active{
  margin-left: 2.5rem;
}

.active\:mt-12:active{
  margin-top: 3rem;
}

.active\:mr-12:active{
  margin-right: 3rem;
}

.active\:mb-12:active{
  margin-bottom: 3rem;
}

.active\:ml-12:active{
  margin-left: 3rem;
}

.active\:mt-14:active{
  margin-top: 3.5rem;
}

.active\:mr-14:active{
  margin-right: 3.5rem;
}

.active\:mb-14:active{
  margin-bottom: 3.5rem;
}

.active\:ml-14:active{
  margin-left: 3.5rem;
}

.active\:mt-16:active{
  margin-top: 4rem;
}

.active\:mr-16:active{
  margin-right: 4rem;
}

.active\:mb-16:active{
  margin-bottom: 4rem;
}

.active\:ml-16:active{
  margin-left: 4rem;
}

.active\:mt-18:active{
  margin-top: 4.5rem;
}

.active\:mr-18:active{
  margin-right: 4.5rem;
}

.active\:mb-18:active{
  margin-bottom: 4.5rem;
}

.active\:ml-18:active{
  margin-left: 4.5rem;
}

.active\:mt-20:active{
  margin-top: 5rem;
}

.active\:mr-20:active{
  margin-right: 5rem;
}

.active\:mb-20:active{
  margin-bottom: 5rem;
}

.active\:ml-20:active{
  margin-left: 5rem;
}

.active\:mt-24:active{
  margin-top: 6rem;
}

.active\:mr-24:active{
  margin-right: 6rem;
}

.active\:mb-24:active{
  margin-bottom: 6rem;
}

.active\:ml-24:active{
  margin-left: 6rem;
}

.active\:mt-32:active{
  margin-top: 8rem;
}

.active\:mr-32:active{
  margin-right: 8rem;
}

.active\:mb-32:active{
  margin-bottom: 8rem;
}

.active\:ml-32:active{
  margin-left: 8rem;
}

.active\:mt-40:active{
  margin-top: 10rem;
}

.active\:mr-40:active{
  margin-right: 10rem;
}

.active\:mb-40:active{
  margin-bottom: 10rem;
}

.active\:ml-40:active{
  margin-left: 10rem;
}

.active\:mt-48:active{
  margin-top: 12rem;
}

.active\:mr-48:active{
  margin-right: 12rem;
}

.active\:mb-48:active{
  margin-bottom: 12rem;
}

.active\:ml-48:active{
  margin-left: 12rem;
}

.active\:mt-56:active{
  margin-top: 14rem;
}

.active\:mr-56:active{
  margin-right: 14rem;
}

.active\:mb-56:active{
  margin-bottom: 14rem;
}

.active\:ml-56:active{
  margin-left: 14rem;
}

.active\:mt-64:active{
  margin-top: 16rem;
}

.active\:mr-64:active{
  margin-right: 16rem;
}

.active\:mb-64:active{
  margin-bottom: 16rem;
}

.active\:ml-64:active{
  margin-left: 16rem;
}

.active\:mt-auto:active{
  margin-top: auto;
}

.active\:mr-auto:active{
  margin-right: auto;
}

.active\:mb-auto:active{
  margin-bottom: auto;
}

.active\:ml-auto:active{
  margin-left: auto;
}

.active\:mt-px:active{
  margin-top: 1px;
}

.active\:mr-px:active{
  margin-right: 1px;
}

.active\:mb-px:active{
  margin-bottom: 1px;
}

.active\:ml-px:active{
  margin-left: 1px;
}

.active\:-mt-1:active{
  margin-top: -0.25rem;
}

.active\:-mr-1:active{
  margin-right: -0.25rem;
}

.active\:-mb-1:active{
  margin-bottom: -0.25rem;
}

.active\:-ml-1:active{
  margin-left: -0.25rem;
}

.active\:-mt-2:active{
  margin-top: -0.5rem;
}

.active\:-mr-2:active{
  margin-right: -0.5rem;
}

.active\:-mb-2:active{
  margin-bottom: -0.5rem;
}

.active\:-ml-2:active{
  margin-left: -0.5rem;
}

.active\:-mt-3:active{
  margin-top: -0.75rem;
}

.active\:-mr-3:active{
  margin-right: -0.75rem;
}

.active\:-mb-3:active{
  margin-bottom: -0.75rem;
}

.active\:-ml-3:active{
  margin-left: -0.75rem;
}

.active\:-mt-4:active{
  margin-top: -1rem;
}

.active\:-mr-4:active{
  margin-right: -1rem;
}

.active\:-mb-4:active{
  margin-bottom: -1rem;
}

.active\:-ml-4:active{
  margin-left: -1rem;
}

.active\:-mt-5:active{
  margin-top: -1.25rem;
}

.active\:-mr-5:active{
  margin-right: -1.25rem;
}

.active\:-mb-5:active{
  margin-bottom: -1.25rem;
}

.active\:-ml-5:active{
  margin-left: -1.25rem;
}

.active\:-mt-6:active{
  margin-top: -1.5rem;
}

.active\:-mr-6:active{
  margin-right: -1.5rem;
}

.active\:-mb-6:active{
  margin-bottom: -1.5rem;
}

.active\:-ml-6:active{
  margin-left: -1.5rem;
}

.active\:-mt-8:active{
  margin-top: -2rem;
}

.active\:-mr-8:active{
  margin-right: -2rem;
}

.active\:-mb-8:active{
  margin-bottom: -2rem;
}

.active\:-ml-8:active{
  margin-left: -2rem;
}

.active\:-mt-10:active{
  margin-top: -2.5rem;
}

.active\:-mr-10:active{
  margin-right: -2.5rem;
}

.active\:-mb-10:active{
  margin-bottom: -2.5rem;
}

.active\:-ml-10:active{
  margin-left: -2.5rem;
}

.active\:-mt-12:active{
  margin-top: -3rem;
}

.active\:-mr-12:active{
  margin-right: -3rem;
}

.active\:-mb-12:active{
  margin-bottom: -3rem;
}

.active\:-ml-12:active{
  margin-left: -3rem;
}

.active\:-mt-14:active{
  margin-top: -3.5rem;
}

.active\:-mr-14:active{
  margin-right: -3.5rem;
}

.active\:-mb-14:active{
  margin-bottom: -3.5rem;
}

.active\:-ml-14:active{
  margin-left: -3.5rem;
}

.active\:-mt-16:active{
  margin-top: -4rem;
}

.active\:-mr-16:active{
  margin-right: -4rem;
}

.active\:-mb-16:active{
  margin-bottom: -4rem;
}

.active\:-ml-16:active{
  margin-left: -4rem;
}

.active\:-mt-20:active{
  margin-top: -5rem;
}

.active\:-mr-20:active{
  margin-right: -5rem;
}

.active\:-mb-20:active{
  margin-bottom: -5rem;
}

.active\:-ml-20:active{
  margin-left: -5rem;
}

.active\:-mt-24:active{
  margin-top: -6rem;
}

.active\:-mr-24:active{
  margin-right: -6rem;
}

.active\:-mb-24:active{
  margin-bottom: -6rem;
}

.active\:-ml-24:active{
  margin-left: -6rem;
}

.active\:-mt-32:active{
  margin-top: -8rem;
}

.active\:-mr-32:active{
  margin-right: -8rem;
}

.active\:-mb-32:active{
  margin-bottom: -8rem;
}

.active\:-ml-32:active{
  margin-left: -8rem;
}

.active\:-mt-40:active{
  margin-top: -10rem;
}

.active\:-mr-40:active{
  margin-right: -10rem;
}

.active\:-mb-40:active{
  margin-bottom: -10rem;
}

.active\:-ml-40:active{
  margin-left: -10rem;
}

.active\:-mt-48:active{
  margin-top: -12rem;
}

.active\:-mr-48:active{
  margin-right: -12rem;
}

.active\:-mb-48:active{
  margin-bottom: -12rem;
}

.active\:-ml-48:active{
  margin-left: -12rem;
}

.active\:-mt-56:active{
  margin-top: -14rem;
}

.active\:-mr-56:active{
  margin-right: -14rem;
}

.active\:-mb-56:active{
  margin-bottom: -14rem;
}

.active\:-ml-56:active{
  margin-left: -14rem;
}

.active\:-mt-64:active{
  margin-top: -16rem;
}

.active\:-mr-64:active{
  margin-right: -16rem;
}

.active\:-mb-64:active{
  margin-bottom: -16rem;
}

.active\:-ml-64:active{
  margin-left: -16rem;
}

.active\:-mt-px:active{
  margin-top: -1px;
}

.active\:-mr-px:active{
  margin-right: -1px;
}

.active\:-mb-px:active{
  margin-bottom: -1px;
}

.active\:-ml-px:active{
  margin-left: -1px;
}

.active\:mt-bin:active{
  margin-top: -0.313rem;
}

.active\:mr-bin:active{
  margin-right: -0.313rem;
}

.active\:mb-bin:active{
  margin-bottom: -0.313rem;
}

.active\:ml-bin:active{
  margin-left: -0.313rem;
}

.active\:-mt-0\.25:active{
  margin-top: -0.0625rem;
}

.active\:-mr-0\.25:active{
  margin-right: -0.0625rem;
}

.active\:-mb-0\.25:active{
  margin-bottom: -0.0625rem;
}

.active\:-ml-0\.25:active{
  margin-left: -0.0625rem;
}

.active\:mt-0\.25:active{
  margin-top: 0.0625rem;
}

.active\:mr-0\.25:active{
  margin-right: 0.0625rem;
}

.active\:mb-0\.25:active{
  margin-bottom: 0.0625rem;
}

.active\:ml-0\.25:active{
  margin-left: 0.0625rem;
}

.active\:mt-3\.125:active{
  margin-top: 3.125rem;
}

.active\:mr-3\.125:active{
  margin-right: 3.125rem;
}

.active\:mb-3\.125:active{
  margin-bottom: 3.125rem;
}

.active\:ml-3\.125:active{
  margin-left: 3.125rem;
}

.active\:mt-modal:active{
  margin-top: 6.25rem;
}

.active\:mr-modal:active{
  margin-right: 6.25rem;
}

.active\:mb-modal:active{
  margin-bottom: 6.25rem;
}

.active\:ml-modal:active{
  margin-left: 6.25rem;
}

.active\:mt-sidebar:active{
  margin-top: 25rem;
}

.active\:mr-sidebar:active{
  margin-right: 25rem;
}

.active\:mb-sidebar:active{
  margin-bottom: 25rem;
}

.active\:ml-sidebar:active{
  margin-left: 25rem;
}

.first\:m-0:first-child{
  margin: 0;
}

.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-10:first-child{
  margin: 2.5rem;
}

.first\:m-12:first-child{
  margin: 3rem;
}

.first\:m-14:first-child{
  margin: 3.5rem;
}

.first\:m-16:first-child{
  margin: 4rem;
}

.first\:m-18:first-child{
  margin: 4.5rem;
}

.first\:m-20:first-child{
  margin: 5rem;
}

.first\:m-24:first-child{
  margin: 6rem;
}

.first\:m-32:first-child{
  margin: 8rem;
}

.first\:m-40:first-child{
  margin: 10rem;
}

.first\:m-48:first-child{
  margin: 12rem;
}

.first\:m-56:first-child{
  margin: 14rem;
}

.first\:m-64:first-child{
  margin: 16rem;
}

.first\:m-auto:first-child{
  margin: auto;
}

.first\:m-px:first-child{
  margin: 1px;
}

.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-8:first-child{
  margin: -2rem;
}

.first\:-m-10:first-child{
  margin: -2.5rem;
}

.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-32:first-child{
  margin: -8rem;
}

.first\:-m-40:first-child{
  margin: -10rem;
}

.first\:-m-48:first-child{
  margin: -12rem;
}

.first\:-m-56:first-child{
  margin: -14rem;
}

.first\:-m-64:first-child{
  margin: -16rem;
}

.first\:-m-px:first-child{
  margin: -1px;
}

.first\:m-bin:first-child{
  margin: -0.313rem;
}

.first\:-m-0\.25:first-child{
  margin: -0.0625rem;
}

.first\:m-0\.25:first-child{
  margin: 0.0625rem;
}

.first\:m-3\.125:first-child{
  margin: 3.125rem;
}

.first\:m-modal:first-child{
  margin: 6.25rem;
}

.first\:m-sidebar:first-child{
  margin: 25rem;
}

.first\:my-0:first-child{
  margin-top: 0;
  margin-bottom: 0;
}

.first\:mx-0:first-child{
  margin-left: 0;
  margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.first\:mx-10:first-child{
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.first\:my-12:first-child{
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.first\:mx-12:first-child{
  margin-left: 3rem;
  margin-right: 3rem;
}

.first\:my-14:first-child{
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.first\:mx-14:first-child{
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.first\:my-16:first-child{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.first\:mx-16:first-child{
  margin-left: 4rem;
  margin-right: 4rem;
}

.first\:my-18:first-child{
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

.first\:mx-18:first-child{
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}

.first\:my-20:first-child{
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.first\:mx-20:first-child{
  margin-left: 5rem;
  margin-right: 5rem;
}

.first\:my-24:first-child{
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.first\:mx-24:first-child{
  margin-left: 6rem;
  margin-right: 6rem;
}

.first\:my-32:first-child{
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.first\:mx-32:first-child{
  margin-left: 8rem;
  margin-right: 8rem;
}

.first\:my-40:first-child{
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.first\:mx-40:first-child{
  margin-left: 10rem;
  margin-right: 10rem;
}

.first\:my-48:first-child{
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.first\:mx-48:first-child{
  margin-left: 12rem;
  margin-right: 12rem;
}

.first\:my-56:first-child{
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.first\:mx-56:first-child{
  margin-left: 14rem;
  margin-right: 14rem;
}

.first\:my-64:first-child{
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.first\:mx-64:first-child{
  margin-left: 16rem;
  margin-right: 16rem;
}

.first\:my-auto:first-child{
  margin-top: auto;
  margin-bottom: auto;
}

.first\:mx-auto:first-child{
  margin-left: auto;
  margin-right: auto;
}

.first\:my-px:first-child{
  margin-top: 1px;
  margin-bottom: 1px;
}

.first\:mx-px:first-child{
  margin-left: 1px;
  margin-right: 1px;
}

.first\:-my-1:first-child{
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.first\:-mx-1:first-child{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.first\:-my-2:first-child{
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.first\:-mx-2:first-child{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.first\:-my-3:first-child{
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.first\:-mx-3:first-child{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.first\:-my-4:first-child{
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.first\:-mx-4:first-child{
  margin-left: -1rem;
  margin-right: -1rem;
}

.first\:-my-5:first-child{
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.first\:-mx-5:first-child{
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.first\:-my-6:first-child{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.first\:-mx-6:first-child{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.first\:-my-8:first-child{
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.first\:-mx-8:first-child{
  margin-left: -2rem;
  margin-right: -2rem;
}

.first\:-my-10:first-child{
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.first\:-mx-10:first-child{
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.first\:-my-12:first-child{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.first\:-mx-12:first-child{
  margin-left: -3rem;
  margin-right: -3rem;
}

.first\:-my-14:first-child{
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}

.first\:-mx-14:first-child{
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.first\:-my-16:first-child{
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.first\:-mx-16:first-child{
  margin-left: -4rem;
  margin-right: -4rem;
}

.first\:-my-20:first-child{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.first\:-mx-20:first-child{
  margin-left: -5rem;
  margin-right: -5rem;
}

.first\:-my-24:first-child{
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.first\:-mx-24:first-child{
  margin-left: -6rem;
  margin-right: -6rem;
}

.first\:-my-32:first-child{
  margin-top: -8rem;
  margin-bottom: -8rem;
}

.first\:-mx-32:first-child{
  margin-left: -8rem;
  margin-right: -8rem;
}

.first\:-my-40:first-child{
  margin-top: -10rem;
  margin-bottom: -10rem;
}

.first\:-mx-40:first-child{
  margin-left: -10rem;
  margin-right: -10rem;
}

.first\:-my-48:first-child{
  margin-top: -12rem;
  margin-bottom: -12rem;
}

.first\:-mx-48:first-child{
  margin-left: -12rem;
  margin-right: -12rem;
}

.first\:-my-56:first-child{
  margin-top: -14rem;
  margin-bottom: -14rem;
}

.first\:-mx-56:first-child{
  margin-left: -14rem;
  margin-right: -14rem;
}

.first\:-my-64:first-child{
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.first\:-mx-64:first-child{
  margin-left: -16rem;
  margin-right: -16rem;
}

.first\:-my-px:first-child{
  margin-top: -1px;
  margin-bottom: -1px;
}

.first\:-mx-px:first-child{
  margin-left: -1px;
  margin-right: -1px;
}

.first\:my-bin:first-child{
  margin-top: -0.313rem;
  margin-bottom: -0.313rem;
}

.first\:mx-bin:first-child{
  margin-left: -0.313rem;
  margin-right: -0.313rem;
}

.first\:-my-0\.25:first-child{
  margin-top: -0.0625rem;
  margin-bottom: -0.0625rem;
}

.first\:-mx-0\.25:first-child{
  margin-left: -0.0625rem;
  margin-right: -0.0625rem;
}

.first\:my-0\.25:first-child{
  margin-top: 0.0625rem;
  margin-bottom: 0.0625rem;
}

.first\:mx-0\.25:first-child{
  margin-left: 0.0625rem;
  margin-right: 0.0625rem;
}

.first\:my-3\.125:first-child{
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.first\:mx-3\.125:first-child{
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}

.first\:my-modal:first-child{
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

.first\:mx-modal:first-child{
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}

.first\:my-sidebar:first-child{
  margin-top: 25rem;
  margin-bottom: 25rem;
}

.first\:mx-sidebar:first-child{
  margin-left: 25rem;
  margin-right: 25rem;
}

.first\:mt-0:first-child{
  margin-top: 0;
}

.first\:mr-0:first-child{
  margin-right: 0;
}

.first\:mb-0:first-child{
  margin-bottom: 0;
}

.first\:ml-0:first-child{
  margin-left: 0;
}

.first\:mt-1:first-child{
  margin-top: 0.25rem;
}

.first\:mr-1:first-child{
  margin-right: 0.25rem;
}

.first\:mb-1:first-child{
  margin-bottom: 0.25rem;
}

.first\:ml-1:first-child{
  margin-left: 0.25rem;
}

.first\:mt-2:first-child{
  margin-top: 0.5rem;
}

.first\:mr-2:first-child{
  margin-right: 0.5rem;
}

.first\:mb-2:first-child{
  margin-bottom: 0.5rem;
}

.first\:ml-2:first-child{
  margin-left: 0.5rem;
}

.first\:mt-3:first-child{
  margin-top: 0.75rem;
}

.first\:mr-3:first-child{
  margin-right: 0.75rem;
}

.first\:mb-3:first-child{
  margin-bottom: 0.75rem;
}

.first\:ml-3:first-child{
  margin-left: 0.75rem;
}

.first\:mt-4:first-child{
  margin-top: 1rem;
}

.first\:mr-4:first-child{
  margin-right: 1rem;
}

.first\:mb-4:first-child{
  margin-bottom: 1rem;
}

.first\:ml-4:first-child{
  margin-left: 1rem;
}

.first\:mt-5:first-child{
  margin-top: 1.25rem;
}

.first\:mr-5:first-child{
  margin-right: 1.25rem;
}

.first\:mb-5:first-child{
  margin-bottom: 1.25rem;
}

.first\:ml-5:first-child{
  margin-left: 1.25rem;
}

.first\:mt-6:first-child{
  margin-top: 1.5rem;
}

.first\:mr-6:first-child{
  margin-right: 1.5rem;
}

.first\:mb-6:first-child{
  margin-bottom: 1.5rem;
}

.first\:ml-6:first-child{
  margin-left: 1.5rem;
}

.first\:mt-7:first-child{
  margin-top: 1.75rem;
}

.first\:mr-7:first-child{
  margin-right: 1.75rem;
}

.first\:mb-7:first-child{
  margin-bottom: 1.75rem;
}

.first\:ml-7:first-child{
  margin-left: 1.75rem;
}

.first\:mt-8:first-child{
  margin-top: 2rem;
}

.first\:mr-8:first-child{
  margin-right: 2rem;
}

.first\:mb-8:first-child{
  margin-bottom: 2rem;
}

.first\:ml-8:first-child{
  margin-left: 2rem;
}

.first\:mt-10:first-child{
  margin-top: 2.5rem;
}

.first\:mr-10:first-child{
  margin-right: 2.5rem;
}

.first\:mb-10:first-child{
  margin-bottom: 2.5rem;
}

.first\:ml-10:first-child{
  margin-left: 2.5rem;
}

.first\:mt-12:first-child{
  margin-top: 3rem;
}

.first\:mr-12:first-child{
  margin-right: 3rem;
}

.first\:mb-12:first-child{
  margin-bottom: 3rem;
}

.first\:ml-12:first-child{
  margin-left: 3rem;
}

.first\:mt-14:first-child{
  margin-top: 3.5rem;
}

.first\:mr-14:first-child{
  margin-right: 3.5rem;
}

.first\:mb-14:first-child{
  margin-bottom: 3.5rem;
}

.first\:ml-14:first-child{
  margin-left: 3.5rem;
}

.first\:mt-16:first-child{
  margin-top: 4rem;
}

.first\:mr-16:first-child{
  margin-right: 4rem;
}

.first\:mb-16:first-child{
  margin-bottom: 4rem;
}

.first\:ml-16:first-child{
  margin-left: 4rem;
}

.first\:mt-18:first-child{
  margin-top: 4.5rem;
}

.first\:mr-18:first-child{
  margin-right: 4.5rem;
}

.first\:mb-18:first-child{
  margin-bottom: 4.5rem;
}

.first\:ml-18:first-child{
  margin-left: 4.5rem;
}

.first\:mt-20:first-child{
  margin-top: 5rem;
}

.first\:mr-20:first-child{
  margin-right: 5rem;
}

.first\:mb-20:first-child{
  margin-bottom: 5rem;
}

.first\:ml-20:first-child{
  margin-left: 5rem;
}

.first\:mt-24:first-child{
  margin-top: 6rem;
}

.first\:mr-24:first-child{
  margin-right: 6rem;
}

.first\:mb-24:first-child{
  margin-bottom: 6rem;
}

.first\:ml-24:first-child{
  margin-left: 6rem;
}

.first\:mt-32:first-child{
  margin-top: 8rem;
}

.first\:mr-32:first-child{
  margin-right: 8rem;
}

.first\:mb-32:first-child{
  margin-bottom: 8rem;
}

.first\:ml-32:first-child{
  margin-left: 8rem;
}

.first\:mt-40:first-child{
  margin-top: 10rem;
}

.first\:mr-40:first-child{
  margin-right: 10rem;
}

.first\:mb-40:first-child{
  margin-bottom: 10rem;
}

.first\:ml-40:first-child{
  margin-left: 10rem;
}

.first\:mt-48:first-child{
  margin-top: 12rem;
}

.first\:mr-48:first-child{
  margin-right: 12rem;
}

.first\:mb-48:first-child{
  margin-bottom: 12rem;
}

.first\:ml-48:first-child{
  margin-left: 12rem;
}

.first\:mt-56:first-child{
  margin-top: 14rem;
}

.first\:mr-56:first-child{
  margin-right: 14rem;
}

.first\:mb-56:first-child{
  margin-bottom: 14rem;
}

.first\:ml-56:first-child{
  margin-left: 14rem;
}

.first\:mt-64:first-child{
  margin-top: 16rem;
}

.first\:mr-64:first-child{
  margin-right: 16rem;
}

.first\:mb-64:first-child{
  margin-bottom: 16rem;
}

.first\:ml-64:first-child{
  margin-left: 16rem;
}

.first\:mt-auto:first-child{
  margin-top: auto;
}

.first\:mr-auto:first-child{
  margin-right: auto;
}

.first\:mb-auto:first-child{
  margin-bottom: auto;
}

.first\:ml-auto:first-child{
  margin-left: auto;
}

.first\:mt-px:first-child{
  margin-top: 1px;
}

.first\:mr-px:first-child{
  margin-right: 1px;
}

.first\:mb-px:first-child{
  margin-bottom: 1px;
}

.first\:ml-px:first-child{
  margin-left: 1px;
}

.first\:-mt-1:first-child{
  margin-top: -0.25rem;
}

.first\:-mr-1:first-child{
  margin-right: -0.25rem;
}

.first\:-mb-1:first-child{
  margin-bottom: -0.25rem;
}

.first\:-ml-1:first-child{
  margin-left: -0.25rem;
}

.first\:-mt-2:first-child{
  margin-top: -0.5rem;
}

.first\:-mr-2:first-child{
  margin-right: -0.5rem;
}

.first\:-mb-2:first-child{
  margin-bottom: -0.5rem;
}

.first\:-ml-2:first-child{
  margin-left: -0.5rem;
}

.first\:-mt-3:first-child{
  margin-top: -0.75rem;
}

.first\:-mr-3:first-child{
  margin-right: -0.75rem;
}

.first\:-mb-3:first-child{
  margin-bottom: -0.75rem;
}

.first\:-ml-3:first-child{
  margin-left: -0.75rem;
}

.first\:-mt-4:first-child{
  margin-top: -1rem;
}

.first\:-mr-4:first-child{
  margin-right: -1rem;
}

.first\:-mb-4:first-child{
  margin-bottom: -1rem;
}

.first\:-ml-4:first-child{
  margin-left: -1rem;
}

.first\:-mt-5:first-child{
  margin-top: -1.25rem;
}

.first\:-mr-5:first-child{
  margin-right: -1.25rem;
}

.first\:-mb-5:first-child{
  margin-bottom: -1.25rem;
}

.first\:-ml-5:first-child{
  margin-left: -1.25rem;
}

.first\:-mt-6:first-child{
  margin-top: -1.5rem;
}

.first\:-mr-6:first-child{
  margin-right: -1.5rem;
}

.first\:-mb-6:first-child{
  margin-bottom: -1.5rem;
}

.first\:-ml-6:first-child{
  margin-left: -1.5rem;
}

.first\:-mt-8:first-child{
  margin-top: -2rem;
}

.first\:-mr-8:first-child{
  margin-right: -2rem;
}

.first\:-mb-8:first-child{
  margin-bottom: -2rem;
}

.first\:-ml-8:first-child{
  margin-left: -2rem;
}

.first\:-mt-10:first-child{
  margin-top: -2.5rem;
}

.first\:-mr-10:first-child{
  margin-right: -2.5rem;
}

.first\:-mb-10:first-child{
  margin-bottom: -2.5rem;
}

.first\:-ml-10:first-child{
  margin-left: -2.5rem;
}

.first\:-mt-12:first-child{
  margin-top: -3rem;
}

.first\:-mr-12:first-child{
  margin-right: -3rem;
}

.first\:-mb-12:first-child{
  margin-bottom: -3rem;
}

.first\:-ml-12:first-child{
  margin-left: -3rem;
}

.first\:-mt-14:first-child{
  margin-top: -3.5rem;
}

.first\:-mr-14:first-child{
  margin-right: -3.5rem;
}

.first\:-mb-14:first-child{
  margin-bottom: -3.5rem;
}

.first\:-ml-14:first-child{
  margin-left: -3.5rem;
}

.first\:-mt-16:first-child{
  margin-top: -4rem;
}

.first\:-mr-16:first-child{
  margin-right: -4rem;
}

.first\:-mb-16:first-child{
  margin-bottom: -4rem;
}

.first\:-ml-16:first-child{
  margin-left: -4rem;
}

.first\:-mt-20:first-child{
  margin-top: -5rem;
}

.first\:-mr-20:first-child{
  margin-right: -5rem;
}

.first\:-mb-20:first-child{
  margin-bottom: -5rem;
}

.first\:-ml-20:first-child{
  margin-left: -5rem;
}

.first\:-mt-24:first-child{
  margin-top: -6rem;
}

.first\:-mr-24:first-child{
  margin-right: -6rem;
}

.first\:-mb-24:first-child{
  margin-bottom: -6rem;
}

.first\:-ml-24:first-child{
  margin-left: -6rem;
}

.first\:-mt-32:first-child{
  margin-top: -8rem;
}

.first\:-mr-32:first-child{
  margin-right: -8rem;
}

.first\:-mb-32:first-child{
  margin-bottom: -8rem;
}

.first\:-ml-32:first-child{
  margin-left: -8rem;
}

.first\:-mt-40:first-child{
  margin-top: -10rem;
}

.first\:-mr-40:first-child{
  margin-right: -10rem;
}

.first\:-mb-40:first-child{
  margin-bottom: -10rem;
}

.first\:-ml-40:first-child{
  margin-left: -10rem;
}

.first\:-mt-48:first-child{
  margin-top: -12rem;
}

.first\:-mr-48:first-child{
  margin-right: -12rem;
}

.first\:-mb-48:first-child{
  margin-bottom: -12rem;
}

.first\:-ml-48:first-child{
  margin-left: -12rem;
}

.first\:-mt-56:first-child{
  margin-top: -14rem;
}

.first\:-mr-56:first-child{
  margin-right: -14rem;
}

.first\:-mb-56:first-child{
  margin-bottom: -14rem;
}

.first\:-ml-56:first-child{
  margin-left: -14rem;
}

.first\:-mt-64:first-child{
  margin-top: -16rem;
}

.first\:-mr-64:first-child{
  margin-right: -16rem;
}

.first\:-mb-64:first-child{
  margin-bottom: -16rem;
}

.first\:-ml-64:first-child{
  margin-left: -16rem;
}

.first\:-mt-px:first-child{
  margin-top: -1px;
}

.first\:-mr-px:first-child{
  margin-right: -1px;
}

.first\:-mb-px:first-child{
  margin-bottom: -1px;
}

.first\:-ml-px:first-child{
  margin-left: -1px;
}

.first\:mt-bin:first-child{
  margin-top: -0.313rem;
}

.first\:mr-bin:first-child{
  margin-right: -0.313rem;
}

.first\:mb-bin:first-child{
  margin-bottom: -0.313rem;
}

.first\:ml-bin:first-child{
  margin-left: -0.313rem;
}

.first\:-mt-0\.25:first-child{
  margin-top: -0.0625rem;
}

.first\:-mr-0\.25:first-child{
  margin-right: -0.0625rem;
}

.first\:-mb-0\.25:first-child{
  margin-bottom: -0.0625rem;
}

.first\:-ml-0\.25:first-child{
  margin-left: -0.0625rem;
}

.first\:mt-0\.25:first-child{
  margin-top: 0.0625rem;
}

.first\:mr-0\.25:first-child{
  margin-right: 0.0625rem;
}

.first\:mb-0\.25:first-child{
  margin-bottom: 0.0625rem;
}

.first\:ml-0\.25:first-child{
  margin-left: 0.0625rem;
}

.first\:mt-3\.125:first-child{
  margin-top: 3.125rem;
}

.first\:mr-3\.125:first-child{
  margin-right: 3.125rem;
}

.first\:mb-3\.125:first-child{
  margin-bottom: 3.125rem;
}

.first\:ml-3\.125:first-child{
  margin-left: 3.125rem;
}

.first\:mt-modal:first-child{
  margin-top: 6.25rem;
}

.first\:mr-modal:first-child{
  margin-right: 6.25rem;
}

.first\:mb-modal:first-child{
  margin-bottom: 6.25rem;
}

.first\:ml-modal:first-child{
  margin-left: 6.25rem;
}

.first\:mt-sidebar:first-child{
  margin-top: 25rem;
}

.first\:mr-sidebar:first-child{
  margin-right: 25rem;
}

.first\:mb-sidebar:first-child{
  margin-bottom: 25rem;
}

.first\:ml-sidebar:first-child{
  margin-left: 25rem;
}

.last\:m-0:last-child{
  margin: 0;
}

.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-10:last-child{
  margin: 2.5rem;
}

.last\:m-12:last-child{
  margin: 3rem;
}

.last\:m-14:last-child{
  margin: 3.5rem;
}

.last\:m-16:last-child{
  margin: 4rem;
}

.last\:m-18:last-child{
  margin: 4.5rem;
}

.last\:m-20:last-child{
  margin: 5rem;
}

.last\:m-24:last-child{
  margin: 6rem;
}

.last\:m-32:last-child{
  margin: 8rem;
}

.last\:m-40:last-child{
  margin: 10rem;
}

.last\:m-48:last-child{
  margin: 12rem;
}

.last\:m-56:last-child{
  margin: 14rem;
}

.last\:m-64:last-child{
  margin: 16rem;
}

.last\:m-auto:last-child{
  margin: auto;
}

.last\:m-px:last-child{
  margin: 1px;
}

.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-8:last-child{
  margin: -2rem;
}

.last\:-m-10:last-child{
  margin: -2.5rem;
}

.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-32:last-child{
  margin: -8rem;
}

.last\:-m-40:last-child{
  margin: -10rem;
}

.last\:-m-48:last-child{
  margin: -12rem;
}

.last\:-m-56:last-child{
  margin: -14rem;
}

.last\:-m-64:last-child{
  margin: -16rem;
}

.last\:-m-px:last-child{
  margin: -1px;
}

.last\:m-bin:last-child{
  margin: -0.313rem;
}

.last\:-m-0\.25:last-child{
  margin: -0.0625rem;
}

.last\:m-0\.25:last-child{
  margin: 0.0625rem;
}

.last\:m-3\.125:last-child{
  margin: 3.125rem;
}

.last\:m-modal:last-child{
  margin: 6.25rem;
}

.last\:m-sidebar:last-child{
  margin: 25rem;
}

.last\:my-0:last-child{
  margin-top: 0;
  margin-bottom: 0;
}

.last\:mx-0:last-child{
  margin-left: 0;
  margin-right: 0;
}

.last\:my-1:last-child{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.last\:mx-1:last-child{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.last\:my-2:last-child{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.last\:mx-2:last-child{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.last\:my-3:last-child{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.last\:mx-3:last-child{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.last\:my-4:last-child{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.last\:mx-4:last-child{
  margin-left: 1rem;
  margin-right: 1rem;
}

.last\:my-5:last-child{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.last\:mx-5:last-child{
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.last\:my-6:last-child{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.last\:mx-6:last-child{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.last\:my-7:last-child{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.last\:mx-7:last-child{
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.last\:my-8:last-child{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.last\:mx-8:last-child{
  margin-left: 2rem;
  margin-right: 2rem;
}

.last\:my-10:last-child{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.last\:mx-10:last-child{
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.last\:my-12:last-child{
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.last\:mx-12:last-child{
  margin-left: 3rem;
  margin-right: 3rem;
}

.last\:my-14:last-child{
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.last\:mx-14:last-child{
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.last\:my-16:last-child{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.last\:mx-16:last-child{
  margin-left: 4rem;
  margin-right: 4rem;
}

.last\:my-18:last-child{
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

.last\:mx-18:last-child{
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}

.last\:my-20:last-child{
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.last\:mx-20:last-child{
  margin-left: 5rem;
  margin-right: 5rem;
}

.last\:my-24:last-child{
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.last\:mx-24:last-child{
  margin-left: 6rem;
  margin-right: 6rem;
}

.last\:my-32:last-child{
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.last\:mx-32:last-child{
  margin-left: 8rem;
  margin-right: 8rem;
}

.last\:my-40:last-child{
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.last\:mx-40:last-child{
  margin-left: 10rem;
  margin-right: 10rem;
}

.last\:my-48:last-child{
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.last\:mx-48:last-child{
  margin-left: 12rem;
  margin-right: 12rem;
}

.last\:my-56:last-child{
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.last\:mx-56:last-child{
  margin-left: 14rem;
  margin-right: 14rem;
}

.last\:my-64:last-child{
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.last\:mx-64:last-child{
  margin-left: 16rem;
  margin-right: 16rem;
}

.last\:my-auto:last-child{
  margin-top: auto;
  margin-bottom: auto;
}

.last\:mx-auto:last-child{
  margin-left: auto;
  margin-right: auto;
}

.last\:my-px:last-child{
  margin-top: 1px;
  margin-bottom: 1px;
}

.last\:mx-px:last-child{
  margin-left: 1px;
  margin-right: 1px;
}

.last\:-my-1:last-child{
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.last\:-mx-1:last-child{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.last\:-my-2:last-child{
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.last\:-mx-2:last-child{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.last\:-my-3:last-child{
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.last\:-mx-3:last-child{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.last\:-my-4:last-child{
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.last\:-mx-4:last-child{
  margin-left: -1rem;
  margin-right: -1rem;
}

.last\:-my-5:last-child{
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.last\:-mx-5:last-child{
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.last\:-my-6:last-child{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.last\:-mx-6:last-child{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.last\:-my-8:last-child{
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.last\:-mx-8:last-child{
  margin-left: -2rem;
  margin-right: -2rem;
}

.last\:-my-10:last-child{
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.last\:-mx-10:last-child{
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.last\:-my-12:last-child{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.last\:-mx-12:last-child{
  margin-left: -3rem;
  margin-right: -3rem;
}

.last\:-my-14:last-child{
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}

.last\:-mx-14:last-child{
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.last\:-my-16:last-child{
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.last\:-mx-16:last-child{
  margin-left: -4rem;
  margin-right: -4rem;
}

.last\:-my-20:last-child{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.last\:-mx-20:last-child{
  margin-left: -5rem;
  margin-right: -5rem;
}

.last\:-my-24:last-child{
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.last\:-mx-24:last-child{
  margin-left: -6rem;
  margin-right: -6rem;
}

.last\:-my-32:last-child{
  margin-top: -8rem;
  margin-bottom: -8rem;
}

.last\:-mx-32:last-child{
  margin-left: -8rem;
  margin-right: -8rem;
}

.last\:-my-40:last-child{
  margin-top: -10rem;
  margin-bottom: -10rem;
}

.last\:-mx-40:last-child{
  margin-left: -10rem;
  margin-right: -10rem;
}

.last\:-my-48:last-child{
  margin-top: -12rem;
  margin-bottom: -12rem;
}

.last\:-mx-48:last-child{
  margin-left: -12rem;
  margin-right: -12rem;
}

.last\:-my-56:last-child{
  margin-top: -14rem;
  margin-bottom: -14rem;
}

.last\:-mx-56:last-child{
  margin-left: -14rem;
  margin-right: -14rem;
}

.last\:-my-64:last-child{
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.last\:-mx-64:last-child{
  margin-left: -16rem;
  margin-right: -16rem;
}

.last\:-my-px:last-child{
  margin-top: -1px;
  margin-bottom: -1px;
}

.last\:-mx-px:last-child{
  margin-left: -1px;
  margin-right: -1px;
}

.last\:my-bin:last-child{
  margin-top: -0.313rem;
  margin-bottom: -0.313rem;
}

.last\:mx-bin:last-child{
  margin-left: -0.313rem;
  margin-right: -0.313rem;
}

.last\:-my-0\.25:last-child{
  margin-top: -0.0625rem;
  margin-bottom: -0.0625rem;
}

.last\:-mx-0\.25:last-child{
  margin-left: -0.0625rem;
  margin-right: -0.0625rem;
}

.last\:my-0\.25:last-child{
  margin-top: 0.0625rem;
  margin-bottom: 0.0625rem;
}

.last\:mx-0\.25:last-child{
  margin-left: 0.0625rem;
  margin-right: 0.0625rem;
}

.last\:my-3\.125:last-child{
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.last\:mx-3\.125:last-child{
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}

.last\:my-modal:last-child{
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

.last\:mx-modal:last-child{
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}

.last\:my-sidebar:last-child{
  margin-top: 25rem;
  margin-bottom: 25rem;
}

.last\:mx-sidebar:last-child{
  margin-left: 25rem;
  margin-right: 25rem;
}

.last\:mt-0:last-child{
  margin-top: 0;
}

.last\:mr-0:last-child{
  margin-right: 0;
}

.last\:mb-0:last-child{
  margin-bottom: 0;
}

.last\:ml-0:last-child{
  margin-left: 0;
}

.last\:mt-1:last-child{
  margin-top: 0.25rem;
}

.last\:mr-1:last-child{
  margin-right: 0.25rem;
}

.last\:mb-1:last-child{
  margin-bottom: 0.25rem;
}

.last\:ml-1:last-child{
  margin-left: 0.25rem;
}

.last\:mt-2:last-child{
  margin-top: 0.5rem;
}

.last\:mr-2:last-child{
  margin-right: 0.5rem;
}

.last\:mb-2:last-child{
  margin-bottom: 0.5rem;
}

.last\:ml-2:last-child{
  margin-left: 0.5rem;
}

.last\:mt-3:last-child{
  margin-top: 0.75rem;
}

.last\:mr-3:last-child{
  margin-right: 0.75rem;
}

.last\:mb-3:last-child{
  margin-bottom: 0.75rem;
}

.last\:ml-3:last-child{
  margin-left: 0.75rem;
}

.last\:mt-4:last-child{
  margin-top: 1rem;
}

.last\:mr-4:last-child{
  margin-right: 1rem;
}

.last\:mb-4:last-child{
  margin-bottom: 1rem;
}

.last\:ml-4:last-child{
  margin-left: 1rem;
}

.last\:mt-5:last-child{
  margin-top: 1.25rem;
}

.last\:mr-5:last-child{
  margin-right: 1.25rem;
}

.last\:mb-5:last-child{
  margin-bottom: 1.25rem;
}

.last\:ml-5:last-child{
  margin-left: 1.25rem;
}

.last\:mt-6:last-child{
  margin-top: 1.5rem;
}

.last\:mr-6:last-child{
  margin-right: 1.5rem;
}

.last\:mb-6:last-child{
  margin-bottom: 1.5rem;
}

.last\:ml-6:last-child{
  margin-left: 1.5rem;
}

.last\:mt-7:last-child{
  margin-top: 1.75rem;
}

.last\:mr-7:last-child{
  margin-right: 1.75rem;
}

.last\:mb-7:last-child{
  margin-bottom: 1.75rem;
}

.last\:ml-7:last-child{
  margin-left: 1.75rem;
}

.last\:mt-8:last-child{
  margin-top: 2rem;
}

.last\:mr-8:last-child{
  margin-right: 2rem;
}

.last\:mb-8:last-child{
  margin-bottom: 2rem;
}

.last\:ml-8:last-child{
  margin-left: 2rem;
}

.last\:mt-10:last-child{
  margin-top: 2.5rem;
}

.last\:mr-10:last-child{
  margin-right: 2.5rem;
}

.last\:mb-10:last-child{
  margin-bottom: 2.5rem;
}

.last\:ml-10:last-child{
  margin-left: 2.5rem;
}

.last\:mt-12:last-child{
  margin-top: 3rem;
}

.last\:mr-12:last-child{
  margin-right: 3rem;
}

.last\:mb-12:last-child{
  margin-bottom: 3rem;
}

.last\:ml-12:last-child{
  margin-left: 3rem;
}

.last\:mt-14:last-child{
  margin-top: 3.5rem;
}

.last\:mr-14:last-child{
  margin-right: 3.5rem;
}

.last\:mb-14:last-child{
  margin-bottom: 3.5rem;
}

.last\:ml-14:last-child{
  margin-left: 3.5rem;
}

.last\:mt-16:last-child{
  margin-top: 4rem;
}

.last\:mr-16:last-child{
  margin-right: 4rem;
}

.last\:mb-16:last-child{
  margin-bottom: 4rem;
}

.last\:ml-16:last-child{
  margin-left: 4rem;
}

.last\:mt-18:last-child{
  margin-top: 4.5rem;
}

.last\:mr-18:last-child{
  margin-right: 4.5rem;
}

.last\:mb-18:last-child{
  margin-bottom: 4.5rem;
}

.last\:ml-18:last-child{
  margin-left: 4.5rem;
}

.last\:mt-20:last-child{
  margin-top: 5rem;
}

.last\:mr-20:last-child{
  margin-right: 5rem;
}

.last\:mb-20:last-child{
  margin-bottom: 5rem;
}

.last\:ml-20:last-child{
  margin-left: 5rem;
}

.last\:mt-24:last-child{
  margin-top: 6rem;
}

.last\:mr-24:last-child{
  margin-right: 6rem;
}

.last\:mb-24:last-child{
  margin-bottom: 6rem;
}

.last\:ml-24:last-child{
  margin-left: 6rem;
}

.last\:mt-32:last-child{
  margin-top: 8rem;
}

.last\:mr-32:last-child{
  margin-right: 8rem;
}

.last\:mb-32:last-child{
  margin-bottom: 8rem;
}

.last\:ml-32:last-child{
  margin-left: 8rem;
}

.last\:mt-40:last-child{
  margin-top: 10rem;
}

.last\:mr-40:last-child{
  margin-right: 10rem;
}

.last\:mb-40:last-child{
  margin-bottom: 10rem;
}

.last\:ml-40:last-child{
  margin-left: 10rem;
}

.last\:mt-48:last-child{
  margin-top: 12rem;
}

.last\:mr-48:last-child{
  margin-right: 12rem;
}

.last\:mb-48:last-child{
  margin-bottom: 12rem;
}

.last\:ml-48:last-child{
  margin-left: 12rem;
}

.last\:mt-56:last-child{
  margin-top: 14rem;
}

.last\:mr-56:last-child{
  margin-right: 14rem;
}

.last\:mb-56:last-child{
  margin-bottom: 14rem;
}

.last\:ml-56:last-child{
  margin-left: 14rem;
}

.last\:mt-64:last-child{
  margin-top: 16rem;
}

.last\:mr-64:last-child{
  margin-right: 16rem;
}

.last\:mb-64:last-child{
  margin-bottom: 16rem;
}

.last\:ml-64:last-child{
  margin-left: 16rem;
}

.last\:mt-auto:last-child{
  margin-top: auto;
}

.last\:mr-auto:last-child{
  margin-right: auto;
}

.last\:mb-auto:last-child{
  margin-bottom: auto;
}

.last\:ml-auto:last-child{
  margin-left: auto;
}

.last\:mt-px:last-child{
  margin-top: 1px;
}

.last\:mr-px:last-child{
  margin-right: 1px;
}

.last\:mb-px:last-child{
  margin-bottom: 1px;
}

.last\:ml-px:last-child{
  margin-left: 1px;
}

.last\:-mt-1:last-child{
  margin-top: -0.25rem;
}

.last\:-mr-1:last-child{
  margin-right: -0.25rem;
}

.last\:-mb-1:last-child{
  margin-bottom: -0.25rem;
}

.last\:-ml-1:last-child{
  margin-left: -0.25rem;
}

.last\:-mt-2:last-child{
  margin-top: -0.5rem;
}

.last\:-mr-2:last-child{
  margin-right: -0.5rem;
}

.last\:-mb-2:last-child{
  margin-bottom: -0.5rem;
}

.last\:-ml-2:last-child{
  margin-left: -0.5rem;
}

.last\:-mt-3:last-child{
  margin-top: -0.75rem;
}

.last\:-mr-3:last-child{
  margin-right: -0.75rem;
}

.last\:-mb-3:last-child{
  margin-bottom: -0.75rem;
}

.last\:-ml-3:last-child{
  margin-left: -0.75rem;
}

.last\:-mt-4:last-child{
  margin-top: -1rem;
}

.last\:-mr-4:last-child{
  margin-right: -1rem;
}

.last\:-mb-4:last-child{
  margin-bottom: -1rem;
}

.last\:-ml-4:last-child{
  margin-left: -1rem;
}

.last\:-mt-5:last-child{
  margin-top: -1.25rem;
}

.last\:-mr-5:last-child{
  margin-right: -1.25rem;
}

.last\:-mb-5:last-child{
  margin-bottom: -1.25rem;
}

.last\:-ml-5:last-child{
  margin-left: -1.25rem;
}

.last\:-mt-6:last-child{
  margin-top: -1.5rem;
}

.last\:-mr-6:last-child{
  margin-right: -1.5rem;
}

.last\:-mb-6:last-child{
  margin-bottom: -1.5rem;
}

.last\:-ml-6:last-child{
  margin-left: -1.5rem;
}

.last\:-mt-8:last-child{
  margin-top: -2rem;
}

.last\:-mr-8:last-child{
  margin-right: -2rem;
}

.last\:-mb-8:last-child{
  margin-bottom: -2rem;
}

.last\:-ml-8:last-child{
  margin-left: -2rem;
}

.last\:-mt-10:last-child{
  margin-top: -2.5rem;
}

.last\:-mr-10:last-child{
  margin-right: -2.5rem;
}

.last\:-mb-10:last-child{
  margin-bottom: -2.5rem;
}

.last\:-ml-10:last-child{
  margin-left: -2.5rem;
}

.last\:-mt-12:last-child{
  margin-top: -3rem;
}

.last\:-mr-12:last-child{
  margin-right: -3rem;
}

.last\:-mb-12:last-child{
  margin-bottom: -3rem;
}

.last\:-ml-12:last-child{
  margin-left: -3rem;
}

.last\:-mt-14:last-child{
  margin-top: -3.5rem;
}

.last\:-mr-14:last-child{
  margin-right: -3.5rem;
}

.last\:-mb-14:last-child{
  margin-bottom: -3.5rem;
}

.last\:-ml-14:last-child{
  margin-left: -3.5rem;
}

.last\:-mt-16:last-child{
  margin-top: -4rem;
}

.last\:-mr-16:last-child{
  margin-right: -4rem;
}

.last\:-mb-16:last-child{
  margin-bottom: -4rem;
}

.last\:-ml-16:last-child{
  margin-left: -4rem;
}

.last\:-mt-20:last-child{
  margin-top: -5rem;
}

.last\:-mr-20:last-child{
  margin-right: -5rem;
}

.last\:-mb-20:last-child{
  margin-bottom: -5rem;
}

.last\:-ml-20:last-child{
  margin-left: -5rem;
}

.last\:-mt-24:last-child{
  margin-top: -6rem;
}

.last\:-mr-24:last-child{
  margin-right: -6rem;
}

.last\:-mb-24:last-child{
  margin-bottom: -6rem;
}

.last\:-ml-24:last-child{
  margin-left: -6rem;
}

.last\:-mt-32:last-child{
  margin-top: -8rem;
}

.last\:-mr-32:last-child{
  margin-right: -8rem;
}

.last\:-mb-32:last-child{
  margin-bottom: -8rem;
}

.last\:-ml-32:last-child{
  margin-left: -8rem;
}

.last\:-mt-40:last-child{
  margin-top: -10rem;
}

.last\:-mr-40:last-child{
  margin-right: -10rem;
}

.last\:-mb-40:last-child{
  margin-bottom: -10rem;
}

.last\:-ml-40:last-child{
  margin-left: -10rem;
}

.last\:-mt-48:last-child{
  margin-top: -12rem;
}

.last\:-mr-48:last-child{
  margin-right: -12rem;
}

.last\:-mb-48:last-child{
  margin-bottom: -12rem;
}

.last\:-ml-48:last-child{
  margin-left: -12rem;
}

.last\:-mt-56:last-child{
  margin-top: -14rem;
}

.last\:-mr-56:last-child{
  margin-right: -14rem;
}

.last\:-mb-56:last-child{
  margin-bottom: -14rem;
}

.last\:-ml-56:last-child{
  margin-left: -14rem;
}

.last\:-mt-64:last-child{
  margin-top: -16rem;
}

.last\:-mr-64:last-child{
  margin-right: -16rem;
}

.last\:-mb-64:last-child{
  margin-bottom: -16rem;
}

.last\:-ml-64:last-child{
  margin-left: -16rem;
}

.last\:-mt-px:last-child{
  margin-top: -1px;
}

.last\:-mr-px:last-child{
  margin-right: -1px;
}

.last\:-mb-px:last-child{
  margin-bottom: -1px;
}

.last\:-ml-px:last-child{
  margin-left: -1px;
}

.last\:mt-bin:last-child{
  margin-top: -0.313rem;
}

.last\:mr-bin:last-child{
  margin-right: -0.313rem;
}

.last\:mb-bin:last-child{
  margin-bottom: -0.313rem;
}

.last\:ml-bin:last-child{
  margin-left: -0.313rem;
}

.last\:-mt-0\.25:last-child{
  margin-top: -0.0625rem;
}

.last\:-mr-0\.25:last-child{
  margin-right: -0.0625rem;
}

.last\:-mb-0\.25:last-child{
  margin-bottom: -0.0625rem;
}

.last\:-ml-0\.25:last-child{
  margin-left: -0.0625rem;
}

.last\:mt-0\.25:last-child{
  margin-top: 0.0625rem;
}

.last\:mr-0\.25:last-child{
  margin-right: 0.0625rem;
}

.last\:mb-0\.25:last-child{
  margin-bottom: 0.0625rem;
}

.last\:ml-0\.25:last-child{
  margin-left: 0.0625rem;
}

.last\:mt-3\.125:last-child{
  margin-top: 3.125rem;
}

.last\:mr-3\.125:last-child{
  margin-right: 3.125rem;
}

.last\:mb-3\.125:last-child{
  margin-bottom: 3.125rem;
}

.last\:ml-3\.125:last-child{
  margin-left: 3.125rem;
}

.last\:mt-modal:last-child{
  margin-top: 6.25rem;
}

.last\:mr-modal:last-child{
  margin-right: 6.25rem;
}

.last\:mb-modal:last-child{
  margin-bottom: 6.25rem;
}

.last\:ml-modal:last-child{
  margin-left: 6.25rem;
}

.last\:mt-sidebar:last-child{
  margin-top: 25rem;
}

.last\:mr-sidebar:last-child{
  margin-right: 25rem;
}

.last\:mb-sidebar:last-child{
  margin-bottom: 25rem;
}

.last\:ml-sidebar:last-child{
  margin-left: 25rem;
}

.max-h-full{
  max-height: 100%;
}

.max-h-screen{
  max-height: 100vh;
}

.hover\:max-h-full:hover{
  max-height: 100%;
}

.hover\:max-h-screen:hover{
  max-height: 100vh;
}

.focus\:max-h-full:focus{
  max-height: 100%;
}

.focus\:max-h-screen:focus{
  max-height: 100vh;
}

.active\:max-h-full:active{
  max-height: 100%;
}

.active\:max-h-screen:active{
  max-height: 100vh;
}

.first\:max-h-full:first-child{
  max-height: 100%;
}

.first\:max-h-screen:first-child{
  max-height: 100vh;
}

.last\:max-h-full:last-child{
  max-height: 100%;
}

.last\:max-h-screen:last-child{
  max-height: 100vh;
}

.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-full{
  max-width: 100%;
}

.max-w-screen-sm{
  max-width: 640px;
}

.max-w-screen-s1440{
  max-width: 1430px;
}

.max-w-screen-s1920{
  max-width: 1910px;
}

.max-w-page{
  max-width: 80rem;
}

.max-w-container{
  max-width: 77.25rem;
}

.max-w-modalMd{
  max-width: 37.5rem;
}

.max-w-modalMdXl{
  max-width: 52.5rem;
}

.max-w-modalLg{
  max-width: 77.25rem;
}

.max-w-input{
  max-width: 32.5rem;
}

.max-w-halfInput{
  max-width: 16.25rem;
}

.max-w-formContainer{
  max-width: 47.875rem;
}

.max-w-sidebar{
  max-width: 27rem;
}

.max-w-doubleSidebar{
  max-width: 475px;
}

.max-w-practiceSidebarContent{
  max-width: 49.5rem;
}

.max-w-doubleSidebarContent{
  max-width: 950px;
}

.hover\:max-w-none:hover{
  max-width: none;
}

.hover\:max-w-xs:hover{
  max-width: 20rem;
}

.hover\:max-w-sm:hover{
  max-width: 24rem;
}

.hover\:max-w-md:hover{
  max-width: 28rem;
}

.hover\:max-w-lg:hover{
  max-width: 32rem;
}

.hover\:max-w-xl:hover{
  max-width: 36rem;
}

.hover\:max-w-2xl:hover{
  max-width: 42rem;
}

.hover\:max-w-3xl:hover{
  max-width: 48rem;
}

.hover\:max-w-4xl:hover{
  max-width: 56rem;
}

.hover\:max-w-5xl:hover{
  max-width: 64rem;
}

.hover\:max-w-6xl:hover{
  max-width: 72rem;
}

.hover\:max-w-full:hover{
  max-width: 100%;
}

.hover\:max-w-screen-sm:hover{
  max-width: 640px;
}

.hover\:max-w-screen-s1440:hover{
  max-width: 1430px;
}

.hover\:max-w-screen-s1920:hover{
  max-width: 1910px;
}

.hover\:max-w-page:hover{
  max-width: 80rem;
}

.hover\:max-w-container:hover{
  max-width: 77.25rem;
}

.hover\:max-w-modalMd:hover{
  max-width: 37.5rem;
}

.hover\:max-w-modalMdXl:hover{
  max-width: 52.5rem;
}

.hover\:max-w-modalLg:hover{
  max-width: 77.25rem;
}

.hover\:max-w-input:hover{
  max-width: 32.5rem;
}

.hover\:max-w-halfInput:hover{
  max-width: 16.25rem;
}

.hover\:max-w-formContainer:hover{
  max-width: 47.875rem;
}

.hover\:max-w-sidebar:hover{
  max-width: 27rem;
}

.hover\:max-w-doubleSidebar:hover{
  max-width: 475px;
}

.hover\:max-w-practiceSidebarContent:hover{
  max-width: 49.5rem;
}

.hover\:max-w-doubleSidebarContent:hover{
  max-width: 950px;
}

.focus\:max-w-none:focus{
  max-width: none;
}

.focus\:max-w-xs:focus{
  max-width: 20rem;
}

.focus\:max-w-sm:focus{
  max-width: 24rem;
}

.focus\:max-w-md:focus{
  max-width: 28rem;
}

.focus\:max-w-lg:focus{
  max-width: 32rem;
}

.focus\:max-w-xl:focus{
  max-width: 36rem;
}

.focus\:max-w-2xl:focus{
  max-width: 42rem;
}

.focus\:max-w-3xl:focus{
  max-width: 48rem;
}

.focus\:max-w-4xl:focus{
  max-width: 56rem;
}

.focus\:max-w-5xl:focus{
  max-width: 64rem;
}

.focus\:max-w-6xl:focus{
  max-width: 72rem;
}

.focus\:max-w-full:focus{
  max-width: 100%;
}

.focus\:max-w-screen-sm:focus{
  max-width: 640px;
}

.focus\:max-w-screen-s1440:focus{
  max-width: 1430px;
}

.focus\:max-w-screen-s1920:focus{
  max-width: 1910px;
}

.focus\:max-w-page:focus{
  max-width: 80rem;
}

.focus\:max-w-container:focus{
  max-width: 77.25rem;
}

.focus\:max-w-modalMd:focus{
  max-width: 37.5rem;
}

.focus\:max-w-modalMdXl:focus{
  max-width: 52.5rem;
}

.focus\:max-w-modalLg:focus{
  max-width: 77.25rem;
}

.focus\:max-w-input:focus{
  max-width: 32.5rem;
}

.focus\:max-w-halfInput:focus{
  max-width: 16.25rem;
}

.focus\:max-w-formContainer:focus{
  max-width: 47.875rem;
}

.focus\:max-w-sidebar:focus{
  max-width: 27rem;
}

.focus\:max-w-doubleSidebar:focus{
  max-width: 475px;
}

.focus\:max-w-practiceSidebarContent:focus{
  max-width: 49.5rem;
}

.focus\:max-w-doubleSidebarContent:focus{
  max-width: 950px;
}

.active\:max-w-none:active{
  max-width: none;
}

.active\:max-w-xs:active{
  max-width: 20rem;
}

.active\:max-w-sm:active{
  max-width: 24rem;
}

.active\:max-w-md:active{
  max-width: 28rem;
}

.active\:max-w-lg:active{
  max-width: 32rem;
}

.active\:max-w-xl:active{
  max-width: 36rem;
}

.active\:max-w-2xl:active{
  max-width: 42rem;
}

.active\:max-w-3xl:active{
  max-width: 48rem;
}

.active\:max-w-4xl:active{
  max-width: 56rem;
}

.active\:max-w-5xl:active{
  max-width: 64rem;
}

.active\:max-w-6xl:active{
  max-width: 72rem;
}

.active\:max-w-full:active{
  max-width: 100%;
}

.active\:max-w-screen-sm:active{
  max-width: 640px;
}

.active\:max-w-screen-s1440:active{
  max-width: 1430px;
}

.active\:max-w-screen-s1920:active{
  max-width: 1910px;
}

.active\:max-w-page:active{
  max-width: 80rem;
}

.active\:max-w-container:active{
  max-width: 77.25rem;
}

.active\:max-w-modalMd:active{
  max-width: 37.5rem;
}

.active\:max-w-modalMdXl:active{
  max-width: 52.5rem;
}

.active\:max-w-modalLg:active{
  max-width: 77.25rem;
}

.active\:max-w-input:active{
  max-width: 32.5rem;
}

.active\:max-w-halfInput:active{
  max-width: 16.25rem;
}

.active\:max-w-formContainer:active{
  max-width: 47.875rem;
}

.active\:max-w-sidebar:active{
  max-width: 27rem;
}

.active\:max-w-doubleSidebar:active{
  max-width: 475px;
}

.active\:max-w-practiceSidebarContent:active{
  max-width: 49.5rem;
}

.active\:max-w-doubleSidebarContent:active{
  max-width: 950px;
}

.first\:max-w-none:first-child{
  max-width: none;
}

.first\:max-w-xs:first-child{
  max-width: 20rem;
}

.first\:max-w-sm:first-child{
  max-width: 24rem;
}

.first\:max-w-md:first-child{
  max-width: 28rem;
}

.first\:max-w-lg:first-child{
  max-width: 32rem;
}

.first\:max-w-xl:first-child{
  max-width: 36rem;
}

.first\:max-w-2xl:first-child{
  max-width: 42rem;
}

.first\:max-w-3xl:first-child{
  max-width: 48rem;
}

.first\:max-w-4xl:first-child{
  max-width: 56rem;
}

.first\:max-w-5xl:first-child{
  max-width: 64rem;
}

.first\:max-w-6xl:first-child{
  max-width: 72rem;
}

.first\:max-w-full:first-child{
  max-width: 100%;
}

.first\:max-w-screen-sm:first-child{
  max-width: 640px;
}

.first\:max-w-screen-s1440:first-child{
  max-width: 1430px;
}

.first\:max-w-screen-s1920:first-child{
  max-width: 1910px;
}

.first\:max-w-page:first-child{
  max-width: 80rem;
}

.first\:max-w-container:first-child{
  max-width: 77.25rem;
}

.first\:max-w-modalMd:first-child{
  max-width: 37.5rem;
}

.first\:max-w-modalMdXl:first-child{
  max-width: 52.5rem;
}

.first\:max-w-modalLg:first-child{
  max-width: 77.25rem;
}

.first\:max-w-input:first-child{
  max-width: 32.5rem;
}

.first\:max-w-halfInput:first-child{
  max-width: 16.25rem;
}

.first\:max-w-formContainer:first-child{
  max-width: 47.875rem;
}

.first\:max-w-sidebar:first-child{
  max-width: 27rem;
}

.first\:max-w-doubleSidebar:first-child{
  max-width: 475px;
}

.first\:max-w-practiceSidebarContent:first-child{
  max-width: 49.5rem;
}

.first\:max-w-doubleSidebarContent:first-child{
  max-width: 950px;
}

.last\:max-w-none:last-child{
  max-width: none;
}

.last\:max-w-xs:last-child{
  max-width: 20rem;
}

.last\:max-w-sm:last-child{
  max-width: 24rem;
}

.last\:max-w-md:last-child{
  max-width: 28rem;
}

.last\:max-w-lg:last-child{
  max-width: 32rem;
}

.last\:max-w-xl:last-child{
  max-width: 36rem;
}

.last\:max-w-2xl:last-child{
  max-width: 42rem;
}

.last\:max-w-3xl:last-child{
  max-width: 48rem;
}

.last\:max-w-4xl:last-child{
  max-width: 56rem;
}

.last\:max-w-5xl:last-child{
  max-width: 64rem;
}

.last\:max-w-6xl:last-child{
  max-width: 72rem;
}

.last\:max-w-full:last-child{
  max-width: 100%;
}

.last\:max-w-screen-sm:last-child{
  max-width: 640px;
}

.last\:max-w-screen-s1440:last-child{
  max-width: 1430px;
}

.last\:max-w-screen-s1920:last-child{
  max-width: 1910px;
}

.last\:max-w-page:last-child{
  max-width: 80rem;
}

.last\:max-w-container:last-child{
  max-width: 77.25rem;
}

.last\:max-w-modalMd:last-child{
  max-width: 37.5rem;
}

.last\:max-w-modalMdXl:last-child{
  max-width: 52.5rem;
}

.last\:max-w-modalLg:last-child{
  max-width: 77.25rem;
}

.last\:max-w-input:last-child{
  max-width: 32.5rem;
}

.last\:max-w-halfInput:last-child{
  max-width: 16.25rem;
}

.last\:max-w-formContainer:last-child{
  max-width: 47.875rem;
}

.last\:max-w-sidebar:last-child{
  max-width: 27rem;
}

.last\:max-w-doubleSidebar:last-child{
  max-width: 475px;
}

.last\:max-w-practiceSidebarContent:last-child{
  max-width: 49.5rem;
}

.last\:max-w-doubleSidebarContent:last-child{
  max-width: 950px;
}

.min-h-0{
  min-height: 0;
}

.min-h-1{
  min-height: 0.25rem;
}

.min-h-2{
  min-height: 0.5rem;
}

.min-h-3{
  min-height: 0.75rem;
}

.min-h-4{
  min-height: 1rem;
}

.min-h-5{
  min-height: 1.25rem;
}

.min-h-6{
  min-height: 1.5rem;
}

.min-h-8{
  min-height: 2rem;
}

.min-h-10{
  min-height: 2.5rem;
}

.min-h-12{
  min-height: 3rem;
}

.min-h-14{
  min-height: 3.5rem;
}

.min-h-16{
  min-height: 4rem;
}

.min-h-20{
  min-height: 5rem;
}

.min-h-24{
  min-height: 6rem;
}

.min-h-28{
  min-height: 7rem;
}

.min-h-32{
  min-height: 8rem;
}

.min-h-40{
  min-height: 10rem;
}

.min-h-48{
  min-height: 12rem;
}

.min-h-56{
  min-height: 14rem;
}

.min-h-64{
  min-height: 16rem;
}

.min-h-full{
  min-height: 100%;
}

.min-h-screen{
  min-height: 100vh;
}

.min-h-auto{
  min-height: auto;
}

.min-h-px{
  min-height: 1px;
}

.min-h-modal{
  min-height: 20rem;
}

.hover\:min-h-0:hover{
  min-height: 0;
}

.hover\:min-h-1:hover{
  min-height: 0.25rem;
}

.hover\:min-h-2:hover{
  min-height: 0.5rem;
}

.hover\:min-h-3:hover{
  min-height: 0.75rem;
}

.hover\:min-h-4:hover{
  min-height: 1rem;
}

.hover\:min-h-5:hover{
  min-height: 1.25rem;
}

.hover\:min-h-6:hover{
  min-height: 1.5rem;
}

.hover\:min-h-8:hover{
  min-height: 2rem;
}

.hover\:min-h-10:hover{
  min-height: 2.5rem;
}

.hover\:min-h-12:hover{
  min-height: 3rem;
}

.hover\:min-h-14:hover{
  min-height: 3.5rem;
}

.hover\:min-h-16:hover{
  min-height: 4rem;
}

.hover\:min-h-20:hover{
  min-height: 5rem;
}

.hover\:min-h-24:hover{
  min-height: 6rem;
}

.hover\:min-h-28:hover{
  min-height: 7rem;
}

.hover\:min-h-32:hover{
  min-height: 8rem;
}

.hover\:min-h-40:hover{
  min-height: 10rem;
}

.hover\:min-h-48:hover{
  min-height: 12rem;
}

.hover\:min-h-56:hover{
  min-height: 14rem;
}

.hover\:min-h-64:hover{
  min-height: 16rem;
}

.hover\:min-h-full:hover{
  min-height: 100%;
}

.hover\:min-h-screen:hover{
  min-height: 100vh;
}

.hover\:min-h-auto:hover{
  min-height: auto;
}

.hover\:min-h-px:hover{
  min-height: 1px;
}

.hover\:min-h-modal:hover{
  min-height: 20rem;
}

.focus\:min-h-0:focus{
  min-height: 0;
}

.focus\:min-h-1:focus{
  min-height: 0.25rem;
}

.focus\:min-h-2:focus{
  min-height: 0.5rem;
}

.focus\:min-h-3:focus{
  min-height: 0.75rem;
}

.focus\:min-h-4:focus{
  min-height: 1rem;
}

.focus\:min-h-5:focus{
  min-height: 1.25rem;
}

.focus\:min-h-6:focus{
  min-height: 1.5rem;
}

.focus\:min-h-8:focus{
  min-height: 2rem;
}

.focus\:min-h-10:focus{
  min-height: 2.5rem;
}

.focus\:min-h-12:focus{
  min-height: 3rem;
}

.focus\:min-h-14:focus{
  min-height: 3.5rem;
}

.focus\:min-h-16:focus{
  min-height: 4rem;
}

.focus\:min-h-20:focus{
  min-height: 5rem;
}

.focus\:min-h-24:focus{
  min-height: 6rem;
}

.focus\:min-h-28:focus{
  min-height: 7rem;
}

.focus\:min-h-32:focus{
  min-height: 8rem;
}

.focus\:min-h-40:focus{
  min-height: 10rem;
}

.focus\:min-h-48:focus{
  min-height: 12rem;
}

.focus\:min-h-56:focus{
  min-height: 14rem;
}

.focus\:min-h-64:focus{
  min-height: 16rem;
}

.focus\:min-h-full:focus{
  min-height: 100%;
}

.focus\:min-h-screen:focus{
  min-height: 100vh;
}

.focus\:min-h-auto:focus{
  min-height: auto;
}

.focus\:min-h-px:focus{
  min-height: 1px;
}

.focus\:min-h-modal:focus{
  min-height: 20rem;
}

.active\:min-h-0:active{
  min-height: 0;
}

.active\:min-h-1:active{
  min-height: 0.25rem;
}

.active\:min-h-2:active{
  min-height: 0.5rem;
}

.active\:min-h-3:active{
  min-height: 0.75rem;
}

.active\:min-h-4:active{
  min-height: 1rem;
}

.active\:min-h-5:active{
  min-height: 1.25rem;
}

.active\:min-h-6:active{
  min-height: 1.5rem;
}

.active\:min-h-8:active{
  min-height: 2rem;
}

.active\:min-h-10:active{
  min-height: 2.5rem;
}

.active\:min-h-12:active{
  min-height: 3rem;
}

.active\:min-h-14:active{
  min-height: 3.5rem;
}

.active\:min-h-16:active{
  min-height: 4rem;
}

.active\:min-h-20:active{
  min-height: 5rem;
}

.active\:min-h-24:active{
  min-height: 6rem;
}

.active\:min-h-28:active{
  min-height: 7rem;
}

.active\:min-h-32:active{
  min-height: 8rem;
}

.active\:min-h-40:active{
  min-height: 10rem;
}

.active\:min-h-48:active{
  min-height: 12rem;
}

.active\:min-h-56:active{
  min-height: 14rem;
}

.active\:min-h-64:active{
  min-height: 16rem;
}

.active\:min-h-full:active{
  min-height: 100%;
}

.active\:min-h-screen:active{
  min-height: 100vh;
}

.active\:min-h-auto:active{
  min-height: auto;
}

.active\:min-h-px:active{
  min-height: 1px;
}

.active\:min-h-modal:active{
  min-height: 20rem;
}

.first\:min-h-0:first-child{
  min-height: 0;
}

.first\:min-h-1:first-child{
  min-height: 0.25rem;
}

.first\:min-h-2:first-child{
  min-height: 0.5rem;
}

.first\:min-h-3:first-child{
  min-height: 0.75rem;
}

.first\:min-h-4:first-child{
  min-height: 1rem;
}

.first\:min-h-5:first-child{
  min-height: 1.25rem;
}

.first\:min-h-6:first-child{
  min-height: 1.5rem;
}

.first\:min-h-8:first-child{
  min-height: 2rem;
}

.first\:min-h-10:first-child{
  min-height: 2.5rem;
}

.first\:min-h-12:first-child{
  min-height: 3rem;
}

.first\:min-h-14:first-child{
  min-height: 3.5rem;
}

.first\:min-h-16:first-child{
  min-height: 4rem;
}

.first\:min-h-20:first-child{
  min-height: 5rem;
}

.first\:min-h-24:first-child{
  min-height: 6rem;
}

.first\:min-h-28:first-child{
  min-height: 7rem;
}

.first\:min-h-32:first-child{
  min-height: 8rem;
}

.first\:min-h-40:first-child{
  min-height: 10rem;
}

.first\:min-h-48:first-child{
  min-height: 12rem;
}

.first\:min-h-56:first-child{
  min-height: 14rem;
}

.first\:min-h-64:first-child{
  min-height: 16rem;
}

.first\:min-h-full:first-child{
  min-height: 100%;
}

.first\:min-h-screen:first-child{
  min-height: 100vh;
}

.first\:min-h-auto:first-child{
  min-height: auto;
}

.first\:min-h-px:first-child{
  min-height: 1px;
}

.first\:min-h-modal:first-child{
  min-height: 20rem;
}

.last\:min-h-0:last-child{
  min-height: 0;
}

.last\:min-h-1:last-child{
  min-height: 0.25rem;
}

.last\:min-h-2:last-child{
  min-height: 0.5rem;
}

.last\:min-h-3:last-child{
  min-height: 0.75rem;
}

.last\:min-h-4:last-child{
  min-height: 1rem;
}

.last\:min-h-5:last-child{
  min-height: 1.25rem;
}

.last\:min-h-6:last-child{
  min-height: 1.5rem;
}

.last\:min-h-8:last-child{
  min-height: 2rem;
}

.last\:min-h-10:last-child{
  min-height: 2.5rem;
}

.last\:min-h-12:last-child{
  min-height: 3rem;
}

.last\:min-h-14:last-child{
  min-height: 3.5rem;
}

.last\:min-h-16:last-child{
  min-height: 4rem;
}

.last\:min-h-20:last-child{
  min-height: 5rem;
}

.last\:min-h-24:last-child{
  min-height: 6rem;
}

.last\:min-h-28:last-child{
  min-height: 7rem;
}

.last\:min-h-32:last-child{
  min-height: 8rem;
}

.last\:min-h-40:last-child{
  min-height: 10rem;
}

.last\:min-h-48:last-child{
  min-height: 12rem;
}

.last\:min-h-56:last-child{
  min-height: 14rem;
}

.last\:min-h-64:last-child{
  min-height: 16rem;
}

.last\:min-h-full:last-child{
  min-height: 100%;
}

.last\:min-h-screen:last-child{
  min-height: 100vh;
}

.last\:min-h-auto:last-child{
  min-height: auto;
}

.last\:min-h-px:last-child{
  min-height: 1px;
}

.last\:min-h-modal:last-child{
  min-height: 20rem;
}

.min-w-0{
  min-width: 0;
}

.min-w-1{
  min-width: 0.25rem;
}

.min-w-2{
  min-width: 0.5rem;
}

.min-w-3{
  min-width: 0.75rem;
}

.min-w-4{
  min-width: 1rem;
}

.min-w-5{
  min-width: 1.25rem;
}

.min-w-6{
  min-width: 1.5rem;
}

.min-w-8{
  min-width: 2rem;
}

.min-w-10{
  min-width: 2.5rem;
}

.min-w-12{
  min-width: 3rem;
}

.min-w-14{
  min-width: 3.5rem;
}

.min-w-16{
  min-width: 4rem;
}

.min-w-20{
  min-width: 5rem;
}

.min-w-24{
  min-width: 6rem;
}

.min-w-32{
  min-width: 8rem;
}

.min-w-36{
  min-width: 9rem;
}

.min-w-40{
  min-width: 10rem;
}

.min-w-48{
  min-width: 12rem;
}

.min-w-56{
  min-width: 14rem;
}

.min-w-64{
  min-width: 16rem;
}

.min-w-full{
  min-width: 100%;
}

.min-w-auto{
  min-width: auto;
}

.min-w-px{
  min-width: 1px;
}

.min-w-1\/2{
  min-width: 50%;
}

.min-w-1\/3{
  min-width: 33.333333%;
}

.min-w-2\/3{
  min-width: 66.666667%;
}

.min-w-1\/4{
  min-width: 25%;
}

.min-w-2\/4{
  min-width: 50%;
}

.min-w-3\/4{
  min-width: 75%;
}

.min-w-1\/5{
  min-width: 20%;
}

.min-w-2\/5{
  min-width: 40%;
}

.min-w-3\/5{
  min-width: 60%;
}

.min-w-4\/5{
  min-width: 80%;
}

.min-w-1\/6{
  min-width: 16.666667%;
}

.min-w-2\/6{
  min-width: 33.333333%;
}

.min-w-3\/6{
  min-width: 50%;
}

.min-w-4\/6{
  min-width: 66.666667%;
}

.min-w-5\/6{
  min-width: 83.333333%;
}

.min-w-1\/12{
  min-width: 8.333333%;
}

.min-w-2\/12{
  min-width: 16.666667%;
}

.min-w-3\/12{
  min-width: 25%;
}

.min-w-4\/12{
  min-width: 33.333333%;
}

.min-w-5\/12{
  min-width: 41.666667%;
}

.min-w-6\/12{
  min-width: 50%;
}

.min-w-7\/12{
  min-width: 58.333333%;
}

.min-w-8\/12{
  min-width: 66.666667%;
}

.min-w-9\/12{
  min-width: 75%;
}

.min-w-10\/12{
  min-width: 83.333333%;
}

.min-w-11\/12{
  min-width: 91.666667%;
}

.min-w-screen{
  min-width: 100vw;
}

.min-w-widePage{
  min-width: 120rem;
}

.min-w-page{
  min-width: 80rem;
}

.min-w-container{
  min-width: 77.25rem;
}

.min-w-tooltip{
  min-width: 25rem;
}

.min-w-smallTooltip{
  min-width: 15rem;
}

.min-w-xsmallTooltip{
  min-width: 6.0rem;
}

.min-w-sidebar{
  min-width: 27rem;
}

.min-w-doubleSidebar{
  min-width: 360px;
}

.min-w-practiceSidebar{
  min-width: 22.5rem;
}

.min-w-3\/8{
  min-width: 37.5%;
}

.min-w-1\/10{
  min-width: 10%;
}

.min-w-2\/10{
  min-width: 20%;
}

.min-w-3\/10{
  min-width: 30%;
}

.min-w-4\/10{
  min-width: 40%;
}

.min-w-5\/10{
  min-width: 50%;
}

.min-w-6\/10{
  min-width: 60%;
}

.min-w-7\/10{
  min-width: 70%;
}

.min-w-8\/10{
  min-width: 80%;
}

.min-w-9\/10{
  min-width: 90%;
}

.min-w-input{
  min-width: 15.75rem;
}

.min-w-inherit{
  min-width: inherit;
}

.min-w-modalMd{
  min-width: 37.5rem;
}

.min-w-modalMdXl{
  min-width: 52.5rem;
}

.min-w-modalLg{
  min-width: 77.25rem;
}

.min-w-doubleSidebarContent{
  min-width: 720px;
}

.hover\:min-w-0:hover{
  min-width: 0;
}

.hover\:min-w-1:hover{
  min-width: 0.25rem;
}

.hover\:min-w-2:hover{
  min-width: 0.5rem;
}

.hover\:min-w-3:hover{
  min-width: 0.75rem;
}

.hover\:min-w-4:hover{
  min-width: 1rem;
}

.hover\:min-w-5:hover{
  min-width: 1.25rem;
}

.hover\:min-w-6:hover{
  min-width: 1.5rem;
}

.hover\:min-w-8:hover{
  min-width: 2rem;
}

.hover\:min-w-10:hover{
  min-width: 2.5rem;
}

.hover\:min-w-12:hover{
  min-width: 3rem;
}

.hover\:min-w-14:hover{
  min-width: 3.5rem;
}

.hover\:min-w-16:hover{
  min-width: 4rem;
}

.hover\:min-w-20:hover{
  min-width: 5rem;
}

.hover\:min-w-24:hover{
  min-width: 6rem;
}

.hover\:min-w-32:hover{
  min-width: 8rem;
}

.hover\:min-w-36:hover{
  min-width: 9rem;
}

.hover\:min-w-40:hover{
  min-width: 10rem;
}

.hover\:min-w-48:hover{
  min-width: 12rem;
}

.hover\:min-w-56:hover{
  min-width: 14rem;
}

.hover\:min-w-64:hover{
  min-width: 16rem;
}

.hover\:min-w-full:hover{
  min-width: 100%;
}

.hover\:min-w-auto:hover{
  min-width: auto;
}

.hover\:min-w-px:hover{
  min-width: 1px;
}

.hover\:min-w-1\/2:hover{
  min-width: 50%;
}

.hover\:min-w-1\/3:hover{
  min-width: 33.333333%;
}

.hover\:min-w-2\/3:hover{
  min-width: 66.666667%;
}

.hover\:min-w-1\/4:hover{
  min-width: 25%;
}

.hover\:min-w-2\/4:hover{
  min-width: 50%;
}

.hover\:min-w-3\/4:hover{
  min-width: 75%;
}

.hover\:min-w-1\/5:hover{
  min-width: 20%;
}

.hover\:min-w-2\/5:hover{
  min-width: 40%;
}

.hover\:min-w-3\/5:hover{
  min-width: 60%;
}

.hover\:min-w-4\/5:hover{
  min-width: 80%;
}

.hover\:min-w-1\/6:hover{
  min-width: 16.666667%;
}

.hover\:min-w-2\/6:hover{
  min-width: 33.333333%;
}

.hover\:min-w-3\/6:hover{
  min-width: 50%;
}

.hover\:min-w-4\/6:hover{
  min-width: 66.666667%;
}

.hover\:min-w-5\/6:hover{
  min-width: 83.333333%;
}

.hover\:min-w-1\/12:hover{
  min-width: 8.333333%;
}

.hover\:min-w-2\/12:hover{
  min-width: 16.666667%;
}

.hover\:min-w-3\/12:hover{
  min-width: 25%;
}

.hover\:min-w-4\/12:hover{
  min-width: 33.333333%;
}

.hover\:min-w-5\/12:hover{
  min-width: 41.666667%;
}

.hover\:min-w-6\/12:hover{
  min-width: 50%;
}

.hover\:min-w-7\/12:hover{
  min-width: 58.333333%;
}

.hover\:min-w-8\/12:hover{
  min-width: 66.666667%;
}

.hover\:min-w-9\/12:hover{
  min-width: 75%;
}

.hover\:min-w-10\/12:hover{
  min-width: 83.333333%;
}

.hover\:min-w-11\/12:hover{
  min-width: 91.666667%;
}

.hover\:min-w-screen:hover{
  min-width: 100vw;
}

.hover\:min-w-widePage:hover{
  min-width: 120rem;
}

.hover\:min-w-page:hover{
  min-width: 80rem;
}

.hover\:min-w-container:hover{
  min-width: 77.25rem;
}

.hover\:min-w-tooltip:hover{
  min-width: 25rem;
}

.hover\:min-w-smallTooltip:hover{
  min-width: 15rem;
}

.hover\:min-w-xsmallTooltip:hover{
  min-width: 6.0rem;
}

.hover\:min-w-sidebar:hover{
  min-width: 27rem;
}

.hover\:min-w-doubleSidebar:hover{
  min-width: 360px;
}

.hover\:min-w-practiceSidebar:hover{
  min-width: 22.5rem;
}

.hover\:min-w-3\/8:hover{
  min-width: 37.5%;
}

.hover\:min-w-1\/10:hover{
  min-width: 10%;
}

.hover\:min-w-2\/10:hover{
  min-width: 20%;
}

.hover\:min-w-3\/10:hover{
  min-width: 30%;
}

.hover\:min-w-4\/10:hover{
  min-width: 40%;
}

.hover\:min-w-5\/10:hover{
  min-width: 50%;
}

.hover\:min-w-6\/10:hover{
  min-width: 60%;
}

.hover\:min-w-7\/10:hover{
  min-width: 70%;
}

.hover\:min-w-8\/10:hover{
  min-width: 80%;
}

.hover\:min-w-9\/10:hover{
  min-width: 90%;
}

.hover\:min-w-input:hover{
  min-width: 15.75rem;
}

.hover\:min-w-inherit:hover{
  min-width: inherit;
}

.hover\:min-w-modalMd:hover{
  min-width: 37.5rem;
}

.hover\:min-w-modalMdXl:hover{
  min-width: 52.5rem;
}

.hover\:min-w-modalLg:hover{
  min-width: 77.25rem;
}

.hover\:min-w-doubleSidebarContent:hover{
  min-width: 720px;
}

.focus\:min-w-0:focus{
  min-width: 0;
}

.focus\:min-w-1:focus{
  min-width: 0.25rem;
}

.focus\:min-w-2:focus{
  min-width: 0.5rem;
}

.focus\:min-w-3:focus{
  min-width: 0.75rem;
}

.focus\:min-w-4:focus{
  min-width: 1rem;
}

.focus\:min-w-5:focus{
  min-width: 1.25rem;
}

.focus\:min-w-6:focus{
  min-width: 1.5rem;
}

.focus\:min-w-8:focus{
  min-width: 2rem;
}

.focus\:min-w-10:focus{
  min-width: 2.5rem;
}

.focus\:min-w-12:focus{
  min-width: 3rem;
}

.focus\:min-w-14:focus{
  min-width: 3.5rem;
}

.focus\:min-w-16:focus{
  min-width: 4rem;
}

.focus\:min-w-20:focus{
  min-width: 5rem;
}

.focus\:min-w-24:focus{
  min-width: 6rem;
}

.focus\:min-w-32:focus{
  min-width: 8rem;
}

.focus\:min-w-36:focus{
  min-width: 9rem;
}

.focus\:min-w-40:focus{
  min-width: 10rem;
}

.focus\:min-w-48:focus{
  min-width: 12rem;
}

.focus\:min-w-56:focus{
  min-width: 14rem;
}

.focus\:min-w-64:focus{
  min-width: 16rem;
}

.focus\:min-w-full:focus{
  min-width: 100%;
}

.focus\:min-w-auto:focus{
  min-width: auto;
}

.focus\:min-w-px:focus{
  min-width: 1px;
}

.focus\:min-w-1\/2:focus{
  min-width: 50%;
}

.focus\:min-w-1\/3:focus{
  min-width: 33.333333%;
}

.focus\:min-w-2\/3:focus{
  min-width: 66.666667%;
}

.focus\:min-w-1\/4:focus{
  min-width: 25%;
}

.focus\:min-w-2\/4:focus{
  min-width: 50%;
}

.focus\:min-w-3\/4:focus{
  min-width: 75%;
}

.focus\:min-w-1\/5:focus{
  min-width: 20%;
}

.focus\:min-w-2\/5:focus{
  min-width: 40%;
}

.focus\:min-w-3\/5:focus{
  min-width: 60%;
}

.focus\:min-w-4\/5:focus{
  min-width: 80%;
}

.focus\:min-w-1\/6:focus{
  min-width: 16.666667%;
}

.focus\:min-w-2\/6:focus{
  min-width: 33.333333%;
}

.focus\:min-w-3\/6:focus{
  min-width: 50%;
}

.focus\:min-w-4\/6:focus{
  min-width: 66.666667%;
}

.focus\:min-w-5\/6:focus{
  min-width: 83.333333%;
}

.focus\:min-w-1\/12:focus{
  min-width: 8.333333%;
}

.focus\:min-w-2\/12:focus{
  min-width: 16.666667%;
}

.focus\:min-w-3\/12:focus{
  min-width: 25%;
}

.focus\:min-w-4\/12:focus{
  min-width: 33.333333%;
}

.focus\:min-w-5\/12:focus{
  min-width: 41.666667%;
}

.focus\:min-w-6\/12:focus{
  min-width: 50%;
}

.focus\:min-w-7\/12:focus{
  min-width: 58.333333%;
}

.focus\:min-w-8\/12:focus{
  min-width: 66.666667%;
}

.focus\:min-w-9\/12:focus{
  min-width: 75%;
}

.focus\:min-w-10\/12:focus{
  min-width: 83.333333%;
}

.focus\:min-w-11\/12:focus{
  min-width: 91.666667%;
}

.focus\:min-w-screen:focus{
  min-width: 100vw;
}

.focus\:min-w-widePage:focus{
  min-width: 120rem;
}

.focus\:min-w-page:focus{
  min-width: 80rem;
}

.focus\:min-w-container:focus{
  min-width: 77.25rem;
}

.focus\:min-w-tooltip:focus{
  min-width: 25rem;
}

.focus\:min-w-smallTooltip:focus{
  min-width: 15rem;
}

.focus\:min-w-xsmallTooltip:focus{
  min-width: 6.0rem;
}

.focus\:min-w-sidebar:focus{
  min-width: 27rem;
}

.focus\:min-w-doubleSidebar:focus{
  min-width: 360px;
}

.focus\:min-w-practiceSidebar:focus{
  min-width: 22.5rem;
}

.focus\:min-w-3\/8:focus{
  min-width: 37.5%;
}

.focus\:min-w-1\/10:focus{
  min-width: 10%;
}

.focus\:min-w-2\/10:focus{
  min-width: 20%;
}

.focus\:min-w-3\/10:focus{
  min-width: 30%;
}

.focus\:min-w-4\/10:focus{
  min-width: 40%;
}

.focus\:min-w-5\/10:focus{
  min-width: 50%;
}

.focus\:min-w-6\/10:focus{
  min-width: 60%;
}

.focus\:min-w-7\/10:focus{
  min-width: 70%;
}

.focus\:min-w-8\/10:focus{
  min-width: 80%;
}

.focus\:min-w-9\/10:focus{
  min-width: 90%;
}

.focus\:min-w-input:focus{
  min-width: 15.75rem;
}

.focus\:min-w-inherit:focus{
  min-width: inherit;
}

.focus\:min-w-modalMd:focus{
  min-width: 37.5rem;
}

.focus\:min-w-modalMdXl:focus{
  min-width: 52.5rem;
}

.focus\:min-w-modalLg:focus{
  min-width: 77.25rem;
}

.focus\:min-w-doubleSidebarContent:focus{
  min-width: 720px;
}

.active\:min-w-0:active{
  min-width: 0;
}

.active\:min-w-1:active{
  min-width: 0.25rem;
}

.active\:min-w-2:active{
  min-width: 0.5rem;
}

.active\:min-w-3:active{
  min-width: 0.75rem;
}

.active\:min-w-4:active{
  min-width: 1rem;
}

.active\:min-w-5:active{
  min-width: 1.25rem;
}

.active\:min-w-6:active{
  min-width: 1.5rem;
}

.active\:min-w-8:active{
  min-width: 2rem;
}

.active\:min-w-10:active{
  min-width: 2.5rem;
}

.active\:min-w-12:active{
  min-width: 3rem;
}

.active\:min-w-14:active{
  min-width: 3.5rem;
}

.active\:min-w-16:active{
  min-width: 4rem;
}

.active\:min-w-20:active{
  min-width: 5rem;
}

.active\:min-w-24:active{
  min-width: 6rem;
}

.active\:min-w-32:active{
  min-width: 8rem;
}

.active\:min-w-36:active{
  min-width: 9rem;
}

.active\:min-w-40:active{
  min-width: 10rem;
}

.active\:min-w-48:active{
  min-width: 12rem;
}

.active\:min-w-56:active{
  min-width: 14rem;
}

.active\:min-w-64:active{
  min-width: 16rem;
}

.active\:min-w-full:active{
  min-width: 100%;
}

.active\:min-w-auto:active{
  min-width: auto;
}

.active\:min-w-px:active{
  min-width: 1px;
}

.active\:min-w-1\/2:active{
  min-width: 50%;
}

.active\:min-w-1\/3:active{
  min-width: 33.333333%;
}

.active\:min-w-2\/3:active{
  min-width: 66.666667%;
}

.active\:min-w-1\/4:active{
  min-width: 25%;
}

.active\:min-w-2\/4:active{
  min-width: 50%;
}

.active\:min-w-3\/4:active{
  min-width: 75%;
}

.active\:min-w-1\/5:active{
  min-width: 20%;
}

.active\:min-w-2\/5:active{
  min-width: 40%;
}

.active\:min-w-3\/5:active{
  min-width: 60%;
}

.active\:min-w-4\/5:active{
  min-width: 80%;
}

.active\:min-w-1\/6:active{
  min-width: 16.666667%;
}

.active\:min-w-2\/6:active{
  min-width: 33.333333%;
}

.active\:min-w-3\/6:active{
  min-width: 50%;
}

.active\:min-w-4\/6:active{
  min-width: 66.666667%;
}

.active\:min-w-5\/6:active{
  min-width: 83.333333%;
}

.active\:min-w-1\/12:active{
  min-width: 8.333333%;
}

.active\:min-w-2\/12:active{
  min-width: 16.666667%;
}

.active\:min-w-3\/12:active{
  min-width: 25%;
}

.active\:min-w-4\/12:active{
  min-width: 33.333333%;
}

.active\:min-w-5\/12:active{
  min-width: 41.666667%;
}

.active\:min-w-6\/12:active{
  min-width: 50%;
}

.active\:min-w-7\/12:active{
  min-width: 58.333333%;
}

.active\:min-w-8\/12:active{
  min-width: 66.666667%;
}

.active\:min-w-9\/12:active{
  min-width: 75%;
}

.active\:min-w-10\/12:active{
  min-width: 83.333333%;
}

.active\:min-w-11\/12:active{
  min-width: 91.666667%;
}

.active\:min-w-screen:active{
  min-width: 100vw;
}

.active\:min-w-widePage:active{
  min-width: 120rem;
}

.active\:min-w-page:active{
  min-width: 80rem;
}

.active\:min-w-container:active{
  min-width: 77.25rem;
}

.active\:min-w-tooltip:active{
  min-width: 25rem;
}

.active\:min-w-smallTooltip:active{
  min-width: 15rem;
}

.active\:min-w-xsmallTooltip:active{
  min-width: 6.0rem;
}

.active\:min-w-sidebar:active{
  min-width: 27rem;
}

.active\:min-w-doubleSidebar:active{
  min-width: 360px;
}

.active\:min-w-practiceSidebar:active{
  min-width: 22.5rem;
}

.active\:min-w-3\/8:active{
  min-width: 37.5%;
}

.active\:min-w-1\/10:active{
  min-width: 10%;
}

.active\:min-w-2\/10:active{
  min-width: 20%;
}

.active\:min-w-3\/10:active{
  min-width: 30%;
}

.active\:min-w-4\/10:active{
  min-width: 40%;
}

.active\:min-w-5\/10:active{
  min-width: 50%;
}

.active\:min-w-6\/10:active{
  min-width: 60%;
}

.active\:min-w-7\/10:active{
  min-width: 70%;
}

.active\:min-w-8\/10:active{
  min-width: 80%;
}

.active\:min-w-9\/10:active{
  min-width: 90%;
}

.active\:min-w-input:active{
  min-width: 15.75rem;
}

.active\:min-w-inherit:active{
  min-width: inherit;
}

.active\:min-w-modalMd:active{
  min-width: 37.5rem;
}

.active\:min-w-modalMdXl:active{
  min-width: 52.5rem;
}

.active\:min-w-modalLg:active{
  min-width: 77.25rem;
}

.active\:min-w-doubleSidebarContent:active{
  min-width: 720px;
}

.first\:min-w-0:first-child{
  min-width: 0;
}

.first\:min-w-1:first-child{
  min-width: 0.25rem;
}

.first\:min-w-2:first-child{
  min-width: 0.5rem;
}

.first\:min-w-3:first-child{
  min-width: 0.75rem;
}

.first\:min-w-4:first-child{
  min-width: 1rem;
}

.first\:min-w-5:first-child{
  min-width: 1.25rem;
}

.first\:min-w-6:first-child{
  min-width: 1.5rem;
}

.first\:min-w-8:first-child{
  min-width: 2rem;
}

.first\:min-w-10:first-child{
  min-width: 2.5rem;
}

.first\:min-w-12:first-child{
  min-width: 3rem;
}

.first\:min-w-14:first-child{
  min-width: 3.5rem;
}

.first\:min-w-16:first-child{
  min-width: 4rem;
}

.first\:min-w-20:first-child{
  min-width: 5rem;
}

.first\:min-w-24:first-child{
  min-width: 6rem;
}

.first\:min-w-32:first-child{
  min-width: 8rem;
}

.first\:min-w-36:first-child{
  min-width: 9rem;
}

.first\:min-w-40:first-child{
  min-width: 10rem;
}

.first\:min-w-48:first-child{
  min-width: 12rem;
}

.first\:min-w-56:first-child{
  min-width: 14rem;
}

.first\:min-w-64:first-child{
  min-width: 16rem;
}

.first\:min-w-full:first-child{
  min-width: 100%;
}

.first\:min-w-auto:first-child{
  min-width: auto;
}

.first\:min-w-px:first-child{
  min-width: 1px;
}

.first\:min-w-1\/2:first-child{
  min-width: 50%;
}

.first\:min-w-1\/3:first-child{
  min-width: 33.333333%;
}

.first\:min-w-2\/3:first-child{
  min-width: 66.666667%;
}

.first\:min-w-1\/4:first-child{
  min-width: 25%;
}

.first\:min-w-2\/4:first-child{
  min-width: 50%;
}

.first\:min-w-3\/4:first-child{
  min-width: 75%;
}

.first\:min-w-1\/5:first-child{
  min-width: 20%;
}

.first\:min-w-2\/5:first-child{
  min-width: 40%;
}

.first\:min-w-3\/5:first-child{
  min-width: 60%;
}

.first\:min-w-4\/5:first-child{
  min-width: 80%;
}

.first\:min-w-1\/6:first-child{
  min-width: 16.666667%;
}

.first\:min-w-2\/6:first-child{
  min-width: 33.333333%;
}

.first\:min-w-3\/6:first-child{
  min-width: 50%;
}

.first\:min-w-4\/6:first-child{
  min-width: 66.666667%;
}

.first\:min-w-5\/6:first-child{
  min-width: 83.333333%;
}

.first\:min-w-1\/12:first-child{
  min-width: 8.333333%;
}

.first\:min-w-2\/12:first-child{
  min-width: 16.666667%;
}

.first\:min-w-3\/12:first-child{
  min-width: 25%;
}

.first\:min-w-4\/12:first-child{
  min-width: 33.333333%;
}

.first\:min-w-5\/12:first-child{
  min-width: 41.666667%;
}

.first\:min-w-6\/12:first-child{
  min-width: 50%;
}

.first\:min-w-7\/12:first-child{
  min-width: 58.333333%;
}

.first\:min-w-8\/12:first-child{
  min-width: 66.666667%;
}

.first\:min-w-9\/12:first-child{
  min-width: 75%;
}

.first\:min-w-10\/12:first-child{
  min-width: 83.333333%;
}

.first\:min-w-11\/12:first-child{
  min-width: 91.666667%;
}

.first\:min-w-screen:first-child{
  min-width: 100vw;
}

.first\:min-w-widePage:first-child{
  min-width: 120rem;
}

.first\:min-w-page:first-child{
  min-width: 80rem;
}

.first\:min-w-container:first-child{
  min-width: 77.25rem;
}

.first\:min-w-tooltip:first-child{
  min-width: 25rem;
}

.first\:min-w-smallTooltip:first-child{
  min-width: 15rem;
}

.first\:min-w-xsmallTooltip:first-child{
  min-width: 6.0rem;
}

.first\:min-w-sidebar:first-child{
  min-width: 27rem;
}

.first\:min-w-doubleSidebar:first-child{
  min-width: 360px;
}

.first\:min-w-practiceSidebar:first-child{
  min-width: 22.5rem;
}

.first\:min-w-3\/8:first-child{
  min-width: 37.5%;
}

.first\:min-w-1\/10:first-child{
  min-width: 10%;
}

.first\:min-w-2\/10:first-child{
  min-width: 20%;
}

.first\:min-w-3\/10:first-child{
  min-width: 30%;
}

.first\:min-w-4\/10:first-child{
  min-width: 40%;
}

.first\:min-w-5\/10:first-child{
  min-width: 50%;
}

.first\:min-w-6\/10:first-child{
  min-width: 60%;
}

.first\:min-w-7\/10:first-child{
  min-width: 70%;
}

.first\:min-w-8\/10:first-child{
  min-width: 80%;
}

.first\:min-w-9\/10:first-child{
  min-width: 90%;
}

.first\:min-w-input:first-child{
  min-width: 15.75rem;
}

.first\:min-w-inherit:first-child{
  min-width: inherit;
}

.first\:min-w-modalMd:first-child{
  min-width: 37.5rem;
}

.first\:min-w-modalMdXl:first-child{
  min-width: 52.5rem;
}

.first\:min-w-modalLg:first-child{
  min-width: 77.25rem;
}

.first\:min-w-doubleSidebarContent:first-child{
  min-width: 720px;
}

.last\:min-w-0:last-child{
  min-width: 0;
}

.last\:min-w-1:last-child{
  min-width: 0.25rem;
}

.last\:min-w-2:last-child{
  min-width: 0.5rem;
}

.last\:min-w-3:last-child{
  min-width: 0.75rem;
}

.last\:min-w-4:last-child{
  min-width: 1rem;
}

.last\:min-w-5:last-child{
  min-width: 1.25rem;
}

.last\:min-w-6:last-child{
  min-width: 1.5rem;
}

.last\:min-w-8:last-child{
  min-width: 2rem;
}

.last\:min-w-10:last-child{
  min-width: 2.5rem;
}

.last\:min-w-12:last-child{
  min-width: 3rem;
}

.last\:min-w-14:last-child{
  min-width: 3.5rem;
}

.last\:min-w-16:last-child{
  min-width: 4rem;
}

.last\:min-w-20:last-child{
  min-width: 5rem;
}

.last\:min-w-24:last-child{
  min-width: 6rem;
}

.last\:min-w-32:last-child{
  min-width: 8rem;
}

.last\:min-w-36:last-child{
  min-width: 9rem;
}

.last\:min-w-40:last-child{
  min-width: 10rem;
}

.last\:min-w-48:last-child{
  min-width: 12rem;
}

.last\:min-w-56:last-child{
  min-width: 14rem;
}

.last\:min-w-64:last-child{
  min-width: 16rem;
}

.last\:min-w-full:last-child{
  min-width: 100%;
}

.last\:min-w-auto:last-child{
  min-width: auto;
}

.last\:min-w-px:last-child{
  min-width: 1px;
}

.last\:min-w-1\/2:last-child{
  min-width: 50%;
}

.last\:min-w-1\/3:last-child{
  min-width: 33.333333%;
}

.last\:min-w-2\/3:last-child{
  min-width: 66.666667%;
}

.last\:min-w-1\/4:last-child{
  min-width: 25%;
}

.last\:min-w-2\/4:last-child{
  min-width: 50%;
}

.last\:min-w-3\/4:last-child{
  min-width: 75%;
}

.last\:min-w-1\/5:last-child{
  min-width: 20%;
}

.last\:min-w-2\/5:last-child{
  min-width: 40%;
}

.last\:min-w-3\/5:last-child{
  min-width: 60%;
}

.last\:min-w-4\/5:last-child{
  min-width: 80%;
}

.last\:min-w-1\/6:last-child{
  min-width: 16.666667%;
}

.last\:min-w-2\/6:last-child{
  min-width: 33.333333%;
}

.last\:min-w-3\/6:last-child{
  min-width: 50%;
}

.last\:min-w-4\/6:last-child{
  min-width: 66.666667%;
}

.last\:min-w-5\/6:last-child{
  min-width: 83.333333%;
}

.last\:min-w-1\/12:last-child{
  min-width: 8.333333%;
}

.last\:min-w-2\/12:last-child{
  min-width: 16.666667%;
}

.last\:min-w-3\/12:last-child{
  min-width: 25%;
}

.last\:min-w-4\/12:last-child{
  min-width: 33.333333%;
}

.last\:min-w-5\/12:last-child{
  min-width: 41.666667%;
}

.last\:min-w-6\/12:last-child{
  min-width: 50%;
}

.last\:min-w-7\/12:last-child{
  min-width: 58.333333%;
}

.last\:min-w-8\/12:last-child{
  min-width: 66.666667%;
}

.last\:min-w-9\/12:last-child{
  min-width: 75%;
}

.last\:min-w-10\/12:last-child{
  min-width: 83.333333%;
}

.last\:min-w-11\/12:last-child{
  min-width: 91.666667%;
}

.last\:min-w-screen:last-child{
  min-width: 100vw;
}

.last\:min-w-widePage:last-child{
  min-width: 120rem;
}

.last\:min-w-page:last-child{
  min-width: 80rem;
}

.last\:min-w-container:last-child{
  min-width: 77.25rem;
}

.last\:min-w-tooltip:last-child{
  min-width: 25rem;
}

.last\:min-w-smallTooltip:last-child{
  min-width: 15rem;
}

.last\:min-w-xsmallTooltip:last-child{
  min-width: 6.0rem;
}

.last\:min-w-sidebar:last-child{
  min-width: 27rem;
}

.last\:min-w-doubleSidebar:last-child{
  min-width: 360px;
}

.last\:min-w-practiceSidebar:last-child{
  min-width: 22.5rem;
}

.last\:min-w-3\/8:last-child{
  min-width: 37.5%;
}

.last\:min-w-1\/10:last-child{
  min-width: 10%;
}

.last\:min-w-2\/10:last-child{
  min-width: 20%;
}

.last\:min-w-3\/10:last-child{
  min-width: 30%;
}

.last\:min-w-4\/10:last-child{
  min-width: 40%;
}

.last\:min-w-5\/10:last-child{
  min-width: 50%;
}

.last\:min-w-6\/10:last-child{
  min-width: 60%;
}

.last\:min-w-7\/10:last-child{
  min-width: 70%;
}

.last\:min-w-8\/10:last-child{
  min-width: 80%;
}

.last\:min-w-9\/10:last-child{
  min-width: 90%;
}

.last\:min-w-input:last-child{
  min-width: 15.75rem;
}

.last\:min-w-inherit:last-child{
  min-width: inherit;
}

.last\:min-w-modalMd:last-child{
  min-width: 37.5rem;
}

.last\:min-w-modalMdXl:last-child{
  min-width: 52.5rem;
}

.last\:min-w-modalLg:last-child{
  min-width: 77.25rem;
}

.last\:min-w-doubleSidebarContent:last-child{
  min-width: 720px;
}

.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;
}

.hover\:object-contain:hover{
  -o-object-fit: contain;
     object-fit: contain;
}

.hover\:object-cover:hover{
  -o-object-fit: cover;
     object-fit: cover;
}

.hover\:object-fill:hover{
  -o-object-fit: fill;
     object-fit: fill;
}

.hover\:object-none:hover{
  -o-object-fit: none;
     object-fit: none;
}

.hover\:object-scale-down:hover{
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.focus\:object-contain:focus{
  -o-object-fit: contain;
     object-fit: contain;
}

.focus\:object-cover:focus{
  -o-object-fit: cover;
     object-fit: cover;
}

.focus\:object-fill:focus{
  -o-object-fit: fill;
     object-fit: fill;
}

.focus\:object-none:focus{
  -o-object-fit: none;
     object-fit: none;
}

.focus\:object-scale-down:focus{
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.active\:object-contain:active{
  -o-object-fit: contain;
     object-fit: contain;
}

.active\:object-cover:active{
  -o-object-fit: cover;
     object-fit: cover;
}

.active\:object-fill:active{
  -o-object-fit: fill;
     object-fit: fill;
}

.active\:object-none:active{
  -o-object-fit: none;
     object-fit: none;
}

.active\:object-scale-down:active{
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.first\:object-contain:first-child{
  -o-object-fit: contain;
     object-fit: contain;
}

.first\:object-cover:first-child{
  -o-object-fit: cover;
     object-fit: cover;
}

.first\:object-fill:first-child{
  -o-object-fit: fill;
     object-fit: fill;
}

.first\:object-none:first-child{
  -o-object-fit: none;
     object-fit: none;
}

.first\:object-scale-down:first-child{
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.last\:object-contain:last-child{
  -o-object-fit: contain;
     object-fit: contain;
}

.last\:object-cover:last-child{
  -o-object-fit: cover;
     object-fit: cover;
}

.last\:object-fill:last-child{
  -o-object-fit: fill;
     object-fit: fill;
}

.last\:object-none:last-child{
  -o-object-fit: none;
     object-fit: none;
}

.last\:object-scale-down:last-child{
  -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;
}

.hover\:object-bottom:hover{
  -o-object-position: bottom;
     object-position: bottom;
}

.hover\:object-center:hover{
  -o-object-position: center;
     object-position: center;
}

.hover\:object-left:hover{
  -o-object-position: left;
     object-position: left;
}

.hover\:object-left-bottom:hover{
  -o-object-position: left bottom;
     object-position: left bottom;
}

.hover\:object-left-top:hover{
  -o-object-position: left top;
     object-position: left top;
}

.hover\:object-right:hover{
  -o-object-position: right;
     object-position: right;
}

.hover\:object-right-bottom:hover{
  -o-object-position: right bottom;
     object-position: right bottom;
}

.hover\:object-right-top:hover{
  -o-object-position: right top;
     object-position: right top;
}

.hover\:object-top:hover{
  -o-object-position: top;
     object-position: top;
}

.focus\:object-bottom:focus{
  -o-object-position: bottom;
     object-position: bottom;
}

.focus\:object-center:focus{
  -o-object-position: center;
     object-position: center;
}

.focus\:object-left:focus{
  -o-object-position: left;
     object-position: left;
}

.focus\:object-left-bottom:focus{
  -o-object-position: left bottom;
     object-position: left bottom;
}

.focus\:object-left-top:focus{
  -o-object-position: left top;
     object-position: left top;
}

.focus\:object-right:focus{
  -o-object-position: right;
     object-position: right;
}

.focus\:object-right-bottom:focus{
  -o-object-position: right bottom;
     object-position: right bottom;
}

.focus\:object-right-top:focus{
  -o-object-position: right top;
     object-position: right top;
}

.focus\:object-top:focus{
  -o-object-position: top;
     object-position: top;
}

.active\:object-bottom:active{
  -o-object-position: bottom;
     object-position: bottom;
}

.active\:object-center:active{
  -o-object-position: center;
     object-position: center;
}

.active\:object-left:active{
  -o-object-position: left;
     object-position: left;
}

.active\:object-left-bottom:active{
  -o-object-position: left bottom;
     object-position: left bottom;
}

.active\:object-left-top:active{
  -o-object-position: left top;
     object-position: left top;
}

.active\:object-right:active{
  -o-object-position: right;
     object-position: right;
}

.active\:object-right-bottom:active{
  -o-object-position: right bottom;
     object-position: right bottom;
}

.active\:object-right-top:active{
  -o-object-position: right top;
     object-position: right top;
}

.active\:object-top:active{
  -o-object-position: top;
     object-position: top;
}

.first\:object-bottom:first-child{
  -o-object-position: bottom;
     object-position: bottom;
}

.first\:object-center:first-child{
  -o-object-position: center;
     object-position: center;
}

.first\:object-left:first-child{
  -o-object-position: left;
     object-position: left;
}

.first\:object-left-bottom:first-child{
  -o-object-position: left bottom;
     object-position: left bottom;
}

.first\:object-left-top:first-child{
  -o-object-position: left top;
     object-position: left top;
}

.first\:object-right:first-child{
  -o-object-position: right;
     object-position: right;
}

.first\:object-right-bottom:first-child{
  -o-object-position: right bottom;
     object-position: right bottom;
}

.first\:object-right-top:first-child{
  -o-object-position: right top;
     object-position: right top;
}

.first\:object-top:first-child{
  -o-object-position: top;
     object-position: top;
}

.last\:object-bottom:last-child{
  -o-object-position: bottom;
     object-position: bottom;
}

.last\:object-center:last-child{
  -o-object-position: center;
     object-position: center;
}

.last\:object-left:last-child{
  -o-object-position: left;
     object-position: left;
}

.last\:object-left-bottom:last-child{
  -o-object-position: left bottom;
     object-position: left bottom;
}

.last\:object-left-top:last-child{
  -o-object-position: left top;
     object-position: left top;
}

.last\:object-right:last-child{
  -o-object-position: right;
     object-position: right;
}

.last\:object-right-bottom:last-child{
  -o-object-position: right bottom;
     object-position: right bottom;
}

.last\:object-right-top:last-child{
  -o-object-position: right top;
     object-position: right top;
}

.last\:object-top:last-child{
  -o-object-position: top;
     object-position: top;
}

.opacity-0{
  opacity: 0;
}

.opacity-25{
  opacity: 0.25;
}

.opacity-50{
  opacity: .5;
}

.opacity-75{
  opacity: 0.75;
}

.opacity-80{
  opacity: .8;
}

.opacity-100{
  opacity: 1;
}

.hover\:opacity-0:hover{
  opacity: 0;
}

.hover\:opacity-25:hover{
  opacity: 0.25;
}

.hover\:opacity-50:hover{
  opacity: .5;
}

.hover\:opacity-75:hover{
  opacity: 0.75;
}

.hover\:opacity-80:hover{
  opacity: .8;
}

.hover\:opacity-100:hover{
  opacity: 1;
}

.focus\:opacity-0:focus{
  opacity: 0;
}

.focus\:opacity-25:focus{
  opacity: 0.25;
}

.focus\:opacity-50:focus{
  opacity: .5;
}

.focus\:opacity-75:focus{
  opacity: 0.75;
}

.focus\:opacity-80:focus{
  opacity: .8;
}

.focus\:opacity-100:focus{
  opacity: 1;
}

.active\:opacity-0:active{
  opacity: 0;
}

.active\:opacity-25:active{
  opacity: 0.25;
}

.active\:opacity-50:active{
  opacity: .5;
}

.active\:opacity-75:active{
  opacity: 0.75;
}

.active\:opacity-80:active{
  opacity: .8;
}

.active\:opacity-100:active{
  opacity: 1;
}

.first\:opacity-0:first-child{
  opacity: 0;
}

.first\:opacity-25:first-child{
  opacity: 0.25;
}

.first\:opacity-50:first-child{
  opacity: .5;
}

.first\:opacity-75:first-child{
  opacity: 0.75;
}

.first\:opacity-80:first-child{
  opacity: .8;
}

.first\:opacity-100:first-child{
  opacity: 1;
}

.last\:opacity-0:last-child{
  opacity: 0;
}

.last\:opacity-25:last-child{
  opacity: 0.25;
}

.last\:opacity-50:last-child{
  opacity: .5;
}

.last\:opacity-75:last-child{
  opacity: 0.75;
}

.last\:opacity-80:last-child{
  opacity: .8;
}

.last\:opacity-100:last-child{
  opacity: 1;
}

.outline-none{
  outline: 0;
}

.hover\:outline-none:hover{
  outline: 0;
}

.focus\:outline-none:focus{
  outline: 0;
}

.active\:outline-none:active{
  outline: 0;
}

.first\:outline-none:first-child{
  outline: 0;
}

.last\:outline-none:last-child{
  outline: 0;
}

.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;
}

.scrolling-touch{
  -webkit-overflow-scrolling: touch;
}

.scrolling-auto{
  -webkit-overflow-scrolling: auto;
}

.hover\:overflow-auto:hover{
  overflow: auto;
}

.hover\:overflow-hidden:hover{
  overflow: hidden;
}

.hover\:overflow-visible:hover{
  overflow: visible;
}

.hover\:overflow-scroll:hover{
  overflow: scroll;
}

.hover\:overflow-x-auto:hover{
  overflow-x: auto;
}

.hover\:overflow-y-auto:hover{
  overflow-y: auto;
}

.hover\:overflow-x-hidden:hover{
  overflow-x: hidden;
}

.hover\:overflow-y-hidden:hover{
  overflow-y: hidden;
}

.hover\:overflow-x-visible:hover{
  overflow-x: visible;
}

.hover\:overflow-y-visible:hover{
  overflow-y: visible;
}

.hover\:overflow-x-scroll:hover{
  overflow-x: scroll;
}

.hover\:overflow-y-scroll:hover{
  overflow-y: scroll;
}

.hover\:scrolling-touch:hover{
  -webkit-overflow-scrolling: touch;
}

.hover\:scrolling-auto:hover{
  -webkit-overflow-scrolling: auto;
}

.focus\:overflow-auto:focus{
  overflow: auto;
}

.focus\:overflow-hidden:focus{
  overflow: hidden;
}

.focus\:overflow-visible:focus{
  overflow: visible;
}

.focus\:overflow-scroll:focus{
  overflow: scroll;
}

.focus\:overflow-x-auto:focus{
  overflow-x: auto;
}

.focus\:overflow-y-auto:focus{
  overflow-y: auto;
}

.focus\:overflow-x-hidden:focus{
  overflow-x: hidden;
}

.focus\:overflow-y-hidden:focus{
  overflow-y: hidden;
}

.focus\:overflow-x-visible:focus{
  overflow-x: visible;
}

.focus\:overflow-y-visible:focus{
  overflow-y: visible;
}

.focus\:overflow-x-scroll:focus{
  overflow-x: scroll;
}

.focus\:overflow-y-scroll:focus{
  overflow-y: scroll;
}

.focus\:scrolling-touch:focus{
  -webkit-overflow-scrolling: touch;
}

.focus\:scrolling-auto:focus{
  -webkit-overflow-scrolling: auto;
}

.active\:overflow-auto:active{
  overflow: auto;
}

.active\:overflow-hidden:active{
  overflow: hidden;
}

.active\:overflow-visible:active{
  overflow: visible;
}

.active\:overflow-scroll:active{
  overflow: scroll;
}

.active\:overflow-x-auto:active{
  overflow-x: auto;
}

.active\:overflow-y-auto:active{
  overflow-y: auto;
}

.active\:overflow-x-hidden:active{
  overflow-x: hidden;
}

.active\:overflow-y-hidden:active{
  overflow-y: hidden;
}

.active\:overflow-x-visible:active{
  overflow-x: visible;
}

.active\:overflow-y-visible:active{
  overflow-y: visible;
}

.active\:overflow-x-scroll:active{
  overflow-x: scroll;
}

.active\:overflow-y-scroll:active{
  overflow-y: scroll;
}

.active\:scrolling-touch:active{
  -webkit-overflow-scrolling: touch;
}

.active\:scrolling-auto:active{
  -webkit-overflow-scrolling: auto;
}

.first\:overflow-auto:first-child{
  overflow: auto;
}

.first\:overflow-hidden:first-child{
  overflow: hidden;
}

.first\:overflow-visible:first-child{
  overflow: visible;
}

.first\:overflow-scroll:first-child{
  overflow: scroll;
}

.first\:overflow-x-auto:first-child{
  overflow-x: auto;
}

.first\:overflow-y-auto:first-child{
  overflow-y: auto;
}

.first\:overflow-x-hidden:first-child{
  overflow-x: hidden;
}

.first\:overflow-y-hidden:first-child{
  overflow-y: hidden;
}

.first\:overflow-x-visible:first-child{
  overflow-x: visible;
}

.first\:overflow-y-visible:first-child{
  overflow-y: visible;
}

.first\:overflow-x-scroll:first-child{
  overflow-x: scroll;
}

.first\:overflow-y-scroll:first-child{
  overflow-y: scroll;
}

.first\:scrolling-touch:first-child{
  -webkit-overflow-scrolling: touch;
}

.first\:scrolling-auto:first-child{
  -webkit-overflow-scrolling: auto;
}

.last\:overflow-auto:last-child{
  overflow: auto;
}

.last\:overflow-hidden:last-child{
  overflow: hidden;
}

.last\:overflow-visible:last-child{
  overflow: visible;
}

.last\:overflow-scroll:last-child{
  overflow: scroll;
}

.last\:overflow-x-auto:last-child{
  overflow-x: auto;
}

.last\:overflow-y-auto:last-child{
  overflow-y: auto;
}

.last\:overflow-x-hidden:last-child{
  overflow-x: hidden;
}

.last\:overflow-y-hidden:last-child{
  overflow-y: hidden;
}

.last\:overflow-x-visible:last-child{
  overflow-x: visible;
}

.last\:overflow-y-visible:last-child{
  overflow-y: visible;
}

.last\:overflow-x-scroll:last-child{
  overflow-x: scroll;
}

.last\:overflow-y-scroll:last-child{
  overflow-y: scroll;
}

.last\:scrolling-touch:last-child{
  -webkit-overflow-scrolling: touch;
}

.last\:scrolling-auto:last-child{
  -webkit-overflow-scrolling: auto;
}

.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;
}

.hover\:overscroll-auto:hover{
  -ms-scroll-chaining: chained;
      overscroll-behavior: auto;
}

.hover\:overscroll-contain:hover{
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.hover\:overscroll-none:hover{
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.hover\:overscroll-y-auto:hover{
  overscroll-behavior-y: auto;
}

.hover\:overscroll-y-contain:hover{
  overscroll-behavior-y: contain;
}

.hover\:overscroll-y-none:hover{
  overscroll-behavior-y: none;
}

.hover\:overscroll-x-auto:hover{
  overscroll-behavior-x: auto;
}

.hover\:overscroll-x-contain:hover{
  overscroll-behavior-x: contain;
}

.hover\:overscroll-x-none:hover{
  overscroll-behavior-x: none;
}

.focus\:overscroll-auto:focus{
  -ms-scroll-chaining: chained;
      overscroll-behavior: auto;
}

.focus\:overscroll-contain:focus{
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.focus\:overscroll-none:focus{
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.focus\:overscroll-y-auto:focus{
  overscroll-behavior-y: auto;
}

.focus\:overscroll-y-contain:focus{
  overscroll-behavior-y: contain;
}

.focus\:overscroll-y-none:focus{
  overscroll-behavior-y: none;
}

.focus\:overscroll-x-auto:focus{
  overscroll-behavior-x: auto;
}

.focus\:overscroll-x-contain:focus{
  overscroll-behavior-x: contain;
}

.focus\:overscroll-x-none:focus{
  overscroll-behavior-x: none;
}

.active\:overscroll-auto:active{
  -ms-scroll-chaining: chained;
      overscroll-behavior: auto;
}

.active\:overscroll-contain:active{
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.active\:overscroll-none:active{
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.active\:overscroll-y-auto:active{
  overscroll-behavior-y: auto;
}

.active\:overscroll-y-contain:active{
  overscroll-behavior-y: contain;
}

.active\:overscroll-y-none:active{
  overscroll-behavior-y: none;
}

.active\:overscroll-x-auto:active{
  overscroll-behavior-x: auto;
}

.active\:overscroll-x-contain:active{
  overscroll-behavior-x: contain;
}

.active\:overscroll-x-none:active{
  overscroll-behavior-x: none;
}

.first\:overscroll-auto:first-child{
  -ms-scroll-chaining: chained;
      overscroll-behavior: auto;
}

.first\:overscroll-contain:first-child{
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.first\:overscroll-none:first-child{
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.first\:overscroll-y-auto:first-child{
  overscroll-behavior-y: auto;
}

.first\:overscroll-y-contain:first-child{
  overscroll-behavior-y: contain;
}

.first\:overscroll-y-none:first-child{
  overscroll-behavior-y: none;
}

.first\:overscroll-x-auto:first-child{
  overscroll-behavior-x: auto;
}

.first\:overscroll-x-contain:first-child{
  overscroll-behavior-x: contain;
}

.first\:overscroll-x-none:first-child{
  overscroll-behavior-x: none;
}

.last\:overscroll-auto:last-child{
  -ms-scroll-chaining: chained;
      overscroll-behavior: auto;
}

.last\:overscroll-contain:last-child{
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.last\:overscroll-none:last-child{
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.last\:overscroll-y-auto:last-child{
  overscroll-behavior-y: auto;
}

.last\:overscroll-y-contain:last-child{
  overscroll-behavior-y: contain;
}

.last\:overscroll-y-none:last-child{
  overscroll-behavior-y: none;
}

.last\:overscroll-x-auto:last-child{
  overscroll-behavior-x: auto;
}

.last\:overscroll-x-contain:last-child{
  overscroll-behavior-x: contain;
}

.last\:overscroll-x-none:last-child{
  overscroll-behavior-x: none;
}

.p-0{
  padding: 0;
}

.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-8{
  padding: 2rem;
}

.p-9{
  padding: 2.25rem;
}

.p-10{
  padding: 2.5rem;
}

.p-11{
  padding: 3rem;
}

.p-12{
  padding: 3rem;
}

.p-14{
  padding: 3.5rem;
}

.p-16{
  padding: 4rem;
}

.p-20{
  padding: 5rem;
}

.p-24{
  padding: 6rem;
}

.p-32{
  padding: 8rem;
}

.p-40{
  padding: 10rem;
}

.p-48{
  padding: 12rem;
}

.p-56{
  padding: 14rem;
}

.p-64{
  padding: 16rem;
}

.p-px{
  padding: 1px;
}

.p-0\.25{
  padding: 0.0625rem;
}

.p-1\.5{
  padding: 0.375rem;
}

.p-2\.5{
  padding: 0.625rem;
}

.p-3\.25{
  padding: 0.8125rem;
}

.p-3\.5{
  padding: 0.875rem;
}

.p-5\.25{
  padding: 1.3125rem;
}

.py-0{
  padding-top: 0;
  padding-bottom: 0;
}

.px-0{
  padding-left: 0;
  padding-right: 0;
}

.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-9{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.px-9{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-11{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-11{
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-14{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.px-14{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.px-16{
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-20{
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-24{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.px-24{
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-32{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.px-32{
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-40{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.px-40{
  padding-left: 10rem;
  padding-right: 10rem;
}

.py-48{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.px-48{
  padding-left: 12rem;
  padding-right: 12rem;
}

.py-56{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.px-56{
  padding-left: 14rem;
  padding-right: 14rem;
}

.py-64{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.px-64{
  padding-left: 16rem;
  padding-right: 16rem;
}

.py-px{
  padding-top: 1px;
  padding-bottom: 1px;
}

.px-px{
  padding-left: 1px;
  padding-right: 1px;
}

.py-0\.25{
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
}

.px-0\.25{
  padding-left: 0.0625rem;
  padding-right: 0.0625rem;
}

.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.py-3\.25{
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}

.px-3\.25{
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
}

.py-3\.5{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.px-3\.5{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.py-5\.25{
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
}

.px-5\.25{
  padding-left: 1.3125rem;
  padding-right: 1.3125rem;
}

.pt-0{
  padding-top: 0;
}

.pr-0{
  padding-right: 0;
}

.pb-0{
  padding-bottom: 0;
}

.pl-0{
  padding-left: 0;
}

.pt-1{
  padding-top: 0.25rem;
}

.pr-1{
  padding-right: 0.25rem;
}

.pb-1{
  padding-bottom: 0.25rem;
}

.pl-1{
  padding-left: 0.25rem;
}

.pt-2{
  padding-top: 0.5rem;
}

.pr-2{
  padding-right: 0.5rem;
}

.pb-2{
  padding-bottom: 0.5rem;
}

.pl-2{
  padding-left: 0.5rem;
}

.pt-3{
  padding-top: 0.75rem;
}

.pr-3{
  padding-right: 0.75rem;
}

.pb-3{
  padding-bottom: 0.75rem;
}

.pl-3{
  padding-left: 0.75rem;
}

.pt-4{
  padding-top: 1rem;
}

.pr-4{
  padding-right: 1rem;
}

.pb-4{
  padding-bottom: 1rem;
}

.pl-4{
  padding-left: 1rem;
}

.pt-5{
  padding-top: 1.25rem;
}

.pr-5{
  padding-right: 1.25rem;
}

.pb-5{
  padding-bottom: 1.25rem;
}

.pl-5{
  padding-left: 1.25rem;
}

.pt-6{
  padding-top: 1.5rem;
}

.pr-6{
  padding-right: 1.5rem;
}

.pb-6{
  padding-bottom: 1.5rem;
}

.pl-6{
  padding-left: 1.5rem;
}

.pt-8{
  padding-top: 2rem;
}

.pr-8{
  padding-right: 2rem;
}

.pb-8{
  padding-bottom: 2rem;
}

.pl-8{
  padding-left: 2rem;
}

.pt-9{
  padding-top: 2.25rem;
}

.pr-9{
  padding-right: 2.25rem;
}

.pb-9{
  padding-bottom: 2.25rem;
}

.pl-9{
  padding-left: 2.25rem;
}

.pt-10{
  padding-top: 2.5rem;
}

.pr-10{
  padding-right: 2.5rem;
}

.pb-10{
  padding-bottom: 2.5rem;
}

.pl-10{
  padding-left: 2.5rem;
}

.pt-11{
  padding-top: 3rem;
}

.pr-11{
  padding-right: 3rem;
}

.pb-11{
  padding-bottom: 3rem;
}

.pl-11{
  padding-left: 3rem;
}

.pt-12{
  padding-top: 3rem;
}

.pr-12{
  padding-right: 3rem;
}

.pb-12{
  padding-bottom: 3rem;
}

.pl-12{
  padding-left: 3rem;
}

.pt-14{
  padding-top: 3.5rem;
}

.pr-14{
  padding-right: 3.5rem;
}

.pb-14{
  padding-bottom: 3.5rem;
}

.pl-14{
  padding-left: 3.5rem;
}

.pt-16{
  padding-top: 4rem;
}

.pr-16{
  padding-right: 4rem;
}

.pb-16{
  padding-bottom: 4rem;
}

.pl-16{
  padding-left: 4rem;
}

.pt-20{
  padding-top: 5rem;
}

.pr-20{
  padding-right: 5rem;
}

.pb-20{
  padding-bottom: 5rem;
}

.pl-20{
  padding-left: 5rem;
}

.pt-24{
  padding-top: 6rem;
}

.pr-24{
  padding-right: 6rem;
}

.pb-24{
  padding-bottom: 6rem;
}

.pl-24{
  padding-left: 6rem;
}

.pt-32{
  padding-top: 8rem;
}

.pr-32{
  padding-right: 8rem;
}

.pb-32{
  padding-bottom: 8rem;
}

.pl-32{
  padding-left: 8rem;
}

.pt-40{
  padding-top: 10rem;
}

.pr-40{
  padding-right: 10rem;
}

.pb-40{
  padding-bottom: 10rem;
}

.pl-40{
  padding-left: 10rem;
}

.pt-48{
  padding-top: 12rem;
}

.pr-48{
  padding-right: 12rem;
}

.pb-48{
  padding-bottom: 12rem;
}

.pl-48{
  padding-left: 12rem;
}

.pt-56{
  padding-top: 14rem;
}

.pr-56{
  padding-right: 14rem;
}

.pb-56{
  padding-bottom: 14rem;
}

.pl-56{
  padding-left: 14rem;
}

.pt-64{
  padding-top: 16rem;
}

.pr-64{
  padding-right: 16rem;
}

.pb-64{
  padding-bottom: 16rem;
}

.pl-64{
  padding-left: 16rem;
}

.pt-px{
  padding-top: 1px;
}

.pr-px{
  padding-right: 1px;
}

.pb-px{
  padding-bottom: 1px;
}

.pl-px{
  padding-left: 1px;
}

.pt-0\.25{
  padding-top: 0.0625rem;
}

.pr-0\.25{
  padding-right: 0.0625rem;
}

.pb-0\.25{
  padding-bottom: 0.0625rem;
}

.pl-0\.25{
  padding-left: 0.0625rem;
}

.pt-1\.5{
  padding-top: 0.375rem;
}

.pr-1\.5{
  padding-right: 0.375rem;
}

.pb-1\.5{
  padding-bottom: 0.375rem;
}

.pl-1\.5{
  padding-left: 0.375rem;
}

.pt-2\.5{
  padding-top: 0.625rem;
}

.pr-2\.5{
  padding-right: 0.625rem;
}

.pb-2\.5{
  padding-bottom: 0.625rem;
}

.pl-2\.5{
  padding-left: 0.625rem;
}

.pt-3\.25{
  padding-top: 0.8125rem;
}

.pr-3\.25{
  padding-right: 0.8125rem;
}

.pb-3\.25{
  padding-bottom: 0.8125rem;
}

.pl-3\.25{
  padding-left: 0.8125rem;
}

.pt-3\.5{
  padding-top: 0.875rem;
}

.pr-3\.5{
  padding-right: 0.875rem;
}

.pb-3\.5{
  padding-bottom: 0.875rem;
}

.pl-3\.5{
  padding-left: 0.875rem;
}

.pt-5\.25{
  padding-top: 1.3125rem;
}

.pr-5\.25{
  padding-right: 1.3125rem;
}

.pb-5\.25{
  padding-bottom: 1.3125rem;
}

.pl-5\.25{
  padding-left: 1.3125rem;
}

.hover\:p-0:hover{
  padding: 0;
}

.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-8:hover{
  padding: 2rem;
}

.hover\:p-9:hover{
  padding: 2.25rem;
}

.hover\:p-10:hover{
  padding: 2.5rem;
}

.hover\:p-11:hover{
  padding: 3rem;
}

.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-32:hover{
  padding: 8rem;
}

.hover\:p-40:hover{
  padding: 10rem;
}

.hover\:p-48:hover{
  padding: 12rem;
}

.hover\:p-56:hover{
  padding: 14rem;
}

.hover\:p-64:hover{
  padding: 16rem;
}

.hover\:p-px:hover{
  padding: 1px;
}

.hover\:p-0\.25:hover{
  padding: 0.0625rem;
}

.hover\:p-1\.5:hover{
  padding: 0.375rem;
}

.hover\:p-2\.5:hover{
  padding: 0.625rem;
}

.hover\:p-3\.25:hover{
  padding: 0.8125rem;
}

.hover\:p-3\.5:hover{
  padding: 0.875rem;
}

.hover\:p-5\.25:hover{
  padding: 1.3125rem;
}

.hover\:py-0:hover{
  padding-top: 0;
  padding-bottom: 0;
}

.hover\:px-0:hover{
  padding-left: 0;
  padding-right: 0;
}

.hover\:py-1:hover{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.hover\:px-1:hover{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.hover\:py-2:hover{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hover\:px-2:hover{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.hover\:py-3:hover{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.hover\:px-3:hover{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hover\:py-4:hover{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.hover\:px-4:hover{
  padding-left: 1rem;
  padding-right: 1rem;
}

.hover\:py-5:hover{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.hover\:px-5:hover{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hover\:py-6:hover{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hover\:px-6:hover{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hover\:py-8:hover{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hover\:px-8:hover{
  padding-left: 2rem;
  padding-right: 2rem;
}

.hover\:py-9:hover{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.hover\:px-9:hover{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.hover\:py-10:hover{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hover\:px-10:hover{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.hover\:py-11:hover{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hover\:px-11:hover{
  padding-left: 3rem;
  padding-right: 3rem;
}

.hover\:py-12:hover{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hover\:px-12:hover{
  padding-left: 3rem;
  padding-right: 3rem;
}

.hover\:py-14:hover{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hover\:px-14:hover{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.hover\:py-16:hover{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hover\:px-16:hover{
  padding-left: 4rem;
  padding-right: 4rem;
}

.hover\:py-20:hover{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hover\:px-20:hover{
  padding-left: 5rem;
  padding-right: 5rem;
}

.hover\:py-24:hover{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hover\:px-24:hover{
  padding-left: 6rem;
  padding-right: 6rem;
}

.hover\:py-32:hover{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.hover\:px-32:hover{
  padding-left: 8rem;
  padding-right: 8rem;
}

.hover\:py-40:hover{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.hover\:px-40:hover{
  padding-left: 10rem;
  padding-right: 10rem;
}

.hover\:py-48:hover{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.hover\:px-48:hover{
  padding-left: 12rem;
  padding-right: 12rem;
}

.hover\:py-56:hover{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.hover\:px-56:hover{
  padding-left: 14rem;
  padding-right: 14rem;
}

.hover\:py-64:hover{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.hover\:px-64:hover{
  padding-left: 16rem;
  padding-right: 16rem;
}

.hover\:py-px:hover{
  padding-top: 1px;
  padding-bottom: 1px;
}

.hover\:px-px:hover{
  padding-left: 1px;
  padding-right: 1px;
}

.hover\:py-0\.25:hover{
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
}

.hover\:px-0\.25:hover{
  padding-left: 0.0625rem;
  padding-right: 0.0625rem;
}

.hover\:py-1\.5:hover{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.hover\:px-1\.5:hover{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.hover\:py-2\.5:hover{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.hover\:px-2\.5:hover{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.hover\:py-3\.25:hover{
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}

.hover\:px-3\.25:hover{
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
}

.hover\:py-3\.5:hover{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.hover\:px-3\.5:hover{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.hover\:py-5\.25:hover{
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
}

.hover\:px-5\.25:hover{
  padding-left: 1.3125rem;
  padding-right: 1.3125rem;
}

.hover\:pt-0:hover{
  padding-top: 0;
}

.hover\:pr-0:hover{
  padding-right: 0;
}

.hover\:pb-0:hover{
  padding-bottom: 0;
}

.hover\:pl-0:hover{
  padding-left: 0;
}

.hover\:pt-1:hover{
  padding-top: 0.25rem;
}

.hover\:pr-1:hover{
  padding-right: 0.25rem;
}

.hover\:pb-1:hover{
  padding-bottom: 0.25rem;
}

.hover\:pl-1:hover{
  padding-left: 0.25rem;
}

.hover\:pt-2:hover{
  padding-top: 0.5rem;
}

.hover\:pr-2:hover{
  padding-right: 0.5rem;
}

.hover\:pb-2:hover{
  padding-bottom: 0.5rem;
}

.hover\:pl-2:hover{
  padding-left: 0.5rem;
}

.hover\:pt-3:hover{
  padding-top: 0.75rem;
}

.hover\:pr-3:hover{
  padding-right: 0.75rem;
}

.hover\:pb-3:hover{
  padding-bottom: 0.75rem;
}

.hover\:pl-3:hover{
  padding-left: 0.75rem;
}

.hover\:pt-4:hover{
  padding-top: 1rem;
}

.hover\:pr-4:hover{
  padding-right: 1rem;
}

.hover\:pb-4:hover{
  padding-bottom: 1rem;
}

.hover\:pl-4:hover{
  padding-left: 1rem;
}

.hover\:pt-5:hover{
  padding-top: 1.25rem;
}

.hover\:pr-5:hover{
  padding-right: 1.25rem;
}

.hover\:pb-5:hover{
  padding-bottom: 1.25rem;
}

.hover\:pl-5:hover{
  padding-left: 1.25rem;
}

.hover\:pt-6:hover{
  padding-top: 1.5rem;
}

.hover\:pr-6:hover{
  padding-right: 1.5rem;
}

.hover\:pb-6:hover{
  padding-bottom: 1.5rem;
}

.hover\:pl-6:hover{
  padding-left: 1.5rem;
}

.hover\:pt-8:hover{
  padding-top: 2rem;
}

.hover\:pr-8:hover{
  padding-right: 2rem;
}

.hover\:pb-8:hover{
  padding-bottom: 2rem;
}

.hover\:pl-8:hover{
  padding-left: 2rem;
}

.hover\:pt-9:hover{
  padding-top: 2.25rem;
}

.hover\:pr-9:hover{
  padding-right: 2.25rem;
}

.hover\:pb-9:hover{
  padding-bottom: 2.25rem;
}

.hover\:pl-9:hover{
  padding-left: 2.25rem;
}

.hover\:pt-10:hover{
  padding-top: 2.5rem;
}

.hover\:pr-10:hover{
  padding-right: 2.5rem;
}

.hover\:pb-10:hover{
  padding-bottom: 2.5rem;
}

.hover\:pl-10:hover{
  padding-left: 2.5rem;
}

.hover\:pt-11:hover{
  padding-top: 3rem;
}

.hover\:pr-11:hover{
  padding-right: 3rem;
}

.hover\:pb-11:hover{
  padding-bottom: 3rem;
}

.hover\:pl-11:hover{
  padding-left: 3rem;
}

.hover\:pt-12:hover{
  padding-top: 3rem;
}

.hover\:pr-12:hover{
  padding-right: 3rem;
}

.hover\:pb-12:hover{
  padding-bottom: 3rem;
}

.hover\:pl-12:hover{
  padding-left: 3rem;
}

.hover\:pt-14:hover{
  padding-top: 3.5rem;
}

.hover\:pr-14:hover{
  padding-right: 3.5rem;
}

.hover\:pb-14:hover{
  padding-bottom: 3.5rem;
}

.hover\:pl-14:hover{
  padding-left: 3.5rem;
}

.hover\:pt-16:hover{
  padding-top: 4rem;
}

.hover\:pr-16:hover{
  padding-right: 4rem;
}

.hover\:pb-16:hover{
  padding-bottom: 4rem;
}

.hover\:pl-16:hover{
  padding-left: 4rem;
}

.hover\:pt-20:hover{
  padding-top: 5rem;
}

.hover\:pr-20:hover{
  padding-right: 5rem;
}

.hover\:pb-20:hover{
  padding-bottom: 5rem;
}

.hover\:pl-20:hover{
  padding-left: 5rem;
}

.hover\:pt-24:hover{
  padding-top: 6rem;
}

.hover\:pr-24:hover{
  padding-right: 6rem;
}

.hover\:pb-24:hover{
  padding-bottom: 6rem;
}

.hover\:pl-24:hover{
  padding-left: 6rem;
}

.hover\:pt-32:hover{
  padding-top: 8rem;
}

.hover\:pr-32:hover{
  padding-right: 8rem;
}

.hover\:pb-32:hover{
  padding-bottom: 8rem;
}

.hover\:pl-32:hover{
  padding-left: 8rem;
}

.hover\:pt-40:hover{
  padding-top: 10rem;
}

.hover\:pr-40:hover{
  padding-right: 10rem;
}

.hover\:pb-40:hover{
  padding-bottom: 10rem;
}

.hover\:pl-40:hover{
  padding-left: 10rem;
}

.hover\:pt-48:hover{
  padding-top: 12rem;
}

.hover\:pr-48:hover{
  padding-right: 12rem;
}

.hover\:pb-48:hover{
  padding-bottom: 12rem;
}

.hover\:pl-48:hover{
  padding-left: 12rem;
}

.hover\:pt-56:hover{
  padding-top: 14rem;
}

.hover\:pr-56:hover{
  padding-right: 14rem;
}

.hover\:pb-56:hover{
  padding-bottom: 14rem;
}

.hover\:pl-56:hover{
  padding-left: 14rem;
}

.hover\:pt-64:hover{
  padding-top: 16rem;
}

.hover\:pr-64:hover{
  padding-right: 16rem;
}

.hover\:pb-64:hover{
  padding-bottom: 16rem;
}

.hover\:pl-64:hover{
  padding-left: 16rem;
}

.hover\:pt-px:hover{
  padding-top: 1px;
}

.hover\:pr-px:hover{
  padding-right: 1px;
}

.hover\:pb-px:hover{
  padding-bottom: 1px;
}

.hover\:pl-px:hover{
  padding-left: 1px;
}

.hover\:pt-0\.25:hover{
  padding-top: 0.0625rem;
}

.hover\:pr-0\.25:hover{
  padding-right: 0.0625rem;
}

.hover\:pb-0\.25:hover{
  padding-bottom: 0.0625rem;
}

.hover\:pl-0\.25:hover{
  padding-left: 0.0625rem;
}

.hover\:pt-1\.5:hover{
  padding-top: 0.375rem;
}

.hover\:pr-1\.5:hover{
  padding-right: 0.375rem;
}

.hover\:pb-1\.5:hover{
  padding-bottom: 0.375rem;
}

.hover\:pl-1\.5:hover{
  padding-left: 0.375rem;
}

.hover\:pt-2\.5:hover{
  padding-top: 0.625rem;
}

.hover\:pr-2\.5:hover{
  padding-right: 0.625rem;
}

.hover\:pb-2\.5:hover{
  padding-bottom: 0.625rem;
}

.hover\:pl-2\.5:hover{
  padding-left: 0.625rem;
}

.hover\:pt-3\.25:hover{
  padding-top: 0.8125rem;
}

.hover\:pr-3\.25:hover{
  padding-right: 0.8125rem;
}

.hover\:pb-3\.25:hover{
  padding-bottom: 0.8125rem;
}

.hover\:pl-3\.25:hover{
  padding-left: 0.8125rem;
}

.hover\:pt-3\.5:hover{
  padding-top: 0.875rem;
}

.hover\:pr-3\.5:hover{
  padding-right: 0.875rem;
}

.hover\:pb-3\.5:hover{
  padding-bottom: 0.875rem;
}

.hover\:pl-3\.5:hover{
  padding-left: 0.875rem;
}

.hover\:pt-5\.25:hover{
  padding-top: 1.3125rem;
}

.hover\:pr-5\.25:hover{
  padding-right: 1.3125rem;
}

.hover\:pb-5\.25:hover{
  padding-bottom: 1.3125rem;
}

.hover\:pl-5\.25:hover{
  padding-left: 1.3125rem;
}

.focus\:p-0:focus{
  padding: 0;
}

.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-8:focus{
  padding: 2rem;
}

.focus\:p-9:focus{
  padding: 2.25rem;
}

.focus\:p-10:focus{
  padding: 2.5rem;
}

.focus\:p-11:focus{
  padding: 3rem;
}

.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-32:focus{
  padding: 8rem;
}

.focus\:p-40:focus{
  padding: 10rem;
}

.focus\:p-48:focus{
  padding: 12rem;
}

.focus\:p-56:focus{
  padding: 14rem;
}

.focus\:p-64:focus{
  padding: 16rem;
}

.focus\:p-px:focus{
  padding: 1px;
}

.focus\:p-0\.25:focus{
  padding: 0.0625rem;
}

.focus\:p-1\.5:focus{
  padding: 0.375rem;
}

.focus\:p-2\.5:focus{
  padding: 0.625rem;
}

.focus\:p-3\.25:focus{
  padding: 0.8125rem;
}

.focus\:p-3\.5:focus{
  padding: 0.875rem;
}

.focus\:p-5\.25:focus{
  padding: 1.3125rem;
}

.focus\:py-0:focus{
  padding-top: 0;
  padding-bottom: 0;
}

.focus\:px-0:focus{
  padding-left: 0;
  padding-right: 0;
}

.focus\:py-1:focus{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.focus\:px-1:focus{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.focus\:py-2:focus{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.focus\:px-2:focus{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.focus\:py-3:focus{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.focus\:px-3:focus{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.focus\:py-4:focus{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.focus\:px-4:focus{
  padding-left: 1rem;
  padding-right: 1rem;
}

.focus\:py-5:focus{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.focus\:px-5:focus{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.focus\:py-6:focus{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.focus\:px-6:focus{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.focus\:py-8:focus{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.focus\:px-8:focus{
  padding-left: 2rem;
  padding-right: 2rem;
}

.focus\:py-9:focus{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.focus\:px-9:focus{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.focus\:py-10:focus{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.focus\:px-10:focus{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.focus\:py-11:focus{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.focus\:px-11:focus{
  padding-left: 3rem;
  padding-right: 3rem;
}

.focus\:py-12:focus{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.focus\:px-12:focus{
  padding-left: 3rem;
  padding-right: 3rem;
}

.focus\:py-14:focus{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.focus\:px-14:focus{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.focus\:py-16:focus{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.focus\:px-16:focus{
  padding-left: 4rem;
  padding-right: 4rem;
}

.focus\:py-20:focus{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.focus\:px-20:focus{
  padding-left: 5rem;
  padding-right: 5rem;
}

.focus\:py-24:focus{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.focus\:px-24:focus{
  padding-left: 6rem;
  padding-right: 6rem;
}

.focus\:py-32:focus{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.focus\:px-32:focus{
  padding-left: 8rem;
  padding-right: 8rem;
}

.focus\:py-40:focus{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.focus\:px-40:focus{
  padding-left: 10rem;
  padding-right: 10rem;
}

.focus\:py-48:focus{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.focus\:px-48:focus{
  padding-left: 12rem;
  padding-right: 12rem;
}

.focus\:py-56:focus{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.focus\:px-56:focus{
  padding-left: 14rem;
  padding-right: 14rem;
}

.focus\:py-64:focus{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.focus\:px-64:focus{
  padding-left: 16rem;
  padding-right: 16rem;
}

.focus\:py-px:focus{
  padding-top: 1px;
  padding-bottom: 1px;
}

.focus\:px-px:focus{
  padding-left: 1px;
  padding-right: 1px;
}

.focus\:py-0\.25:focus{
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
}

.focus\:px-0\.25:focus{
  padding-left: 0.0625rem;
  padding-right: 0.0625rem;
}

.focus\:py-1\.5:focus{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.focus\:px-1\.5:focus{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.focus\:py-2\.5:focus{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.focus\:px-2\.5:focus{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.focus\:py-3\.25:focus{
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}

.focus\:px-3\.25:focus{
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
}

.focus\:py-3\.5:focus{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.focus\:px-3\.5:focus{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.focus\:py-5\.25:focus{
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
}

.focus\:px-5\.25:focus{
  padding-left: 1.3125rem;
  padding-right: 1.3125rem;
}

.focus\:pt-0:focus{
  padding-top: 0;
}

.focus\:pr-0:focus{
  padding-right: 0;
}

.focus\:pb-0:focus{
  padding-bottom: 0;
}

.focus\:pl-0:focus{
  padding-left: 0;
}

.focus\:pt-1:focus{
  padding-top: 0.25rem;
}

.focus\:pr-1:focus{
  padding-right: 0.25rem;
}

.focus\:pb-1:focus{
  padding-bottom: 0.25rem;
}

.focus\:pl-1:focus{
  padding-left: 0.25rem;
}

.focus\:pt-2:focus{
  padding-top: 0.5rem;
}

.focus\:pr-2:focus{
  padding-right: 0.5rem;
}

.focus\:pb-2:focus{
  padding-bottom: 0.5rem;
}

.focus\:pl-2:focus{
  padding-left: 0.5rem;
}

.focus\:pt-3:focus{
  padding-top: 0.75rem;
}

.focus\:pr-3:focus{
  padding-right: 0.75rem;
}

.focus\:pb-3:focus{
  padding-bottom: 0.75rem;
}

.focus\:pl-3:focus{
  padding-left: 0.75rem;
}

.focus\:pt-4:focus{
  padding-top: 1rem;
}

.focus\:pr-4:focus{
  padding-right: 1rem;
}

.focus\:pb-4:focus{
  padding-bottom: 1rem;
}

.focus\:pl-4:focus{
  padding-left: 1rem;
}

.focus\:pt-5:focus{
  padding-top: 1.25rem;
}

.focus\:pr-5:focus{
  padding-right: 1.25rem;
}

.focus\:pb-5:focus{
  padding-bottom: 1.25rem;
}

.focus\:pl-5:focus{
  padding-left: 1.25rem;
}

.focus\:pt-6:focus{
  padding-top: 1.5rem;
}

.focus\:pr-6:focus{
  padding-right: 1.5rem;
}

.focus\:pb-6:focus{
  padding-bottom: 1.5rem;
}

.focus\:pl-6:focus{
  padding-left: 1.5rem;
}

.focus\:pt-8:focus{
  padding-top: 2rem;
}

.focus\:pr-8:focus{
  padding-right: 2rem;
}

.focus\:pb-8:focus{
  padding-bottom: 2rem;
}

.focus\:pl-8:focus{
  padding-left: 2rem;
}

.focus\:pt-9:focus{
  padding-top: 2.25rem;
}

.focus\:pr-9:focus{
  padding-right: 2.25rem;
}

.focus\:pb-9:focus{
  padding-bottom: 2.25rem;
}

.focus\:pl-9:focus{
  padding-left: 2.25rem;
}

.focus\:pt-10:focus{
  padding-top: 2.5rem;
}

.focus\:pr-10:focus{
  padding-right: 2.5rem;
}

.focus\:pb-10:focus{
  padding-bottom: 2.5rem;
}

.focus\:pl-10:focus{
  padding-left: 2.5rem;
}

.focus\:pt-11:focus{
  padding-top: 3rem;
}

.focus\:pr-11:focus{
  padding-right: 3rem;
}

.focus\:pb-11:focus{
  padding-bottom: 3rem;
}

.focus\:pl-11:focus{
  padding-left: 3rem;
}

.focus\:pt-12:focus{
  padding-top: 3rem;
}

.focus\:pr-12:focus{
  padding-right: 3rem;
}

.focus\:pb-12:focus{
  padding-bottom: 3rem;
}

.focus\:pl-12:focus{
  padding-left: 3rem;
}

.focus\:pt-14:focus{
  padding-top: 3.5rem;
}

.focus\:pr-14:focus{
  padding-right: 3.5rem;
}

.focus\:pb-14:focus{
  padding-bottom: 3.5rem;
}

.focus\:pl-14:focus{
  padding-left: 3.5rem;
}

.focus\:pt-16:focus{
  padding-top: 4rem;
}

.focus\:pr-16:focus{
  padding-right: 4rem;
}

.focus\:pb-16:focus{
  padding-bottom: 4rem;
}

.focus\:pl-16:focus{
  padding-left: 4rem;
}

.focus\:pt-20:focus{
  padding-top: 5rem;
}

.focus\:pr-20:focus{
  padding-right: 5rem;
}

.focus\:pb-20:focus{
  padding-bottom: 5rem;
}

.focus\:pl-20:focus{
  padding-left: 5rem;
}

.focus\:pt-24:focus{
  padding-top: 6rem;
}

.focus\:pr-24:focus{
  padding-right: 6rem;
}

.focus\:pb-24:focus{
  padding-bottom: 6rem;
}

.focus\:pl-24:focus{
  padding-left: 6rem;
}

.focus\:pt-32:focus{
  padding-top: 8rem;
}

.focus\:pr-32:focus{
  padding-right: 8rem;
}

.focus\:pb-32:focus{
  padding-bottom: 8rem;
}

.focus\:pl-32:focus{
  padding-left: 8rem;
}

.focus\:pt-40:focus{
  padding-top: 10rem;
}

.focus\:pr-40:focus{
  padding-right: 10rem;
}

.focus\:pb-40:focus{
  padding-bottom: 10rem;
}

.focus\:pl-40:focus{
  padding-left: 10rem;
}

.focus\:pt-48:focus{
  padding-top: 12rem;
}

.focus\:pr-48:focus{
  padding-right: 12rem;
}

.focus\:pb-48:focus{
  padding-bottom: 12rem;
}

.focus\:pl-48:focus{
  padding-left: 12rem;
}

.focus\:pt-56:focus{
  padding-top: 14rem;
}

.focus\:pr-56:focus{
  padding-right: 14rem;
}

.focus\:pb-56:focus{
  padding-bottom: 14rem;
}

.focus\:pl-56:focus{
  padding-left: 14rem;
}

.focus\:pt-64:focus{
  padding-top: 16rem;
}

.focus\:pr-64:focus{
  padding-right: 16rem;
}

.focus\:pb-64:focus{
  padding-bottom: 16rem;
}

.focus\:pl-64:focus{
  padding-left: 16rem;
}

.focus\:pt-px:focus{
  padding-top: 1px;
}

.focus\:pr-px:focus{
  padding-right: 1px;
}

.focus\:pb-px:focus{
  padding-bottom: 1px;
}

.focus\:pl-px:focus{
  padding-left: 1px;
}

.focus\:pt-0\.25:focus{
  padding-top: 0.0625rem;
}

.focus\:pr-0\.25:focus{
  padding-right: 0.0625rem;
}

.focus\:pb-0\.25:focus{
  padding-bottom: 0.0625rem;
}

.focus\:pl-0\.25:focus{
  padding-left: 0.0625rem;
}

.focus\:pt-1\.5:focus{
  padding-top: 0.375rem;
}

.focus\:pr-1\.5:focus{
  padding-right: 0.375rem;
}

.focus\:pb-1\.5:focus{
  padding-bottom: 0.375rem;
}

.focus\:pl-1\.5:focus{
  padding-left: 0.375rem;
}

.focus\:pt-2\.5:focus{
  padding-top: 0.625rem;
}

.focus\:pr-2\.5:focus{
  padding-right: 0.625rem;
}

.focus\:pb-2\.5:focus{
  padding-bottom: 0.625rem;
}

.focus\:pl-2\.5:focus{
  padding-left: 0.625rem;
}

.focus\:pt-3\.25:focus{
  padding-top: 0.8125rem;
}

.focus\:pr-3\.25:focus{
  padding-right: 0.8125rem;
}

.focus\:pb-3\.25:focus{
  padding-bottom: 0.8125rem;
}

.focus\:pl-3\.25:focus{
  padding-left: 0.8125rem;
}

.focus\:pt-3\.5:focus{
  padding-top: 0.875rem;
}

.focus\:pr-3\.5:focus{
  padding-right: 0.875rem;
}

.focus\:pb-3\.5:focus{
  padding-bottom: 0.875rem;
}

.focus\:pl-3\.5:focus{
  padding-left: 0.875rem;
}

.focus\:pt-5\.25:focus{
  padding-top: 1.3125rem;
}

.focus\:pr-5\.25:focus{
  padding-right: 1.3125rem;
}

.focus\:pb-5\.25:focus{
  padding-bottom: 1.3125rem;
}

.focus\:pl-5\.25:focus{
  padding-left: 1.3125rem;
}

.active\:p-0:active{
  padding: 0;
}

.active\:p-1:active{
  padding: 0.25rem;
}

.active\:p-2:active{
  padding: 0.5rem;
}

.active\:p-3:active{
  padding: 0.75rem;
}

.active\:p-4:active{
  padding: 1rem;
}

.active\:p-5:active{
  padding: 1.25rem;
}

.active\:p-6:active{
  padding: 1.5rem;
}

.active\:p-8:active{
  padding: 2rem;
}

.active\:p-9:active{
  padding: 2.25rem;
}

.active\:p-10:active{
  padding: 2.5rem;
}

.active\:p-11:active{
  padding: 3rem;
}

.active\:p-12:active{
  padding: 3rem;
}

.active\:p-14:active{
  padding: 3.5rem;
}

.active\:p-16:active{
  padding: 4rem;
}

.active\:p-20:active{
  padding: 5rem;
}

.active\:p-24:active{
  padding: 6rem;
}

.active\:p-32:active{
  padding: 8rem;
}

.active\:p-40:active{
  padding: 10rem;
}

.active\:p-48:active{
  padding: 12rem;
}

.active\:p-56:active{
  padding: 14rem;
}

.active\:p-64:active{
  padding: 16rem;
}

.active\:p-px:active{
  padding: 1px;
}

.active\:p-0\.25:active{
  padding: 0.0625rem;
}

.active\:p-1\.5:active{
  padding: 0.375rem;
}

.active\:p-2\.5:active{
  padding: 0.625rem;
}

.active\:p-3\.25:active{
  padding: 0.8125rem;
}

.active\:p-3\.5:active{
  padding: 0.875rem;
}

.active\:p-5\.25:active{
  padding: 1.3125rem;
}

.active\:py-0:active{
  padding-top: 0;
  padding-bottom: 0;
}

.active\:px-0:active{
  padding-left: 0;
  padding-right: 0;
}

.active\:py-1:active{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.active\:px-1:active{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.active\:py-2:active{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.active\:px-2:active{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.active\:py-3:active{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.active\:px-3:active{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.active\:py-4:active{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.active\:px-4:active{
  padding-left: 1rem;
  padding-right: 1rem;
}

.active\:py-5:active{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.active\:px-5:active{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.active\:py-6:active{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.active\:px-6:active{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.active\:py-8:active{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.active\:px-8:active{
  padding-left: 2rem;
  padding-right: 2rem;
}

.active\:py-9:active{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.active\:px-9:active{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.active\:py-10:active{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.active\:px-10:active{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.active\:py-11:active{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.active\:px-11:active{
  padding-left: 3rem;
  padding-right: 3rem;
}

.active\:py-12:active{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.active\:px-12:active{
  padding-left: 3rem;
  padding-right: 3rem;
}

.active\:py-14:active{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.active\:px-14:active{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.active\:py-16:active{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.active\:px-16:active{
  padding-left: 4rem;
  padding-right: 4rem;
}

.active\:py-20:active{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.active\:px-20:active{
  padding-left: 5rem;
  padding-right: 5rem;
}

.active\:py-24:active{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.active\:px-24:active{
  padding-left: 6rem;
  padding-right: 6rem;
}

.active\:py-32:active{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.active\:px-32:active{
  padding-left: 8rem;
  padding-right: 8rem;
}

.active\:py-40:active{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.active\:px-40:active{
  padding-left: 10rem;
  padding-right: 10rem;
}

.active\:py-48:active{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.active\:px-48:active{
  padding-left: 12rem;
  padding-right: 12rem;
}

.active\:py-56:active{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.active\:px-56:active{
  padding-left: 14rem;
  padding-right: 14rem;
}

.active\:py-64:active{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.active\:px-64:active{
  padding-left: 16rem;
  padding-right: 16rem;
}

.active\:py-px:active{
  padding-top: 1px;
  padding-bottom: 1px;
}

.active\:px-px:active{
  padding-left: 1px;
  padding-right: 1px;
}

.active\:py-0\.25:active{
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
}

.active\:px-0\.25:active{
  padding-left: 0.0625rem;
  padding-right: 0.0625rem;
}

.active\:py-1\.5:active{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.active\:px-1\.5:active{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.active\:py-2\.5:active{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.active\:px-2\.5:active{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.active\:py-3\.25:active{
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}

.active\:px-3\.25:active{
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
}

.active\:py-3\.5:active{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.active\:px-3\.5:active{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.active\:py-5\.25:active{
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
}

.active\:px-5\.25:active{
  padding-left: 1.3125rem;
  padding-right: 1.3125rem;
}

.active\:pt-0:active{
  padding-top: 0;
}

.active\:pr-0:active{
  padding-right: 0;
}

.active\:pb-0:active{
  padding-bottom: 0;
}

.active\:pl-0:active{
  padding-left: 0;
}

.active\:pt-1:active{
  padding-top: 0.25rem;
}

.active\:pr-1:active{
  padding-right: 0.25rem;
}

.active\:pb-1:active{
  padding-bottom: 0.25rem;
}

.active\:pl-1:active{
  padding-left: 0.25rem;
}

.active\:pt-2:active{
  padding-top: 0.5rem;
}

.active\:pr-2:active{
  padding-right: 0.5rem;
}

.active\:pb-2:active{
  padding-bottom: 0.5rem;
}

.active\:pl-2:active{
  padding-left: 0.5rem;
}

.active\:pt-3:active{
  padding-top: 0.75rem;
}

.active\:pr-3:active{
  padding-right: 0.75rem;
}

.active\:pb-3:active{
  padding-bottom: 0.75rem;
}

.active\:pl-3:active{
  padding-left: 0.75rem;
}

.active\:pt-4:active{
  padding-top: 1rem;
}

.active\:pr-4:active{
  padding-right: 1rem;
}

.active\:pb-4:active{
  padding-bottom: 1rem;
}

.active\:pl-4:active{
  padding-left: 1rem;
}

.active\:pt-5:active{
  padding-top: 1.25rem;
}

.active\:pr-5:active{
  padding-right: 1.25rem;
}

.active\:pb-5:active{
  padding-bottom: 1.25rem;
}

.active\:pl-5:active{
  padding-left: 1.25rem;
}

.active\:pt-6:active{
  padding-top: 1.5rem;
}

.active\:pr-6:active{
  padding-right: 1.5rem;
}

.active\:pb-6:active{
  padding-bottom: 1.5rem;
}

.active\:pl-6:active{
  padding-left: 1.5rem;
}

.active\:pt-8:active{
  padding-top: 2rem;
}

.active\:pr-8:active{
  padding-right: 2rem;
}

.active\:pb-8:active{
  padding-bottom: 2rem;
}

.active\:pl-8:active{
  padding-left: 2rem;
}

.active\:pt-9:active{
  padding-top: 2.25rem;
}

.active\:pr-9:active{
  padding-right: 2.25rem;
}

.active\:pb-9:active{
  padding-bottom: 2.25rem;
}

.active\:pl-9:active{
  padding-left: 2.25rem;
}

.active\:pt-10:active{
  padding-top: 2.5rem;
}

.active\:pr-10:active{
  padding-right: 2.5rem;
}

.active\:pb-10:active{
  padding-bottom: 2.5rem;
}

.active\:pl-10:active{
  padding-left: 2.5rem;
}

.active\:pt-11:active{
  padding-top: 3rem;
}

.active\:pr-11:active{
  padding-right: 3rem;
}

.active\:pb-11:active{
  padding-bottom: 3rem;
}

.active\:pl-11:active{
  padding-left: 3rem;
}

.active\:pt-12:active{
  padding-top: 3rem;
}

.active\:pr-12:active{
  padding-right: 3rem;
}

.active\:pb-12:active{
  padding-bottom: 3rem;
}

.active\:pl-12:active{
  padding-left: 3rem;
}

.active\:pt-14:active{
  padding-top: 3.5rem;
}

.active\:pr-14:active{
  padding-right: 3.5rem;
}

.active\:pb-14:active{
  padding-bottom: 3.5rem;
}

.active\:pl-14:active{
  padding-left: 3.5rem;
}

.active\:pt-16:active{
  padding-top: 4rem;
}

.active\:pr-16:active{
  padding-right: 4rem;
}

.active\:pb-16:active{
  padding-bottom: 4rem;
}

.active\:pl-16:active{
  padding-left: 4rem;
}

.active\:pt-20:active{
  padding-top: 5rem;
}

.active\:pr-20:active{
  padding-right: 5rem;
}

.active\:pb-20:active{
  padding-bottom: 5rem;
}

.active\:pl-20:active{
  padding-left: 5rem;
}

.active\:pt-24:active{
  padding-top: 6rem;
}

.active\:pr-24:active{
  padding-right: 6rem;
}

.active\:pb-24:active{
  padding-bottom: 6rem;
}

.active\:pl-24:active{
  padding-left: 6rem;
}

.active\:pt-32:active{
  padding-top: 8rem;
}

.active\:pr-32:active{
  padding-right: 8rem;
}

.active\:pb-32:active{
  padding-bottom: 8rem;
}

.active\:pl-32:active{
  padding-left: 8rem;
}

.active\:pt-40:active{
  padding-top: 10rem;
}

.active\:pr-40:active{
  padding-right: 10rem;
}

.active\:pb-40:active{
  padding-bottom: 10rem;
}

.active\:pl-40:active{
  padding-left: 10rem;
}

.active\:pt-48:active{
  padding-top: 12rem;
}

.active\:pr-48:active{
  padding-right: 12rem;
}

.active\:pb-48:active{
  padding-bottom: 12rem;
}

.active\:pl-48:active{
  padding-left: 12rem;
}

.active\:pt-56:active{
  padding-top: 14rem;
}

.active\:pr-56:active{
  padding-right: 14rem;
}

.active\:pb-56:active{
  padding-bottom: 14rem;
}

.active\:pl-56:active{
  padding-left: 14rem;
}

.active\:pt-64:active{
  padding-top: 16rem;
}

.active\:pr-64:active{
  padding-right: 16rem;
}

.active\:pb-64:active{
  padding-bottom: 16rem;
}

.active\:pl-64:active{
  padding-left: 16rem;
}

.active\:pt-px:active{
  padding-top: 1px;
}

.active\:pr-px:active{
  padding-right: 1px;
}

.active\:pb-px:active{
  padding-bottom: 1px;
}

.active\:pl-px:active{
  padding-left: 1px;
}

.active\:pt-0\.25:active{
  padding-top: 0.0625rem;
}

.active\:pr-0\.25:active{
  padding-right: 0.0625rem;
}

.active\:pb-0\.25:active{
  padding-bottom: 0.0625rem;
}

.active\:pl-0\.25:active{
  padding-left: 0.0625rem;
}

.active\:pt-1\.5:active{
  padding-top: 0.375rem;
}

.active\:pr-1\.5:active{
  padding-right: 0.375rem;
}

.active\:pb-1\.5:active{
  padding-bottom: 0.375rem;
}

.active\:pl-1\.5:active{
  padding-left: 0.375rem;
}

.active\:pt-2\.5:active{
  padding-top: 0.625rem;
}

.active\:pr-2\.5:active{
  padding-right: 0.625rem;
}

.active\:pb-2\.5:active{
  padding-bottom: 0.625rem;
}

.active\:pl-2\.5:active{
  padding-left: 0.625rem;
}

.active\:pt-3\.25:active{
  padding-top: 0.8125rem;
}

.active\:pr-3\.25:active{
  padding-right: 0.8125rem;
}

.active\:pb-3\.25:active{
  padding-bottom: 0.8125rem;
}

.active\:pl-3\.25:active{
  padding-left: 0.8125rem;
}

.active\:pt-3\.5:active{
  padding-top: 0.875rem;
}

.active\:pr-3\.5:active{
  padding-right: 0.875rem;
}

.active\:pb-3\.5:active{
  padding-bottom: 0.875rem;
}

.active\:pl-3\.5:active{
  padding-left: 0.875rem;
}

.active\:pt-5\.25:active{
  padding-top: 1.3125rem;
}

.active\:pr-5\.25:active{
  padding-right: 1.3125rem;
}

.active\:pb-5\.25:active{
  padding-bottom: 1.3125rem;
}

.active\:pl-5\.25:active{
  padding-left: 1.3125rem;
}

.first\:p-0:first-child{
  padding: 0;
}

.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-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: 3rem;
}

.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-32:first-child{
  padding: 8rem;
}

.first\:p-40:first-child{
  padding: 10rem;
}

.first\:p-48:first-child{
  padding: 12rem;
}

.first\:p-56:first-child{
  padding: 14rem;
}

.first\:p-64:first-child{
  padding: 16rem;
}

.first\:p-px:first-child{
  padding: 1px;
}

.first\:p-0\.25:first-child{
  padding: 0.0625rem;
}

.first\:p-1\.5:first-child{
  padding: 0.375rem;
}

.first\:p-2\.5:first-child{
  padding: 0.625rem;
}

.first\:p-3\.25:first-child{
  padding: 0.8125rem;
}

.first\:p-3\.5:first-child{
  padding: 0.875rem;
}

.first\:p-5\.25:first-child{
  padding: 1.3125rem;
}

.first\:py-0:first-child{
  padding-top: 0;
  padding-bottom: 0;
}

.first\:px-0:first-child{
  padding-left: 0;
  padding-right: 0;
}

.first\:py-1:first-child{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.first\:px-1:first-child{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.first\:py-2:first-child{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.first\:px-2:first-child{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.first\:py-3:first-child{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.first\:px-3:first-child{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.first\:py-4:first-child{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.first\:px-4:first-child{
  padding-left: 1rem;
  padding-right: 1rem;
}

.first\:py-5:first-child{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.first\:px-5:first-child{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.first\:py-6:first-child{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.first\:px-6:first-child{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.first\:py-8:first-child{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.first\:px-8:first-child{
  padding-left: 2rem;
  padding-right: 2rem;
}

.first\:py-9:first-child{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.first\:px-9:first-child{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.first\:py-10:first-child{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.first\:px-10:first-child{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.first\:py-11:first-child{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.first\:px-11:first-child{
  padding-left: 3rem;
  padding-right: 3rem;
}

.first\:py-12:first-child{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.first\:px-12:first-child{
  padding-left: 3rem;
  padding-right: 3rem;
}

.first\:py-14:first-child{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.first\:px-14:first-child{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.first\:py-16:first-child{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.first\:px-16:first-child{
  padding-left: 4rem;
  padding-right: 4rem;
}

.first\:py-20:first-child{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.first\:px-20:first-child{
  padding-left: 5rem;
  padding-right: 5rem;
}

.first\:py-24:first-child{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.first\:px-24:first-child{
  padding-left: 6rem;
  padding-right: 6rem;
}

.first\:py-32:first-child{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.first\:px-32:first-child{
  padding-left: 8rem;
  padding-right: 8rem;
}

.first\:py-40:first-child{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.first\:px-40:first-child{
  padding-left: 10rem;
  padding-right: 10rem;
}

.first\:py-48:first-child{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.first\:px-48:first-child{
  padding-left: 12rem;
  padding-right: 12rem;
}

.first\:py-56:first-child{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.first\:px-56:first-child{
  padding-left: 14rem;
  padding-right: 14rem;
}

.first\:py-64:first-child{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.first\:px-64:first-child{
  padding-left: 16rem;
  padding-right: 16rem;
}

.first\:py-px:first-child{
  padding-top: 1px;
  padding-bottom: 1px;
}

.first\:px-px:first-child{
  padding-left: 1px;
  padding-right: 1px;
}

.first\:py-0\.25:first-child{
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
}

.first\:px-0\.25:first-child{
  padding-left: 0.0625rem;
  padding-right: 0.0625rem;
}

.first\:py-1\.5:first-child{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.first\:px-1\.5:first-child{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.first\:py-2\.5:first-child{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.first\:px-2\.5:first-child{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.first\:py-3\.25:first-child{
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}

.first\:px-3\.25:first-child{
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
}

.first\:py-3\.5:first-child{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.first\:px-3\.5:first-child{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.first\:py-5\.25:first-child{
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
}

.first\:px-5\.25:first-child{
  padding-left: 1.3125rem;
  padding-right: 1.3125rem;
}

.first\:pt-0:first-child{
  padding-top: 0;
}

.first\:pr-0:first-child{
  padding-right: 0;
}

.first\:pb-0:first-child{
  padding-bottom: 0;
}

.first\:pl-0:first-child{
  padding-left: 0;
}

.first\:pt-1:first-child{
  padding-top: 0.25rem;
}

.first\:pr-1:first-child{
  padding-right: 0.25rem;
}

.first\:pb-1:first-child{
  padding-bottom: 0.25rem;
}

.first\:pl-1:first-child{
  padding-left: 0.25rem;
}

.first\:pt-2:first-child{
  padding-top: 0.5rem;
}

.first\:pr-2:first-child{
  padding-right: 0.5rem;
}

.first\:pb-2:first-child{
  padding-bottom: 0.5rem;
}

.first\:pl-2:first-child{
  padding-left: 0.5rem;
}

.first\:pt-3:first-child{
  padding-top: 0.75rem;
}

.first\:pr-3:first-child{
  padding-right: 0.75rem;
}

.first\:pb-3:first-child{
  padding-bottom: 0.75rem;
}

.first\:pl-3:first-child{
  padding-left: 0.75rem;
}

.first\:pt-4:first-child{
  padding-top: 1rem;
}

.first\:pr-4:first-child{
  padding-right: 1rem;
}

.first\:pb-4:first-child{
  padding-bottom: 1rem;
}

.first\:pl-4:first-child{
  padding-left: 1rem;
}

.first\:pt-5:first-child{
  padding-top: 1.25rem;
}

.first\:pr-5:first-child{
  padding-right: 1.25rem;
}

.first\:pb-5:first-child{
  padding-bottom: 1.25rem;
}

.first\:pl-5:first-child{
  padding-left: 1.25rem;
}

.first\:pt-6:first-child{
  padding-top: 1.5rem;
}

.first\:pr-6:first-child{
  padding-right: 1.5rem;
}

.first\:pb-6:first-child{
  padding-bottom: 1.5rem;
}

.first\:pl-6:first-child{
  padding-left: 1.5rem;
}

.first\:pt-8:first-child{
  padding-top: 2rem;
}

.first\:pr-8:first-child{
  padding-right: 2rem;
}

.first\:pb-8:first-child{
  padding-bottom: 2rem;
}

.first\:pl-8:first-child{
  padding-left: 2rem;
}

.first\:pt-9:first-child{
  padding-top: 2.25rem;
}

.first\:pr-9:first-child{
  padding-right: 2.25rem;
}

.first\:pb-9:first-child{
  padding-bottom: 2.25rem;
}

.first\:pl-9:first-child{
  padding-left: 2.25rem;
}

.first\:pt-10:first-child{
  padding-top: 2.5rem;
}

.first\:pr-10:first-child{
  padding-right: 2.5rem;
}

.first\:pb-10:first-child{
  padding-bottom: 2.5rem;
}

.first\:pl-10:first-child{
  padding-left: 2.5rem;
}

.first\:pt-11:first-child{
  padding-top: 3rem;
}

.first\:pr-11:first-child{
  padding-right: 3rem;
}

.first\:pb-11:first-child{
  padding-bottom: 3rem;
}

.first\:pl-11:first-child{
  padding-left: 3rem;
}

.first\:pt-12:first-child{
  padding-top: 3rem;
}

.first\:pr-12:first-child{
  padding-right: 3rem;
}

.first\:pb-12:first-child{
  padding-bottom: 3rem;
}

.first\:pl-12:first-child{
  padding-left: 3rem;
}

.first\:pt-14:first-child{
  padding-top: 3.5rem;
}

.first\:pr-14:first-child{
  padding-right: 3.5rem;
}

.first\:pb-14:first-child{
  padding-bottom: 3.5rem;
}

.first\:pl-14:first-child{
  padding-left: 3.5rem;
}

.first\:pt-16:first-child{
  padding-top: 4rem;
}

.first\:pr-16:first-child{
  padding-right: 4rem;
}

.first\:pb-16:first-child{
  padding-bottom: 4rem;
}

.first\:pl-16:first-child{
  padding-left: 4rem;
}

.first\:pt-20:first-child{
  padding-top: 5rem;
}

.first\:pr-20:first-child{
  padding-right: 5rem;
}

.first\:pb-20:first-child{
  padding-bottom: 5rem;
}

.first\:pl-20:first-child{
  padding-left: 5rem;
}

.first\:pt-24:first-child{
  padding-top: 6rem;
}

.first\:pr-24:first-child{
  padding-right: 6rem;
}

.first\:pb-24:first-child{
  padding-bottom: 6rem;
}

.first\:pl-24:first-child{
  padding-left: 6rem;
}

.first\:pt-32:first-child{
  padding-top: 8rem;
}

.first\:pr-32:first-child{
  padding-right: 8rem;
}

.first\:pb-32:first-child{
  padding-bottom: 8rem;
}

.first\:pl-32:first-child{
  padding-left: 8rem;
}

.first\:pt-40:first-child{
  padding-top: 10rem;
}

.first\:pr-40:first-child{
  padding-right: 10rem;
}

.first\:pb-40:first-child{
  padding-bottom: 10rem;
}

.first\:pl-40:first-child{
  padding-left: 10rem;
}

.first\:pt-48:first-child{
  padding-top: 12rem;
}

.first\:pr-48:first-child{
  padding-right: 12rem;
}

.first\:pb-48:first-child{
  padding-bottom: 12rem;
}

.first\:pl-48:first-child{
  padding-left: 12rem;
}

.first\:pt-56:first-child{
  padding-top: 14rem;
}

.first\:pr-56:first-child{
  padding-right: 14rem;
}

.first\:pb-56:first-child{
  padding-bottom: 14rem;
}

.first\:pl-56:first-child{
  padding-left: 14rem;
}

.first\:pt-64:first-child{
  padding-top: 16rem;
}

.first\:pr-64:first-child{
  padding-right: 16rem;
}

.first\:pb-64:first-child{
  padding-bottom: 16rem;
}

.first\:pl-64:first-child{
  padding-left: 16rem;
}

.first\:pt-px:first-child{
  padding-top: 1px;
}

.first\:pr-px:first-child{
  padding-right: 1px;
}

.first\:pb-px:first-child{
  padding-bottom: 1px;
}

.first\:pl-px:first-child{
  padding-left: 1px;
}

.first\:pt-0\.25:first-child{
  padding-top: 0.0625rem;
}

.first\:pr-0\.25:first-child{
  padding-right: 0.0625rem;
}

.first\:pb-0\.25:first-child{
  padding-bottom: 0.0625rem;
}

.first\:pl-0\.25:first-child{
  padding-left: 0.0625rem;
}

.first\:pt-1\.5:first-child{
  padding-top: 0.375rem;
}

.first\:pr-1\.5:first-child{
  padding-right: 0.375rem;
}

.first\:pb-1\.5:first-child{
  padding-bottom: 0.375rem;
}

.first\:pl-1\.5:first-child{
  padding-left: 0.375rem;
}

.first\:pt-2\.5:first-child{
  padding-top: 0.625rem;
}

.first\:pr-2\.5:first-child{
  padding-right: 0.625rem;
}

.first\:pb-2\.5:first-child{
  padding-bottom: 0.625rem;
}

.first\:pl-2\.5:first-child{
  padding-left: 0.625rem;
}

.first\:pt-3\.25:first-child{
  padding-top: 0.8125rem;
}

.first\:pr-3\.25:first-child{
  padding-right: 0.8125rem;
}

.first\:pb-3\.25:first-child{
  padding-bottom: 0.8125rem;
}

.first\:pl-3\.25:first-child{
  padding-left: 0.8125rem;
}

.first\:pt-3\.5:first-child{
  padding-top: 0.875rem;
}

.first\:pr-3\.5:first-child{
  padding-right: 0.875rem;
}

.first\:pb-3\.5:first-child{
  padding-bottom: 0.875rem;
}

.first\:pl-3\.5:first-child{
  padding-left: 0.875rem;
}

.first\:pt-5\.25:first-child{
  padding-top: 1.3125rem;
}

.first\:pr-5\.25:first-child{
  padding-right: 1.3125rem;
}

.first\:pb-5\.25:first-child{
  padding-bottom: 1.3125rem;
}

.first\:pl-5\.25:first-child{
  padding-left: 1.3125rem;
}

.last\:p-0:last-child{
  padding: 0;
}

.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-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: 3rem;
}

.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-32:last-child{
  padding: 8rem;
}

.last\:p-40:last-child{
  padding: 10rem;
}

.last\:p-48:last-child{
  padding: 12rem;
}

.last\:p-56:last-child{
  padding: 14rem;
}

.last\:p-64:last-child{
  padding: 16rem;
}

.last\:p-px:last-child{
  padding: 1px;
}

.last\:p-0\.25:last-child{
  padding: 0.0625rem;
}

.last\:p-1\.5:last-child{
  padding: 0.375rem;
}

.last\:p-2\.5:last-child{
  padding: 0.625rem;
}

.last\:p-3\.25:last-child{
  padding: 0.8125rem;
}

.last\:p-3\.5:last-child{
  padding: 0.875rem;
}

.last\:p-5\.25:last-child{
  padding: 1.3125rem;
}

.last\:py-0:last-child{
  padding-top: 0;
  padding-bottom: 0;
}

.last\:px-0:last-child{
  padding-left: 0;
  padding-right: 0;
}

.last\:py-1:last-child{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.last\:px-1:last-child{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.last\:py-2:last-child{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.last\:px-2:last-child{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.last\:py-3:last-child{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.last\:px-3:last-child{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.last\:py-4:last-child{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.last\:px-4:last-child{
  padding-left: 1rem;
  padding-right: 1rem;
}

.last\:py-5:last-child{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.last\:px-5:last-child{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.last\:py-6:last-child{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.last\:px-6:last-child{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.last\:py-8:last-child{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.last\:px-8:last-child{
  padding-left: 2rem;
  padding-right: 2rem;
}

.last\:py-9:last-child{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.last\:px-9:last-child{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.last\:py-10:last-child{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.last\:px-10:last-child{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.last\:py-11:last-child{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.last\:px-11:last-child{
  padding-left: 3rem;
  padding-right: 3rem;
}

.last\:py-12:last-child{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.last\:px-12:last-child{
  padding-left: 3rem;
  padding-right: 3rem;
}

.last\:py-14:last-child{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.last\:px-14:last-child{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.last\:py-16:last-child{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.last\:px-16:last-child{
  padding-left: 4rem;
  padding-right: 4rem;
}

.last\:py-20:last-child{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.last\:px-20:last-child{
  padding-left: 5rem;
  padding-right: 5rem;
}

.last\:py-24:last-child{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.last\:px-24:last-child{
  padding-left: 6rem;
  padding-right: 6rem;
}

.last\:py-32:last-child{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.last\:px-32:last-child{
  padding-left: 8rem;
  padding-right: 8rem;
}

.last\:py-40:last-child{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.last\:px-40:last-child{
  padding-left: 10rem;
  padding-right: 10rem;
}

.last\:py-48:last-child{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.last\:px-48:last-child{
  padding-left: 12rem;
  padding-right: 12rem;
}

.last\:py-56:last-child{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.last\:px-56:last-child{
  padding-left: 14rem;
  padding-right: 14rem;
}

.last\:py-64:last-child{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.last\:px-64:last-child{
  padding-left: 16rem;
  padding-right: 16rem;
}

.last\:py-px:last-child{
  padding-top: 1px;
  padding-bottom: 1px;
}

.last\:px-px:last-child{
  padding-left: 1px;
  padding-right: 1px;
}

.last\:py-0\.25:last-child{
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
}

.last\:px-0\.25:last-child{
  padding-left: 0.0625rem;
  padding-right: 0.0625rem;
}

.last\:py-1\.5:last-child{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.last\:px-1\.5:last-child{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.last\:py-2\.5:last-child{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.last\:px-2\.5:last-child{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.last\:py-3\.25:last-child{
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}

.last\:px-3\.25:last-child{
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
}

.last\:py-3\.5:last-child{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.last\:px-3\.5:last-child{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.last\:py-5\.25:last-child{
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
}

.last\:px-5\.25:last-child{
  padding-left: 1.3125rem;
  padding-right: 1.3125rem;
}

.last\:pt-0:last-child{
  padding-top: 0;
}

.last\:pr-0:last-child{
  padding-right: 0;
}

.last\:pb-0:last-child{
  padding-bottom: 0;
}

.last\:pl-0:last-child{
  padding-left: 0;
}

.last\:pt-1:last-child{
  padding-top: 0.25rem;
}

.last\:pr-1:last-child{
  padding-right: 0.25rem;
}

.last\:pb-1:last-child{
  padding-bottom: 0.25rem;
}

.last\:pl-1:last-child{
  padding-left: 0.25rem;
}

.last\:pt-2:last-child{
  padding-top: 0.5rem;
}

.last\:pr-2:last-child{
  padding-right: 0.5rem;
}

.last\:pb-2:last-child{
  padding-bottom: 0.5rem;
}

.last\:pl-2:last-child{
  padding-left: 0.5rem;
}

.last\:pt-3:last-child{
  padding-top: 0.75rem;
}

.last\:pr-3:last-child{
  padding-right: 0.75rem;
}

.last\:pb-3:last-child{
  padding-bottom: 0.75rem;
}

.last\:pl-3:last-child{
  padding-left: 0.75rem;
}

.last\:pt-4:last-child{
  padding-top: 1rem;
}

.last\:pr-4:last-child{
  padding-right: 1rem;
}

.last\:pb-4:last-child{
  padding-bottom: 1rem;
}

.last\:pl-4:last-child{
  padding-left: 1rem;
}

.last\:pt-5:last-child{
  padding-top: 1.25rem;
}

.last\:pr-5:last-child{
  padding-right: 1.25rem;
}

.last\:pb-5:last-child{
  padding-bottom: 1.25rem;
}

.last\:pl-5:last-child{
  padding-left: 1.25rem;
}

.last\:pt-6:last-child{
  padding-top: 1.5rem;
}

.last\:pr-6:last-child{
  padding-right: 1.5rem;
}

.last\:pb-6:last-child{
  padding-bottom: 1.5rem;
}

.last\:pl-6:last-child{
  padding-left: 1.5rem;
}

.last\:pt-8:last-child{
  padding-top: 2rem;
}

.last\:pr-8:last-child{
  padding-right: 2rem;
}

.last\:pb-8:last-child{
  padding-bottom: 2rem;
}

.last\:pl-8:last-child{
  padding-left: 2rem;
}

.last\:pt-9:last-child{
  padding-top: 2.25rem;
}

.last\:pr-9:last-child{
  padding-right: 2.25rem;
}

.last\:pb-9:last-child{
  padding-bottom: 2.25rem;
}

.last\:pl-9:last-child{
  padding-left: 2.25rem;
}

.last\:pt-10:last-child{
  padding-top: 2.5rem;
}

.last\:pr-10:last-child{
  padding-right: 2.5rem;
}

.last\:pb-10:last-child{
  padding-bottom: 2.5rem;
}

.last\:pl-10:last-child{
  padding-left: 2.5rem;
}

.last\:pt-11:last-child{
  padding-top: 3rem;
}

.last\:pr-11:last-child{
  padding-right: 3rem;
}

.last\:pb-11:last-child{
  padding-bottom: 3rem;
}

.last\:pl-11:last-child{
  padding-left: 3rem;
}

.last\:pt-12:last-child{
  padding-top: 3rem;
}

.last\:pr-12:last-child{
  padding-right: 3rem;
}

.last\:pb-12:last-child{
  padding-bottom: 3rem;
}

.last\:pl-12:last-child{
  padding-left: 3rem;
}

.last\:pt-14:last-child{
  padding-top: 3.5rem;
}

.last\:pr-14:last-child{
  padding-right: 3.5rem;
}

.last\:pb-14:last-child{
  padding-bottom: 3.5rem;
}

.last\:pl-14:last-child{
  padding-left: 3.5rem;
}

.last\:pt-16:last-child{
  padding-top: 4rem;
}

.last\:pr-16:last-child{
  padding-right: 4rem;
}

.last\:pb-16:last-child{
  padding-bottom: 4rem;
}

.last\:pl-16:last-child{
  padding-left: 4rem;
}

.last\:pt-20:last-child{
  padding-top: 5rem;
}

.last\:pr-20:last-child{
  padding-right: 5rem;
}

.last\:pb-20:last-child{
  padding-bottom: 5rem;
}

.last\:pl-20:last-child{
  padding-left: 5rem;
}

.last\:pt-24:last-child{
  padding-top: 6rem;
}

.last\:pr-24:last-child{
  padding-right: 6rem;
}

.last\:pb-24:last-child{
  padding-bottom: 6rem;
}

.last\:pl-24:last-child{
  padding-left: 6rem;
}

.last\:pt-32:last-child{
  padding-top: 8rem;
}

.last\:pr-32:last-child{
  padding-right: 8rem;
}

.last\:pb-32:last-child{
  padding-bottom: 8rem;
}

.last\:pl-32:last-child{
  padding-left: 8rem;
}

.last\:pt-40:last-child{
  padding-top: 10rem;
}

.last\:pr-40:last-child{
  padding-right: 10rem;
}

.last\:pb-40:last-child{
  padding-bottom: 10rem;
}

.last\:pl-40:last-child{
  padding-left: 10rem;
}

.last\:pt-48:last-child{
  padding-top: 12rem;
}

.last\:pr-48:last-child{
  padding-right: 12rem;
}

.last\:pb-48:last-child{
  padding-bottom: 12rem;
}

.last\:pl-48:last-child{
  padding-left: 12rem;
}

.last\:pt-56:last-child{
  padding-top: 14rem;
}

.last\:pr-56:last-child{
  padding-right: 14rem;
}

.last\:pb-56:last-child{
  padding-bottom: 14rem;
}

.last\:pl-56:last-child{
  padding-left: 14rem;
}

.last\:pt-64:last-child{
  padding-top: 16rem;
}

.last\:pr-64:last-child{
  padding-right: 16rem;
}

.last\:pb-64:last-child{
  padding-bottom: 16rem;
}

.last\:pl-64:last-child{
  padding-left: 16rem;
}

.last\:pt-px:last-child{
  padding-top: 1px;
}

.last\:pr-px:last-child{
  padding-right: 1px;
}

.last\:pb-px:last-child{
  padding-bottom: 1px;
}

.last\:pl-px:last-child{
  padding-left: 1px;
}

.last\:pt-0\.25:last-child{
  padding-top: 0.0625rem;
}

.last\:pr-0\.25:last-child{
  padding-right: 0.0625rem;
}

.last\:pb-0\.25:last-child{
  padding-bottom: 0.0625rem;
}

.last\:pl-0\.25:last-child{
  padding-left: 0.0625rem;
}

.last\:pt-1\.5:last-child{
  padding-top: 0.375rem;
}

.last\:pr-1\.5:last-child{
  padding-right: 0.375rem;
}

.last\:pb-1\.5:last-child{
  padding-bottom: 0.375rem;
}

.last\:pl-1\.5:last-child{
  padding-left: 0.375rem;
}

.last\:pt-2\.5:last-child{
  padding-top: 0.625rem;
}

.last\:pr-2\.5:last-child{
  padding-right: 0.625rem;
}

.last\:pb-2\.5:last-child{
  padding-bottom: 0.625rem;
}

.last\:pl-2\.5:last-child{
  padding-left: 0.625rem;
}

.last\:pt-3\.25:last-child{
  padding-top: 0.8125rem;
}

.last\:pr-3\.25:last-child{
  padding-right: 0.8125rem;
}

.last\:pb-3\.25:last-child{
  padding-bottom: 0.8125rem;
}

.last\:pl-3\.25:last-child{
  padding-left: 0.8125rem;
}

.last\:pt-3\.5:last-child{
  padding-top: 0.875rem;
}

.last\:pr-3\.5:last-child{
  padding-right: 0.875rem;
}

.last\:pb-3\.5:last-child{
  padding-bottom: 0.875rem;
}

.last\:pl-3\.5:last-child{
  padding-left: 0.875rem;
}

.last\:pt-5\.25:last-child{
  padding-top: 1.3125rem;
}

.last\:pr-5\.25:last-child{
  padding-right: 1.3125rem;
}

.last\:pb-5\.25:last-child{
  padding-bottom: 1.3125rem;
}

.last\:pl-5\.25:last-child{
  padding-left: 1.3125rem;
}

.placeholder-black::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.placeholder-black:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.placeholder-black::placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.placeholder-transparent::-moz-placeholder{
  color: transparent;
}

.placeholder-transparent:-ms-input-placeholder{
  color: transparent;
}

.placeholder-transparent::placeholder{
  color: transparent;
}

.placeholder-error::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.placeholder-error:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.placeholder-error::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.placeholder-success::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.placeholder-success:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.placeholder-success::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.placeholder-white-10::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.placeholder-white-10:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.placeholder-white-10::placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.placeholder-white-20::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.placeholder-white-20:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.placeholder-white-20::placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.placeholder-white::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.placeholder-white:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.placeholder-white::placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.placeholder-cheeto::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.placeholder-cheeto:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.placeholder-cheeto::placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.placeholder-cheeto-very-light::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.placeholder-cheeto-very-light:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.placeholder-cheeto-very-light::placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.placeholder-cheeto-light::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.placeholder-cheeto-light:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.placeholder-cheeto-light::placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.placeholder-cheeto-dark::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.placeholder-cheeto-dark:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.placeholder-cheeto-dark::placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.placeholder-cheeto-hocus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.placeholder-cheeto-hocus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.placeholder-cheeto-hocus::placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.placeholder-cheeto-active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.placeholder-cheeto-active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.placeholder-cheeto-active::placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.placeholder-cheeto-ml-plus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.placeholder-cheeto-ml-plus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.placeholder-cheeto-ml-plus::placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.placeholder-cheeto-banner::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.placeholder-cheeto-banner:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.placeholder-cheeto-banner::placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.placeholder-gracy-1::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.placeholder-gracy-1:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.placeholder-gracy-1::placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.placeholder-gracy-10::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.placeholder-gracy-10:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.placeholder-gracy-10::placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.placeholder-gracy-20::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.placeholder-gracy-20:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.placeholder-gracy-20::placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.placeholder-gracy-30::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.placeholder-gracy-30:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.placeholder-gracy-30::placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.placeholder-gracy-40::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.placeholder-gracy-40:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.placeholder-gracy-40::placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.placeholder-gracy-50::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.placeholder-gracy-50:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.placeholder-gracy-50::placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.placeholder-gracy-60::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.placeholder-gracy-60:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.placeholder-gracy-60::placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.placeholder-gracy-70::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.placeholder-gracy-70:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.placeholder-gracy-70::placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.placeholder-gracy-80::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.placeholder-gracy-80:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.placeholder-gracy-80::placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.placeholder-gracy-90::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.placeholder-gracy-90:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.placeholder-gracy-90::placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.placeholder-gracy-100::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.placeholder-gracy-100:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.placeholder-gracy-100::placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.placeholder-gracy::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.placeholder-gracy:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.placeholder-gracy::placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.placeholder-gracy-overlay-90::-moz-placeholder{
  color: rgba(50,49,50,0.5);
}

.placeholder-gracy-overlay-90:-ms-input-placeholder{
  color: rgba(50,49,50,0.5);
}

.placeholder-gracy-overlay-90::placeholder{
  color: rgba(50,49,50,0.5);
}

.placeholder-login::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.placeholder-login:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.placeholder-login::placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.placeholder-olive-light::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.placeholder-olive-light:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.placeholder-olive-light::placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.placeholder-olive-drab::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.placeholder-olive-drab:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.placeholder-olive-drab::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.placeholder-olive-dark::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.placeholder-olive-dark:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.placeholder-olive-dark::placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.placeholder-daisy-light::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.placeholder-daisy-light:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.placeholder-daisy-light::placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.placeholder-feedback-gumby::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.placeholder-feedback-gumby:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.placeholder-feedback-gumby::placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.placeholder-feedback-daisy::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.placeholder-feedback-daisy:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.placeholder-feedback-daisy::placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.placeholder-feedback-pokey::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.placeholder-feedback-pokey:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.placeholder-feedback-pokey::placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.placeholder-feedback-aster::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.placeholder-feedback-aster:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.placeholder-feedback-aster::placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.placeholder-feedback-aster-dark::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.placeholder-feedback-aster-dark:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.placeholder-feedback-aster-dark::placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.placeholder-feedback-roxo::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.placeholder-feedback-roxo:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.placeholder-feedback-roxo::placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.placeholder-feedback-error::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.placeholder-feedback-error:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.placeholder-feedback-error::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.placeholder-feedback-success::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.placeholder-feedback-success:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.placeholder-feedback-success::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.placeholder-functional-aoki::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.placeholder-functional-aoki:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.placeholder-functional-aoki::placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.placeholder-functional-aoki-dark::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.placeholder-functional-aoki-dark:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.placeholder-functional-aoki-dark::placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.placeholder-functional-aoki-hocus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.placeholder-functional-aoki-hocus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.placeholder-functional-aoki-hocus::placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.placeholder-functional-aoki-active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.placeholder-functional-aoki-active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.placeholder-functional-aoki-active::placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.placeholder-functional-aoki-light::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.placeholder-functional-aoki-light:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.placeholder-functional-aoki-light::placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.placeholder-functional-kermit::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.placeholder-functional-kermit:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.placeholder-functional-kermit::placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.placeholder-mixlabPlus-light::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.placeholder-mixlabPlus-light:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.placeholder-mixlabPlus-light::placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.placeholder-primary-orange-light::-moz-placeholder{
  color: ;
}

.placeholder-primary-orange-light:-ms-input-placeholder{
  color: ;
}

.placeholder-primary-orange-light::placeholder{
  color: ;
}

.placeholder-off-white::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.placeholder-off-white:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.placeholder-off-white::placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.hover\:placeholder-black:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.hover\:placeholder-black:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.hover\:placeholder-black:hover::placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.hover\:placeholder-transparent:hover::-moz-placeholder{
  color: transparent;
}

.hover\:placeholder-transparent:hover:-ms-input-placeholder{
  color: transparent;
}

.hover\:placeholder-transparent:hover::placeholder{
  color: transparent;
}

.hover\:placeholder-error:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.hover\:placeholder-error:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.hover\:placeholder-error:hover::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.hover\:placeholder-success:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.hover\:placeholder-success:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.hover\:placeholder-success:hover::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.hover\:placeholder-white-10:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.hover\:placeholder-white-10:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.hover\:placeholder-white-10:hover::placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.hover\:placeholder-white-20:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.hover\:placeholder-white-20:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.hover\:placeholder-white-20:hover::placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.hover\:placeholder-white:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.hover\:placeholder-white:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.hover\:placeholder-white:hover::placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto:hover::placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-very-light:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-very-light:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-very-light:hover::placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-light:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-light:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-light:hover::placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-dark:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-dark:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-dark:hover::placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-hocus:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-hocus:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-hocus:hover::placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-active:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-active:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-active:hover::placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-ml-plus:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-ml-plus:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-ml-plus:hover::placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-banner:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-banner:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.hover\:placeholder-cheeto-banner:hover::placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-1:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-1:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-1:hover::placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-10:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-10:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-10:hover::placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-20:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-20:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-20:hover::placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-30:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-30:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-30:hover::placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-40:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-40:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-40:hover::placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-50:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-50:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-50:hover::placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-60:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-60:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-60:hover::placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-70:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-70:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-70:hover::placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-80:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-80:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-80:hover::placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-90:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-90:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-90:hover::placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-100:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-100:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-100:hover::placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.hover\:placeholder-gracy:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.hover\:placeholder-gracy:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.hover\:placeholder-gracy:hover::placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.hover\:placeholder-gracy-overlay-90:hover::-moz-placeholder{
  color: rgba(50,49,50,0.5);
}

.hover\:placeholder-gracy-overlay-90:hover:-ms-input-placeholder{
  color: rgba(50,49,50,0.5);
}

.hover\:placeholder-gracy-overlay-90:hover::placeholder{
  color: rgba(50,49,50,0.5);
}

.hover\:placeholder-login:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.hover\:placeholder-login:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.hover\:placeholder-login:hover::placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.hover\:placeholder-olive-light:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.hover\:placeholder-olive-light:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.hover\:placeholder-olive-light:hover::placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.hover\:placeholder-olive-drab:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.hover\:placeholder-olive-drab:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.hover\:placeholder-olive-drab:hover::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.hover\:placeholder-olive-dark:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.hover\:placeholder-olive-dark:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.hover\:placeholder-olive-dark:hover::placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.hover\:placeholder-daisy-light:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.hover\:placeholder-daisy-light:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.hover\:placeholder-daisy-light:hover::placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-gumby:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-gumby:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-gumby:hover::placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-daisy:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-daisy:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-daisy:hover::placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-pokey:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-pokey:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-pokey:hover::placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-aster:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-aster:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-aster:hover::placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-aster-dark:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-aster-dark:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-aster-dark:hover::placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-roxo:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-roxo:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-roxo:hover::placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-error:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-error:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-error:hover::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-success:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-success:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.hover\:placeholder-feedback-success:hover::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki:hover::placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-dark:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-dark:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-dark:hover::placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-hocus:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-hocus:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-hocus:hover::placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-active:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-active:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-active:hover::placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-light:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-light:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.hover\:placeholder-functional-aoki-light:hover::placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.hover\:placeholder-functional-kermit:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.hover\:placeholder-functional-kermit:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.hover\:placeholder-functional-kermit:hover::placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.hover\:placeholder-mixlabPlus-light:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.hover\:placeholder-mixlabPlus-light:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.hover\:placeholder-mixlabPlus-light:hover::placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.hover\:placeholder-primary-orange-light:hover::-moz-placeholder{
  color: ;
}

.hover\:placeholder-primary-orange-light:hover:-ms-input-placeholder{
  color: ;
}

.hover\:placeholder-primary-orange-light:hover::placeholder{
  color: ;
}

.hover\:placeholder-off-white:hover::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.hover\:placeholder-off-white:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.hover\:placeholder-off-white:hover::placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.focus\:placeholder-black:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.focus\:placeholder-black:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.focus\:placeholder-black:focus::placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--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-error:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.focus\:placeholder-error:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.focus\:placeholder-error:focus::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.focus\:placeholder-success:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.focus\:placeholder-success:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.focus\:placeholder-success:focus::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.focus\:placeholder-white-10:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.focus\:placeholder-white-10:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.focus\:placeholder-white-10:focus::placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.focus\:placeholder-white-20:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.focus\:placeholder-white-20:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.focus\:placeholder-white-20:focus::placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.focus\:placeholder-white:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.focus\:placeholder-white:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.focus\:placeholder-white:focus::placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto:focus::placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-very-light:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-very-light:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-very-light:focus::placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-light:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-light:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-light:focus::placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-dark:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-dark:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-dark:focus::placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-hocus:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-hocus:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-hocus:focus::placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-active:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-active:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-active:focus::placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-ml-plus:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-ml-plus:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-ml-plus:focus::placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-banner:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-banner:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.focus\:placeholder-cheeto-banner:focus::placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-1:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-1:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-1:focus::placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-10:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-10:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-10:focus::placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-20:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-20:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-20:focus::placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-30:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-30:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-30:focus::placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-40:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-40:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-40:focus::placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-50:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-50:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-50:focus::placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-60:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-60:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-60:focus::placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-70:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-70:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-70:focus::placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-80:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-80:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-80:focus::placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-90:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-90:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-90:focus::placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-100:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-100:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-100:focus::placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.focus\:placeholder-gracy:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.focus\:placeholder-gracy:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.focus\:placeholder-gracy:focus::placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.focus\:placeholder-gracy-overlay-90:focus::-moz-placeholder{
  color: rgba(50,49,50,0.5);
}

.focus\:placeholder-gracy-overlay-90:focus:-ms-input-placeholder{
  color: rgba(50,49,50,0.5);
}

.focus\:placeholder-gracy-overlay-90:focus::placeholder{
  color: rgba(50,49,50,0.5);
}

.focus\:placeholder-login:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.focus\:placeholder-login:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.focus\:placeholder-login:focus::placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.focus\:placeholder-olive-light:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.focus\:placeholder-olive-light:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.focus\:placeholder-olive-light:focus::placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.focus\:placeholder-olive-drab:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.focus\:placeholder-olive-drab:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.focus\:placeholder-olive-drab:focus::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.focus\:placeholder-olive-dark:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.focus\:placeholder-olive-dark:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.focus\:placeholder-olive-dark:focus::placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.focus\:placeholder-daisy-light:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.focus\:placeholder-daisy-light:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.focus\:placeholder-daisy-light:focus::placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-gumby:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-gumby:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-gumby:focus::placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-daisy:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-daisy:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-daisy:focus::placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-pokey:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-pokey:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-pokey:focus::placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-aster:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-aster:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-aster:focus::placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-aster-dark:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-aster-dark:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-aster-dark:focus::placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-roxo:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-roxo:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-roxo:focus::placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-error:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-error:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-error:focus::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-success:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-success:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.focus\:placeholder-feedback-success:focus::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki:focus::placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-dark:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-dark:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-dark:focus::placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-hocus:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-hocus:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-hocus:focus::placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-active:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-active:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-active:focus::placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-light:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-light:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.focus\:placeholder-functional-aoki-light:focus::placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.focus\:placeholder-functional-kermit:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.focus\:placeholder-functional-kermit:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.focus\:placeholder-functional-kermit:focus::placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.focus\:placeholder-mixlabPlus-light:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.focus\:placeholder-mixlabPlus-light:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.focus\:placeholder-mixlabPlus-light:focus::placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.focus\:placeholder-primary-orange-light:focus::-moz-placeholder{
  color: ;
}

.focus\:placeholder-primary-orange-light:focus:-ms-input-placeholder{
  color: ;
}

.focus\:placeholder-primary-orange-light:focus::placeholder{
  color: ;
}

.focus\:placeholder-off-white:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.focus\:placeholder-off-white:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.focus\:placeholder-off-white:focus::placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.active\:placeholder-black:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.active\:placeholder-black:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.active\:placeholder-black:active::placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.active\:placeholder-transparent:active::-moz-placeholder{
  color: transparent;
}

.active\:placeholder-transparent:active:-ms-input-placeholder{
  color: transparent;
}

.active\:placeholder-transparent:active::placeholder{
  color: transparent;
}

.active\:placeholder-error:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.active\:placeholder-error:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.active\:placeholder-error:active::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.active\:placeholder-success:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.active\:placeholder-success:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.active\:placeholder-success:active::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.active\:placeholder-white-10:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.active\:placeholder-white-10:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.active\:placeholder-white-10:active::placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.active\:placeholder-white-20:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.active\:placeholder-white-20:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.active\:placeholder-white-20:active::placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.active\:placeholder-white:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.active\:placeholder-white:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.active\:placeholder-white:active::placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.active\:placeholder-cheeto:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.active\:placeholder-cheeto:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.active\:placeholder-cheeto:active::placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-very-light:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-very-light:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-very-light:active::placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-light:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-light:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-light:active::placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-dark:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-dark:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-dark:active::placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-hocus:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-hocus:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-hocus:active::placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-active:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-active:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-active:active::placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-ml-plus:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-ml-plus:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-ml-plus:active::placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-banner:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-banner:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.active\:placeholder-cheeto-banner:active::placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.active\:placeholder-gracy-1:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.active\:placeholder-gracy-1:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.active\:placeholder-gracy-1:active::placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.active\:placeholder-gracy-10:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.active\:placeholder-gracy-10:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.active\:placeholder-gracy-10:active::placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.active\:placeholder-gracy-20:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.active\:placeholder-gracy-20:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.active\:placeholder-gracy-20:active::placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.active\:placeholder-gracy-30:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.active\:placeholder-gracy-30:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.active\:placeholder-gracy-30:active::placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.active\:placeholder-gracy-40:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.active\:placeholder-gracy-40:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.active\:placeholder-gracy-40:active::placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.active\:placeholder-gracy-50:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.active\:placeholder-gracy-50:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.active\:placeholder-gracy-50:active::placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.active\:placeholder-gracy-60:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.active\:placeholder-gracy-60:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.active\:placeholder-gracy-60:active::placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.active\:placeholder-gracy-70:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.active\:placeholder-gracy-70:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.active\:placeholder-gracy-70:active::placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.active\:placeholder-gracy-80:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.active\:placeholder-gracy-80:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.active\:placeholder-gracy-80:active::placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.active\:placeholder-gracy-90:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.active\:placeholder-gracy-90:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.active\:placeholder-gracy-90:active::placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.active\:placeholder-gracy-100:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.active\:placeholder-gracy-100:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.active\:placeholder-gracy-100:active::placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.active\:placeholder-gracy:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.active\:placeholder-gracy:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.active\:placeholder-gracy:active::placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.active\:placeholder-gracy-overlay-90:active::-moz-placeholder{
  color: rgba(50,49,50,0.5);
}

.active\:placeholder-gracy-overlay-90:active:-ms-input-placeholder{
  color: rgba(50,49,50,0.5);
}

.active\:placeholder-gracy-overlay-90:active::placeholder{
  color: rgba(50,49,50,0.5);
}

.active\:placeholder-login:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.active\:placeholder-login:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.active\:placeholder-login:active::placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.active\:placeholder-olive-light:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.active\:placeholder-olive-light:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.active\:placeholder-olive-light:active::placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.active\:placeholder-olive-drab:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.active\:placeholder-olive-drab:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.active\:placeholder-olive-drab:active::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.active\:placeholder-olive-dark:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.active\:placeholder-olive-dark:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.active\:placeholder-olive-dark:active::placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.active\:placeholder-daisy-light:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.active\:placeholder-daisy-light:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.active\:placeholder-daisy-light:active::placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.active\:placeholder-feedback-gumby:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.active\:placeholder-feedback-gumby:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.active\:placeholder-feedback-gumby:active::placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.active\:placeholder-feedback-daisy:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.active\:placeholder-feedback-daisy:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.active\:placeholder-feedback-daisy:active::placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.active\:placeholder-feedback-pokey:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.active\:placeholder-feedback-pokey:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.active\:placeholder-feedback-pokey:active::placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.active\:placeholder-feedback-aster:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.active\:placeholder-feedback-aster:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.active\:placeholder-feedback-aster:active::placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.active\:placeholder-feedback-aster-dark:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.active\:placeholder-feedback-aster-dark:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.active\:placeholder-feedback-aster-dark:active::placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.active\:placeholder-feedback-roxo:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.active\:placeholder-feedback-roxo:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.active\:placeholder-feedback-roxo:active::placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.active\:placeholder-feedback-error:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.active\:placeholder-feedback-error:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.active\:placeholder-feedback-error:active::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.active\:placeholder-feedback-success:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.active\:placeholder-feedback-success:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.active\:placeholder-feedback-success:active::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki:active::placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-dark:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-dark:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-dark:active::placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-hocus:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-hocus:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-hocus:active::placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-active:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-active:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-active:active::placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-light:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-light:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.active\:placeholder-functional-aoki-light:active::placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.active\:placeholder-functional-kermit:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.active\:placeholder-functional-kermit:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.active\:placeholder-functional-kermit:active::placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.active\:placeholder-mixlabPlus-light:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.active\:placeholder-mixlabPlus-light:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.active\:placeholder-mixlabPlus-light:active::placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.active\:placeholder-primary-orange-light:active::-moz-placeholder{
  color: ;
}

.active\:placeholder-primary-orange-light:active:-ms-input-placeholder{
  color: ;
}

.active\:placeholder-primary-orange-light:active::placeholder{
  color: ;
}

.active\:placeholder-off-white:active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.active\:placeholder-off-white:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.active\:placeholder-off-white:active::placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.first\:placeholder-black:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.first\:placeholder-black:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.first\:placeholder-black:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.first\:placeholder-transparent:first-child::-moz-placeholder{
  color: transparent;
}

.first\:placeholder-transparent:first-child:-ms-input-placeholder{
  color: transparent;
}

.first\:placeholder-transparent:first-child::placeholder{
  color: transparent;
}

.first\:placeholder-error:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.first\:placeholder-error:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.first\:placeholder-error:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.first\:placeholder-success:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.first\:placeholder-success:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.first\:placeholder-success:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.first\:placeholder-white-10:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.first\:placeholder-white-10:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.first\:placeholder-white-10:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.first\:placeholder-white-20:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.first\:placeholder-white-20:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.first\:placeholder-white-20:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.first\:placeholder-white:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.first\:placeholder-white:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.first\:placeholder-white:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.first\:placeholder-cheeto:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.first\:placeholder-cheeto:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.first\:placeholder-cheeto:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-very-light:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-very-light:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-very-light:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-light:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-light:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-light:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-dark:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-dark:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-dark:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-hocus:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-hocus:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-hocus:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-active:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-active:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-active:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-ml-plus:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-ml-plus:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-ml-plus:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-banner:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-banner:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.first\:placeholder-cheeto-banner:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.first\:placeholder-gracy-1:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.first\:placeholder-gracy-1:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.first\:placeholder-gracy-1:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.first\:placeholder-gracy-10:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.first\:placeholder-gracy-10:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.first\:placeholder-gracy-10:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.first\:placeholder-gracy-20:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.first\:placeholder-gracy-20:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.first\:placeholder-gracy-20:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.first\:placeholder-gracy-30:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.first\:placeholder-gracy-30:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.first\:placeholder-gracy-30:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.first\:placeholder-gracy-40:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.first\:placeholder-gracy-40:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.first\:placeholder-gracy-40:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.first\:placeholder-gracy-50:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.first\:placeholder-gracy-50:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.first\:placeholder-gracy-50:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.first\:placeholder-gracy-60:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.first\:placeholder-gracy-60:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.first\:placeholder-gracy-60:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.first\:placeholder-gracy-70:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.first\:placeholder-gracy-70:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.first\:placeholder-gracy-70:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.first\:placeholder-gracy-80:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.first\:placeholder-gracy-80:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.first\:placeholder-gracy-80:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.first\:placeholder-gracy-90:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.first\:placeholder-gracy-90:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.first\:placeholder-gracy-90:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.first\:placeholder-gracy-100:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.first\:placeholder-gracy-100:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.first\:placeholder-gracy-100:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.first\:placeholder-gracy:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.first\:placeholder-gracy:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.first\:placeholder-gracy:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.first\:placeholder-gracy-overlay-90:first-child::-moz-placeholder{
  color: rgba(50,49,50,0.5);
}

.first\:placeholder-gracy-overlay-90:first-child:-ms-input-placeholder{
  color: rgba(50,49,50,0.5);
}

.first\:placeholder-gracy-overlay-90:first-child::placeholder{
  color: rgba(50,49,50,0.5);
}

.first\:placeholder-login:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.first\:placeholder-login:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.first\:placeholder-login:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.first\:placeholder-olive-light:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.first\:placeholder-olive-light:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.first\:placeholder-olive-light:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.first\:placeholder-olive-drab:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.first\:placeholder-olive-drab:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.first\:placeholder-olive-drab:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.first\:placeholder-olive-dark:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.first\:placeholder-olive-dark:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.first\:placeholder-olive-dark:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.first\:placeholder-daisy-light:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.first\:placeholder-daisy-light:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.first\:placeholder-daisy-light:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.first\:placeholder-feedback-gumby:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.first\:placeholder-feedback-gumby:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.first\:placeholder-feedback-gumby:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.first\:placeholder-feedback-daisy:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.first\:placeholder-feedback-daisy:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.first\:placeholder-feedback-daisy:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.first\:placeholder-feedback-pokey:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.first\:placeholder-feedback-pokey:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.first\:placeholder-feedback-pokey:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.first\:placeholder-feedback-aster:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.first\:placeholder-feedback-aster:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.first\:placeholder-feedback-aster:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.first\:placeholder-feedback-aster-dark:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.first\:placeholder-feedback-aster-dark:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.first\:placeholder-feedback-aster-dark:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.first\:placeholder-feedback-roxo:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.first\:placeholder-feedback-roxo:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.first\:placeholder-feedback-roxo:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.first\:placeholder-feedback-error:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.first\:placeholder-feedback-error:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.first\:placeholder-feedback-error:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.first\:placeholder-feedback-success:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.first\:placeholder-feedback-success:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.first\:placeholder-feedback-success:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-dark:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-dark:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-dark:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-hocus:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-hocus:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-hocus:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-active:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-active:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-active:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-light:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-light:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.first\:placeholder-functional-aoki-light:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.first\:placeholder-functional-kermit:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.first\:placeholder-functional-kermit:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.first\:placeholder-functional-kermit:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.first\:placeholder-mixlabPlus-light:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.first\:placeholder-mixlabPlus-light:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.first\:placeholder-mixlabPlus-light:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.first\:placeholder-primary-orange-light:first-child::-moz-placeholder{
  color: ;
}

.first\:placeholder-primary-orange-light:first-child:-ms-input-placeholder{
  color: ;
}

.first\:placeholder-primary-orange-light:first-child::placeholder{
  color: ;
}

.first\:placeholder-off-white:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.first\:placeholder-off-white:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.first\:placeholder-off-white:first-child::placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.last\:placeholder-black:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.last\:placeholder-black:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.last\:placeholder-black:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--placeholder-opacity));
}

.last\:placeholder-transparent:last-child::-moz-placeholder{
  color: transparent;
}

.last\:placeholder-transparent:last-child:-ms-input-placeholder{
  color: transparent;
}

.last\:placeholder-transparent:last-child::placeholder{
  color: transparent;
}

.last\:placeholder-error:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.last\:placeholder-error:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.last\:placeholder-error:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.last\:placeholder-success:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.last\:placeholder-success:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.last\:placeholder-success:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.last\:placeholder-white-10:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.last\:placeholder-white-10:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.last\:placeholder-white-10:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--placeholder-opacity));
}

.last\:placeholder-white-20:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.last\:placeholder-white-20:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.last\:placeholder-white-20:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--placeholder-opacity));
}

.last\:placeholder-white:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.last\:placeholder-white:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.last\:placeholder-white:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--placeholder-opacity));
}

.last\:placeholder-cheeto:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.last\:placeholder-cheeto:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.last\:placeholder-cheeto:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-very-light:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-very-light:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-very-light:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-light:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-light:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-light:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-dark:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-dark:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-dark:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-hocus:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-hocus:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-hocus:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-active:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-active:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-active:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-ml-plus:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-ml-plus:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-ml-plus:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-banner:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-banner:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.last\:placeholder-cheeto-banner:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--placeholder-opacity));
}

.last\:placeholder-gracy-1:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.last\:placeholder-gracy-1:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.last\:placeholder-gracy-1:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--placeholder-opacity));
}

.last\:placeholder-gracy-10:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.last\:placeholder-gracy-10:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.last\:placeholder-gracy-10:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--placeholder-opacity));
}

.last\:placeholder-gracy-20:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.last\:placeholder-gracy-20:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.last\:placeholder-gracy-20:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--placeholder-opacity));
}

.last\:placeholder-gracy-30:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.last\:placeholder-gracy-30:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.last\:placeholder-gracy-30:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--placeholder-opacity));
}

.last\:placeholder-gracy-40:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.last\:placeholder-gracy-40:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.last\:placeholder-gracy-40:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--placeholder-opacity));
}

.last\:placeholder-gracy-50:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.last\:placeholder-gracy-50:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.last\:placeholder-gracy-50:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--placeholder-opacity));
}

.last\:placeholder-gracy-60:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.last\:placeholder-gracy-60:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.last\:placeholder-gracy-60:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--placeholder-opacity));
}

.last\:placeholder-gracy-70:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.last\:placeholder-gracy-70:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.last\:placeholder-gracy-70:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--placeholder-opacity));
}

.last\:placeholder-gracy-80:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.last\:placeholder-gracy-80:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.last\:placeholder-gracy-80:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--placeholder-opacity));
}

.last\:placeholder-gracy-90:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.last\:placeholder-gracy-90:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.last\:placeholder-gracy-90:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--placeholder-opacity));
}

.last\:placeholder-gracy-100:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.last\:placeholder-gracy-100:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.last\:placeholder-gracy-100:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--placeholder-opacity));
}

.last\:placeholder-gracy:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.last\:placeholder-gracy:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.last\:placeholder-gracy:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--placeholder-opacity));
}

.last\:placeholder-gracy-overlay-90:last-child::-moz-placeholder{
  color: rgba(50,49,50,0.5);
}

.last\:placeholder-gracy-overlay-90:last-child:-ms-input-placeholder{
  color: rgba(50,49,50,0.5);
}

.last\:placeholder-gracy-overlay-90:last-child::placeholder{
  color: rgba(50,49,50,0.5);
}

.last\:placeholder-login:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.last\:placeholder-login:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.last\:placeholder-login:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--placeholder-opacity));
}

.last\:placeholder-olive-light:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.last\:placeholder-olive-light:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.last\:placeholder-olive-light:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--placeholder-opacity));
}

.last\:placeholder-olive-drab:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.last\:placeholder-olive-drab:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.last\:placeholder-olive-drab:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.last\:placeholder-olive-dark:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.last\:placeholder-olive-dark:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.last\:placeholder-olive-dark:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--placeholder-opacity));
}

.last\:placeholder-daisy-light:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.last\:placeholder-daisy-light:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.last\:placeholder-daisy-light:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--placeholder-opacity));
}

.last\:placeholder-feedback-gumby:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.last\:placeholder-feedback-gumby:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.last\:placeholder-feedback-gumby:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--placeholder-opacity));
}

.last\:placeholder-feedback-daisy:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.last\:placeholder-feedback-daisy:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.last\:placeholder-feedback-daisy:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--placeholder-opacity));
}

.last\:placeholder-feedback-pokey:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.last\:placeholder-feedback-pokey:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.last\:placeholder-feedback-pokey:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--placeholder-opacity));
}

.last\:placeholder-feedback-aster:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.last\:placeholder-feedback-aster:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.last\:placeholder-feedback-aster:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--placeholder-opacity));
}

.last\:placeholder-feedback-aster-dark:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.last\:placeholder-feedback-aster-dark:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.last\:placeholder-feedback-aster-dark:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--placeholder-opacity));
}

.last\:placeholder-feedback-roxo:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.last\:placeholder-feedback-roxo:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.last\:placeholder-feedback-roxo:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--placeholder-opacity));
}

.last\:placeholder-feedback-error:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.last\:placeholder-feedback-error:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.last\:placeholder-feedback-error:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--placeholder-opacity));
}

.last\:placeholder-feedback-success:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.last\:placeholder-feedback-success:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.last\:placeholder-feedback-success:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-dark:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-dark:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-dark:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-hocus:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-hocus:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-hocus:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-active:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-active:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-active:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-light:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-light:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.last\:placeholder-functional-aoki-light:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--placeholder-opacity));
}

.last\:placeholder-functional-kermit:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.last\:placeholder-functional-kermit:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.last\:placeholder-functional-kermit:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--placeholder-opacity));
}

.last\:placeholder-mixlabPlus-light:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.last\:placeholder-mixlabPlus-light:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.last\:placeholder-mixlabPlus-light:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--placeholder-opacity));
}

.last\:placeholder-primary-orange-light:last-child::-moz-placeholder{
  color: ;
}

.last\:placeholder-primary-orange-light:last-child:-ms-input-placeholder{
  color: ;
}

.last\:placeholder-primary-orange-light:last-child::placeholder{
  color: ;
}

.last\:placeholder-off-white:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.last\:placeholder-off-white:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.last\:placeholder-off-white:last-child::placeholder{
  --placeholder-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--placeholder-opacity));
}

.placeholder-opacity-0::-moz-placeholder{
  --placeholder-opacity: 0;
}

.placeholder-opacity-0:-ms-input-placeholder{
  --placeholder-opacity: 0;
}

.placeholder-opacity-0::placeholder{
  --placeholder-opacity: 0;
}

.placeholder-opacity-25::-moz-placeholder{
  --placeholder-opacity: 0.25;
}

.placeholder-opacity-25:-ms-input-placeholder{
  --placeholder-opacity: 0.25;
}

.placeholder-opacity-25::placeholder{
  --placeholder-opacity: 0.25;
}

.placeholder-opacity-50::-moz-placeholder{
  --placeholder-opacity: .5;
}

.placeholder-opacity-50:-ms-input-placeholder{
  --placeholder-opacity: .5;
}

.placeholder-opacity-50::placeholder{
  --placeholder-opacity: .5;
}

.placeholder-opacity-75::-moz-placeholder{
  --placeholder-opacity: 0.75;
}

.placeholder-opacity-75:-ms-input-placeholder{
  --placeholder-opacity: 0.75;
}

.placeholder-opacity-75::placeholder{
  --placeholder-opacity: 0.75;
}

.placeholder-opacity-80::-moz-placeholder{
  --placeholder-opacity: .8;
}

.placeholder-opacity-80:-ms-input-placeholder{
  --placeholder-opacity: .8;
}

.placeholder-opacity-80::placeholder{
  --placeholder-opacity: .8;
}

.placeholder-opacity-100::-moz-placeholder{
  --placeholder-opacity: 1;
}

.placeholder-opacity-100:-ms-input-placeholder{
  --placeholder-opacity: 1;
}

.placeholder-opacity-100::placeholder{
  --placeholder-opacity: 1;
}

.hover\:placeholder-opacity-0:hover::-moz-placeholder{
  --placeholder-opacity: 0;
}

.hover\:placeholder-opacity-0:hover:-ms-input-placeholder{
  --placeholder-opacity: 0;
}

.hover\:placeholder-opacity-0:hover::placeholder{
  --placeholder-opacity: 0;
}

.hover\:placeholder-opacity-25:hover::-moz-placeholder{
  --placeholder-opacity: 0.25;
}

.hover\:placeholder-opacity-25:hover:-ms-input-placeholder{
  --placeholder-opacity: 0.25;
}

.hover\:placeholder-opacity-25:hover::placeholder{
  --placeholder-opacity: 0.25;
}

.hover\:placeholder-opacity-50:hover::-moz-placeholder{
  --placeholder-opacity: .5;
}

.hover\:placeholder-opacity-50:hover:-ms-input-placeholder{
  --placeholder-opacity: .5;
}

.hover\:placeholder-opacity-50:hover::placeholder{
  --placeholder-opacity: .5;
}

.hover\:placeholder-opacity-75:hover::-moz-placeholder{
  --placeholder-opacity: 0.75;
}

.hover\:placeholder-opacity-75:hover:-ms-input-placeholder{
  --placeholder-opacity: 0.75;
}

.hover\:placeholder-opacity-75:hover::placeholder{
  --placeholder-opacity: 0.75;
}

.hover\:placeholder-opacity-80:hover::-moz-placeholder{
  --placeholder-opacity: .8;
}

.hover\:placeholder-opacity-80:hover:-ms-input-placeholder{
  --placeholder-opacity: .8;
}

.hover\:placeholder-opacity-80:hover::placeholder{
  --placeholder-opacity: .8;
}

.hover\:placeholder-opacity-100:hover::-moz-placeholder{
  --placeholder-opacity: 1;
}

.hover\:placeholder-opacity-100:hover:-ms-input-placeholder{
  --placeholder-opacity: 1;
}

.hover\:placeholder-opacity-100:hover::placeholder{
  --placeholder-opacity: 1;
}

.focus\:placeholder-opacity-0:focus::-moz-placeholder{
  --placeholder-opacity: 0;
}

.focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
  --placeholder-opacity: 0;
}

.focus\:placeholder-opacity-0:focus::placeholder{
  --placeholder-opacity: 0;
}

.focus\:placeholder-opacity-25:focus::-moz-placeholder{
  --placeholder-opacity: 0.25;
}

.focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
  --placeholder-opacity: 0.25;
}

.focus\:placeholder-opacity-25:focus::placeholder{
  --placeholder-opacity: 0.25;
}

.focus\:placeholder-opacity-50:focus::-moz-placeholder{
  --placeholder-opacity: .5;
}

.focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
  --placeholder-opacity: .5;
}

.focus\:placeholder-opacity-50:focus::placeholder{
  --placeholder-opacity: .5;
}

.focus\:placeholder-opacity-75:focus::-moz-placeholder{
  --placeholder-opacity: 0.75;
}

.focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
  --placeholder-opacity: 0.75;
}

.focus\:placeholder-opacity-75:focus::placeholder{
  --placeholder-opacity: 0.75;
}

.focus\:placeholder-opacity-80:focus::-moz-placeholder{
  --placeholder-opacity: .8;
}

.focus\:placeholder-opacity-80:focus:-ms-input-placeholder{
  --placeholder-opacity: .8;
}

.focus\:placeholder-opacity-80:focus::placeholder{
  --placeholder-opacity: .8;
}

.focus\:placeholder-opacity-100:focus::-moz-placeholder{
  --placeholder-opacity: 1;
}

.focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
  --placeholder-opacity: 1;
}

.focus\:placeholder-opacity-100:focus::placeholder{
  --placeholder-opacity: 1;
}

.active\:placeholder-opacity-0:active::-moz-placeholder{
  --placeholder-opacity: 0;
}

.active\:placeholder-opacity-0:active:-ms-input-placeholder{
  --placeholder-opacity: 0;
}

.active\:placeholder-opacity-0:active::placeholder{
  --placeholder-opacity: 0;
}

.active\:placeholder-opacity-25:active::-moz-placeholder{
  --placeholder-opacity: 0.25;
}

.active\:placeholder-opacity-25:active:-ms-input-placeholder{
  --placeholder-opacity: 0.25;
}

.active\:placeholder-opacity-25:active::placeholder{
  --placeholder-opacity: 0.25;
}

.active\:placeholder-opacity-50:active::-moz-placeholder{
  --placeholder-opacity: .5;
}

.active\:placeholder-opacity-50:active:-ms-input-placeholder{
  --placeholder-opacity: .5;
}

.active\:placeholder-opacity-50:active::placeholder{
  --placeholder-opacity: .5;
}

.active\:placeholder-opacity-75:active::-moz-placeholder{
  --placeholder-opacity: 0.75;
}

.active\:placeholder-opacity-75:active:-ms-input-placeholder{
  --placeholder-opacity: 0.75;
}

.active\:placeholder-opacity-75:active::placeholder{
  --placeholder-opacity: 0.75;
}

.active\:placeholder-opacity-80:active::-moz-placeholder{
  --placeholder-opacity: .8;
}

.active\:placeholder-opacity-80:active:-ms-input-placeholder{
  --placeholder-opacity: .8;
}

.active\:placeholder-opacity-80:active::placeholder{
  --placeholder-opacity: .8;
}

.active\:placeholder-opacity-100:active::-moz-placeholder{
  --placeholder-opacity: 1;
}

.active\:placeholder-opacity-100:active:-ms-input-placeholder{
  --placeholder-opacity: 1;
}

.active\:placeholder-opacity-100:active::placeholder{
  --placeholder-opacity: 1;
}

.first\:placeholder-opacity-0:first-child::-moz-placeholder{
  --placeholder-opacity: 0;
}

.first\:placeholder-opacity-0:first-child:-ms-input-placeholder{
  --placeholder-opacity: 0;
}

.first\:placeholder-opacity-0:first-child::placeholder{
  --placeholder-opacity: 0;
}

.first\:placeholder-opacity-25:first-child::-moz-placeholder{
  --placeholder-opacity: 0.25;
}

.first\:placeholder-opacity-25:first-child:-ms-input-placeholder{
  --placeholder-opacity: 0.25;
}

.first\:placeholder-opacity-25:first-child::placeholder{
  --placeholder-opacity: 0.25;
}

.first\:placeholder-opacity-50:first-child::-moz-placeholder{
  --placeholder-opacity: .5;
}

.first\:placeholder-opacity-50:first-child:-ms-input-placeholder{
  --placeholder-opacity: .5;
}

.first\:placeholder-opacity-50:first-child::placeholder{
  --placeholder-opacity: .5;
}

.first\:placeholder-opacity-75:first-child::-moz-placeholder{
  --placeholder-opacity: 0.75;
}

.first\:placeholder-opacity-75:first-child:-ms-input-placeholder{
  --placeholder-opacity: 0.75;
}

.first\:placeholder-opacity-75:first-child::placeholder{
  --placeholder-opacity: 0.75;
}

.first\:placeholder-opacity-80:first-child::-moz-placeholder{
  --placeholder-opacity: .8;
}

.first\:placeholder-opacity-80:first-child:-ms-input-placeholder{
  --placeholder-opacity: .8;
}

.first\:placeholder-opacity-80:first-child::placeholder{
  --placeholder-opacity: .8;
}

.first\:placeholder-opacity-100:first-child::-moz-placeholder{
  --placeholder-opacity: 1;
}

.first\:placeholder-opacity-100:first-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
}

.first\:placeholder-opacity-100:first-child::placeholder{
  --placeholder-opacity: 1;
}

.last\:placeholder-opacity-0:last-child::-moz-placeholder{
  --placeholder-opacity: 0;
}

.last\:placeholder-opacity-0:last-child:-ms-input-placeholder{
  --placeholder-opacity: 0;
}

.last\:placeholder-opacity-0:last-child::placeholder{
  --placeholder-opacity: 0;
}

.last\:placeholder-opacity-25:last-child::-moz-placeholder{
  --placeholder-opacity: 0.25;
}

.last\:placeholder-opacity-25:last-child:-ms-input-placeholder{
  --placeholder-opacity: 0.25;
}

.last\:placeholder-opacity-25:last-child::placeholder{
  --placeholder-opacity: 0.25;
}

.last\:placeholder-opacity-50:last-child::-moz-placeholder{
  --placeholder-opacity: .5;
}

.last\:placeholder-opacity-50:last-child:-ms-input-placeholder{
  --placeholder-opacity: .5;
}

.last\:placeholder-opacity-50:last-child::placeholder{
  --placeholder-opacity: .5;
}

.last\:placeholder-opacity-75:last-child::-moz-placeholder{
  --placeholder-opacity: 0.75;
}

.last\:placeholder-opacity-75:last-child:-ms-input-placeholder{
  --placeholder-opacity: 0.75;
}

.last\:placeholder-opacity-75:last-child::placeholder{
  --placeholder-opacity: 0.75;
}

.last\:placeholder-opacity-80:last-child::-moz-placeholder{
  --placeholder-opacity: .8;
}

.last\:placeholder-opacity-80:last-child:-ms-input-placeholder{
  --placeholder-opacity: .8;
}

.last\:placeholder-opacity-80:last-child::placeholder{
  --placeholder-opacity: .8;
}

.last\:placeholder-opacity-100:last-child::-moz-placeholder{
  --placeholder-opacity: 1;
}

.last\:placeholder-opacity-100:last-child:-ms-input-placeholder{
  --placeholder-opacity: 1;
}

.last\:placeholder-opacity-100:last-child::placeholder{
  --placeholder-opacity: 1;
}

.pointer-events-none{
  pointer-events: none;
}

.pointer-events-auto{
  pointer-events: auto;
}

.hover\:pointer-events-none:hover{
  pointer-events: none;
}

.hover\:pointer-events-auto:hover{
  pointer-events: auto;
}

.focus\:pointer-events-none:focus{
  pointer-events: none;
}

.focus\:pointer-events-auto:focus{
  pointer-events: auto;
}

.active\:pointer-events-none:active{
  pointer-events: none;
}

.active\:pointer-events-auto:active{
  pointer-events: auto;
}

.first\:pointer-events-none:first-child{
  pointer-events: none;
}

.first\:pointer-events-auto:first-child{
  pointer-events: auto;
}

.last\:pointer-events-none:last-child{
  pointer-events: none;
}

.last\:pointer-events-auto:last-child{
  pointer-events: auto;
}

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: -webkit-sticky;
  position: sticky;
}

.hover\:static:hover{
  position: static;
}

.hover\:fixed:hover{
  position: fixed;
}

.hover\:absolute:hover{
  position: absolute;
}

.hover\:relative:hover{
  position: relative;
}

.hover\:sticky:hover{
  position: -webkit-sticky;
  position: sticky;
}

.focus\:static:focus{
  position: static;
}

.focus\:fixed:focus{
  position: fixed;
}

.focus\:absolute:focus{
  position: absolute;
}

.focus\:relative:focus{
  position: relative;
}

.focus\:sticky:focus{
  position: -webkit-sticky;
  position: sticky;
}

.active\:static:active{
  position: static;
}

.active\:fixed:active{
  position: fixed;
}

.active\:absolute:active{
  position: absolute;
}

.active\:relative:active{
  position: relative;
}

.active\:sticky:active{
  position: -webkit-sticky;
  position: sticky;
}

.first\:static:first-child{
  position: static;
}

.first\:fixed:first-child{
  position: fixed;
}

.first\:absolute:first-child{
  position: absolute;
}

.first\:relative:first-child{
  position: relative;
}

.first\:sticky:first-child{
  position: -webkit-sticky;
  position: sticky;
}

.last\:static:last-child{
  position: static;
}

.last\:fixed:last-child{
  position: fixed;
}

.last\:absolute:last-child{
  position: absolute;
}

.last\:relative:last-child{
  position: relative;
}

.last\:sticky:last-child{
  position: -webkit-sticky;
  position: sticky;
}

.inset-0{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.inset-auto{
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.inset-1\/2{
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
}

.inset-header{
  top: 5rem;
  right: 5rem;
  bottom: 5rem;
  left: 5rem;
}

.inset-y-0{
  top: 0;
  bottom: 0;
}

.inset-x-0{
  right: 0;
  left: 0;
}

.inset-y-auto{
  top: auto;
  bottom: auto;
}

.inset-x-auto{
  right: auto;
  left: auto;
}

.inset-y-1\/2{
  top: 50%;
  bottom: 50%;
}

.inset-x-1\/2{
  right: 50%;
  left: 50%;
}

.inset-y-header{
  top: 5rem;
  bottom: 5rem;
}

.inset-x-header{
  right: 5rem;
  left: 5rem;
}

.top-0{
  top: 0;
}

.right-0{
  right: 0;
}

.bottom-0{
  bottom: 0;
}

.left-0{
  left: 0;
}

.top-auto{
  top: auto;
}

.right-auto{
  right: auto;
}

.bottom-auto{
  bottom: auto;
}

.left-auto{
  left: auto;
}

.top-1\/2{
  top: 50%;
}

.right-1\/2{
  right: 50%;
}

.bottom-1\/2{
  bottom: 50%;
}

.left-1\/2{
  left: 50%;
}

.top-header{
  top: 5rem;
}

.right-header{
  right: 5rem;
}

.bottom-header{
  bottom: 5rem;
}

.left-header{
  left: 5rem;
}

.hover\:inset-0:hover{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hover\:inset-auto:hover{
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.hover\:inset-1\/2:hover{
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
}

.hover\:inset-header:hover{
  top: 5rem;
  right: 5rem;
  bottom: 5rem;
  left: 5rem;
}

.hover\:inset-y-0:hover{
  top: 0;
  bottom: 0;
}

.hover\:inset-x-0:hover{
  right: 0;
  left: 0;
}

.hover\:inset-y-auto:hover{
  top: auto;
  bottom: auto;
}

.hover\:inset-x-auto:hover{
  right: auto;
  left: auto;
}

.hover\:inset-y-1\/2:hover{
  top: 50%;
  bottom: 50%;
}

.hover\:inset-x-1\/2:hover{
  right: 50%;
  left: 50%;
}

.hover\:inset-y-header:hover{
  top: 5rem;
  bottom: 5rem;
}

.hover\:inset-x-header:hover{
  right: 5rem;
  left: 5rem;
}

.hover\:top-0:hover{
  top: 0;
}

.hover\:right-0:hover{
  right: 0;
}

.hover\:bottom-0:hover{
  bottom: 0;
}

.hover\:left-0:hover{
  left: 0;
}

.hover\:top-auto:hover{
  top: auto;
}

.hover\:right-auto:hover{
  right: auto;
}

.hover\:bottom-auto:hover{
  bottom: auto;
}

.hover\:left-auto:hover{
  left: auto;
}

.hover\:top-1\/2:hover{
  top: 50%;
}

.hover\:right-1\/2:hover{
  right: 50%;
}

.hover\:bottom-1\/2:hover{
  bottom: 50%;
}

.hover\:left-1\/2:hover{
  left: 50%;
}

.hover\:top-header:hover{
  top: 5rem;
}

.hover\:right-header:hover{
  right: 5rem;
}

.hover\:bottom-header:hover{
  bottom: 5rem;
}

.hover\:left-header:hover{
  left: 5rem;
}

.focus\:inset-0:focus{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.focus\:inset-auto:focus{
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.focus\:inset-1\/2:focus{
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
}

.focus\:inset-header:focus{
  top: 5rem;
  right: 5rem;
  bottom: 5rem;
  left: 5rem;
}

.focus\:inset-y-0:focus{
  top: 0;
  bottom: 0;
}

.focus\:inset-x-0:focus{
  right: 0;
  left: 0;
}

.focus\:inset-y-auto:focus{
  top: auto;
  bottom: auto;
}

.focus\:inset-x-auto:focus{
  right: auto;
  left: auto;
}

.focus\:inset-y-1\/2:focus{
  top: 50%;
  bottom: 50%;
}

.focus\:inset-x-1\/2:focus{
  right: 50%;
  left: 50%;
}

.focus\:inset-y-header:focus{
  top: 5rem;
  bottom: 5rem;
}

.focus\:inset-x-header:focus{
  right: 5rem;
  left: 5rem;
}

.focus\:top-0:focus{
  top: 0;
}

.focus\:right-0:focus{
  right: 0;
}

.focus\:bottom-0:focus{
  bottom: 0;
}

.focus\:left-0:focus{
  left: 0;
}

.focus\:top-auto:focus{
  top: auto;
}

.focus\:right-auto:focus{
  right: auto;
}

.focus\:bottom-auto:focus{
  bottom: auto;
}

.focus\:left-auto:focus{
  left: auto;
}

.focus\:top-1\/2:focus{
  top: 50%;
}

.focus\:right-1\/2:focus{
  right: 50%;
}

.focus\:bottom-1\/2:focus{
  bottom: 50%;
}

.focus\:left-1\/2:focus{
  left: 50%;
}

.focus\:top-header:focus{
  top: 5rem;
}

.focus\:right-header:focus{
  right: 5rem;
}

.focus\:bottom-header:focus{
  bottom: 5rem;
}

.focus\:left-header:focus{
  left: 5rem;
}

.active\:inset-0:active{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.active\:inset-auto:active{
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.active\:inset-1\/2:active{
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
}

.active\:inset-header:active{
  top: 5rem;
  right: 5rem;
  bottom: 5rem;
  left: 5rem;
}

.active\:inset-y-0:active{
  top: 0;
  bottom: 0;
}

.active\:inset-x-0:active{
  right: 0;
  left: 0;
}

.active\:inset-y-auto:active{
  top: auto;
  bottom: auto;
}

.active\:inset-x-auto:active{
  right: auto;
  left: auto;
}

.active\:inset-y-1\/2:active{
  top: 50%;
  bottom: 50%;
}

.active\:inset-x-1\/2:active{
  right: 50%;
  left: 50%;
}

.active\:inset-y-header:active{
  top: 5rem;
  bottom: 5rem;
}

.active\:inset-x-header:active{
  right: 5rem;
  left: 5rem;
}

.active\:top-0:active{
  top: 0;
}

.active\:right-0:active{
  right: 0;
}

.active\:bottom-0:active{
  bottom: 0;
}

.active\:left-0:active{
  left: 0;
}

.active\:top-auto:active{
  top: auto;
}

.active\:right-auto:active{
  right: auto;
}

.active\:bottom-auto:active{
  bottom: auto;
}

.active\:left-auto:active{
  left: auto;
}

.active\:top-1\/2:active{
  top: 50%;
}

.active\:right-1\/2:active{
  right: 50%;
}

.active\:bottom-1\/2:active{
  bottom: 50%;
}

.active\:left-1\/2:active{
  left: 50%;
}

.active\:top-header:active{
  top: 5rem;
}

.active\:right-header:active{
  right: 5rem;
}

.active\:bottom-header:active{
  bottom: 5rem;
}

.active\:left-header:active{
  left: 5rem;
}

.first\:inset-0:first-child{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.first\:inset-auto:first-child{
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.first\:inset-1\/2:first-child{
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
}

.first\:inset-header:first-child{
  top: 5rem;
  right: 5rem;
  bottom: 5rem;
  left: 5rem;
}

.first\:inset-y-0:first-child{
  top: 0;
  bottom: 0;
}

.first\:inset-x-0:first-child{
  right: 0;
  left: 0;
}

.first\:inset-y-auto:first-child{
  top: auto;
  bottom: auto;
}

.first\:inset-x-auto:first-child{
  right: auto;
  left: auto;
}

.first\:inset-y-1\/2:first-child{
  top: 50%;
  bottom: 50%;
}

.first\:inset-x-1\/2:first-child{
  right: 50%;
  left: 50%;
}

.first\:inset-y-header:first-child{
  top: 5rem;
  bottom: 5rem;
}

.first\:inset-x-header:first-child{
  right: 5rem;
  left: 5rem;
}

.first\:top-0:first-child{
  top: 0;
}

.first\:right-0:first-child{
  right: 0;
}

.first\:bottom-0:first-child{
  bottom: 0;
}

.first\:left-0:first-child{
  left: 0;
}

.first\:top-auto:first-child{
  top: auto;
}

.first\:right-auto:first-child{
  right: auto;
}

.first\:bottom-auto:first-child{
  bottom: auto;
}

.first\:left-auto:first-child{
  left: auto;
}

.first\:top-1\/2:first-child{
  top: 50%;
}

.first\:right-1\/2:first-child{
  right: 50%;
}

.first\:bottom-1\/2:first-child{
  bottom: 50%;
}

.first\:left-1\/2:first-child{
  left: 50%;
}

.first\:top-header:first-child{
  top: 5rem;
}

.first\:right-header:first-child{
  right: 5rem;
}

.first\:bottom-header:first-child{
  bottom: 5rem;
}

.first\:left-header:first-child{
  left: 5rem;
}

.last\:inset-0:last-child{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.last\:inset-auto:last-child{
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.last\:inset-1\/2:last-child{
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
}

.last\:inset-header:last-child{
  top: 5rem;
  right: 5rem;
  bottom: 5rem;
  left: 5rem;
}

.last\:inset-y-0:last-child{
  top: 0;
  bottom: 0;
}

.last\:inset-x-0:last-child{
  right: 0;
  left: 0;
}

.last\:inset-y-auto:last-child{
  top: auto;
  bottom: auto;
}

.last\:inset-x-auto:last-child{
  right: auto;
  left: auto;
}

.last\:inset-y-1\/2:last-child{
  top: 50%;
  bottom: 50%;
}

.last\:inset-x-1\/2:last-child{
  right: 50%;
  left: 50%;
}

.last\:inset-y-header:last-child{
  top: 5rem;
  bottom: 5rem;
}

.last\:inset-x-header:last-child{
  right: 5rem;
  left: 5rem;
}

.last\:top-0:last-child{
  top: 0;
}

.last\:right-0:last-child{
  right: 0;
}

.last\:bottom-0:last-child{
  bottom: 0;
}

.last\:left-0:last-child{
  left: 0;
}

.last\:top-auto:last-child{
  top: auto;
}

.last\:right-auto:last-child{
  right: auto;
}

.last\:bottom-auto:last-child{
  bottom: auto;
}

.last\:left-auto:last-child{
  left: auto;
}

.last\:top-1\/2:last-child{
  top: 50%;
}

.last\:right-1\/2:last-child{
  right: 50%;
}

.last\:bottom-1\/2:last-child{
  bottom: 50%;
}

.last\:left-1\/2:last-child{
  left: 50%;
}

.last\:top-header:last-child{
  top: 5rem;
}

.last\:right-header:last-child{
  right: 5rem;
}

.last\:bottom-header:last-child{
  bottom: 5rem;
}

.last\:left-header:last-child{
  left: 5rem;
}

.resize-none{
  resize: none;
}

.resize-y{
  resize: vertical;
}

.resize-x{
  resize: horizontal;
}

.resize{
  resize: both;
}

.hover\:resize-none:hover{
  resize: none;
}

.hover\:resize-y:hover{
  resize: vertical;
}

.hover\:resize-x:hover{
  resize: horizontal;
}

.hover\:resize:hover{
  resize: both;
}

.focus\:resize-none:focus{
  resize: none;
}

.focus\:resize-y:focus{
  resize: vertical;
}

.focus\:resize-x:focus{
  resize: horizontal;
}

.focus\:resize:focus{
  resize: both;
}

.active\:resize-none:active{
  resize: none;
}

.active\:resize-y:active{
  resize: vertical;
}

.active\:resize-x:active{
  resize: horizontal;
}

.active\:resize:active{
  resize: both;
}

.first\:resize-none:first-child{
  resize: none;
}

.first\:resize-y:first-child{
  resize: vertical;
}

.first\:resize-x:first-child{
  resize: horizontal;
}

.first\:resize:first-child{
  resize: both;
}

.last\:resize-none:last-child{
  resize: none;
}

.last\:resize-y:last-child{
  resize: vertical;
}

.last\:resize-x:last-child{
  resize: horizontal;
}

.last\:resize:last-child{
  resize: both;
}

.shadow-xs{
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.shadow-sm{
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow{
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md{
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg{
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl{
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl{
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-inner{
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.shadow-outline{
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.shadow-none{
  box-shadow: none;
}

.shadow-upper{
  box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
}

.hover\:shadow-xs:hover{
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-sm:hover{
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hover\:shadow:hover{
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.hover\:shadow-md:hover{
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hover\:shadow-lg:hover{
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-xl:hover{
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:shadow-2xl:hover{
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:shadow-inner:hover{
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.hover\:shadow-outline:hover{
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.hover\:shadow-none:hover{
  box-shadow: none;
}

.hover\:shadow-upper:hover{
  box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
}

.focus\:shadow-xs:focus{
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.focus\:shadow-sm:focus{
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.focus\:shadow:focus{
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.focus\:shadow-md:focus{
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.focus\:shadow-lg:focus{
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.focus\:shadow-xl:focus{
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.focus\:shadow-2xl:focus{
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.focus\:shadow-inner:focus{
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.focus\:shadow-outline:focus{
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.focus\:shadow-none:focus{
  box-shadow: none;
}

.focus\:shadow-upper:focus{
  box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
}

.active\:shadow-xs:active{
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.active\:shadow-sm:active{
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.active\:shadow:active{
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.active\:shadow-md:active{
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.active\:shadow-lg:active{
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.active\:shadow-xl:active{
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.active\:shadow-2xl:active{
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.active\:shadow-inner:active{
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.active\:shadow-outline:active{
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.active\:shadow-none:active{
  box-shadow: none;
}

.active\:shadow-upper:active{
  box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
}

.first\:shadow-xs:first-child{
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.first\:shadow-sm:first-child{
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.first\:shadow:first-child{
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.first\:shadow-md:first-child{
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.first\:shadow-lg:first-child{
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.first\:shadow-xl:first-child{
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.first\:shadow-2xl:first-child{
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.first\:shadow-inner:first-child{
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.first\:shadow-outline:first-child{
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.first\:shadow-none:first-child{
  box-shadow: none;
}

.first\:shadow-upper:first-child{
  box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
}

.last\:shadow-xs:last-child{
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.last\:shadow-sm:last-child{
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.last\:shadow:last-child{
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.last\:shadow-md:last-child{
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.last\:shadow-lg:last-child{
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.last\:shadow-xl:last-child{
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.last\:shadow-2xl:last-child{
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.last\:shadow-inner:last-child{
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.last\:shadow-outline:last-child{
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.last\:shadow-none:last-child{
  box-shadow: none;
}

.last\:shadow-upper:last-child{
  box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
}

.fill-current{
  fill: currentColor;
}

.hover\:fill-current:hover{
  fill: currentColor;
}

.focus\:fill-current:focus{
  fill: currentColor;
}

.active\:fill-current:active{
  fill: currentColor;
}

.first\:fill-current:first-child{
  fill: currentColor;
}

.last\:fill-current:last-child{
  fill: currentColor;
}

.stroke-current{
  stroke: currentColor;
}

.hover\:stroke-current:hover{
  stroke: currentColor;
}

.focus\:stroke-current:focus{
  stroke: currentColor;
}

.active\:stroke-current:active{
  stroke: currentColor;
}

.first\:stroke-current:first-child{
  stroke: currentColor;
}

.last\:stroke-current:last-child{
  stroke: currentColor;
}

.stroke-0{
  stroke-width: 0;
}

.stroke-1{
  stroke-width: 1;
}

.stroke-2{
  stroke-width: 2;
}

.hover\:stroke-0:hover{
  stroke-width: 0;
}

.hover\:stroke-1:hover{
  stroke-width: 1;
}

.hover\:stroke-2:hover{
  stroke-width: 2;
}

.focus\:stroke-0:focus{
  stroke-width: 0;
}

.focus\:stroke-1:focus{
  stroke-width: 1;
}

.focus\:stroke-2:focus{
  stroke-width: 2;
}

.active\:stroke-0:active{
  stroke-width: 0;
}

.active\:stroke-1:active{
  stroke-width: 1;
}

.active\:stroke-2:active{
  stroke-width: 2;
}

.first\:stroke-0:first-child{
  stroke-width: 0;
}

.first\:stroke-1:first-child{
  stroke-width: 1;
}

.first\:stroke-2:first-child{
  stroke-width: 2;
}

.last\:stroke-0:last-child{
  stroke-width: 0;
}

.last\:stroke-1:last-child{
  stroke-width: 1;
}

.last\:stroke-2:last-child{
  stroke-width: 2;
}

.table-auto{
  table-layout: auto;
}

.table-fixed{
  table-layout: fixed;
}

.hover\:table-auto:hover{
  table-layout: auto;
}

.hover\:table-fixed:hover{
  table-layout: fixed;
}

.focus\:table-auto:focus{
  table-layout: auto;
}

.focus\:table-fixed:focus{
  table-layout: fixed;
}

.active\:table-auto:active{
  table-layout: auto;
}

.active\:table-fixed:active{
  table-layout: fixed;
}

.first\:table-auto:first-child{
  table-layout: auto;
}

.first\:table-fixed:first-child{
  table-layout: fixed;
}

.last\:table-auto:last-child{
  table-layout: auto;
}

.last\:table-fixed:last-child{
  table-layout: fixed;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}

.text-justify{
  text-align: justify;
}

.hover\:text-left:hover{
  text-align: left;
}

.hover\:text-center:hover{
  text-align: center;
}

.hover\:text-right:hover{
  text-align: right;
}

.hover\:text-justify:hover{
  text-align: justify;
}

.focus\:text-left:focus{
  text-align: left;
}

.focus\:text-center:focus{
  text-align: center;
}

.focus\:text-right:focus{
  text-align: right;
}

.focus\:text-justify:focus{
  text-align: justify;
}

.active\:text-left:active{
  text-align: left;
}

.active\:text-center:active{
  text-align: center;
}

.active\:text-right:active{
  text-align: right;
}

.active\:text-justify:active{
  text-align: justify;
}

.first\:text-left:first-child{
  text-align: left;
}

.first\:text-center:first-child{
  text-align: center;
}

.first\:text-right:first-child{
  text-align: right;
}

.first\:text-justify:first-child{
  text-align: justify;
}

.last\:text-left:last-child{
  text-align: left;
}

.last\:text-center:last-child{
  text-align: center;
}

.last\:text-right:last-child{
  text-align: right;
}

.last\:text-justify:last-child{
  text-align: justify;
}

.text-black{
  --text-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--text-opacity));
}

.text-transparent{
  color: transparent;
}

.text-error{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.text-success{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.text-white-10{
  --text-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--text-opacity));
}

.text-white-20{
  --text-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--text-opacity));
}

.text-white{
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.text-cheeto{
  --text-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--text-opacity));
}

.text-cheeto-very-light{
  --text-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--text-opacity));
}

.text-cheeto-light{
  --text-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--text-opacity));
}

.text-cheeto-dark{
  --text-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--text-opacity));
}

.text-cheeto-hocus{
  --text-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--text-opacity));
}

.text-cheeto-active{
  --text-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--text-opacity));
}

.text-cheeto-ml-plus{
  --text-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--text-opacity));
}

.text-cheeto-banner{
  --text-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--text-opacity));
}

.text-gracy-1{
  --text-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--text-opacity));
}

.text-gracy-10{
  --text-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--text-opacity));
}

.text-gracy-20{
  --text-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--text-opacity));
}

.text-gracy-30{
  --text-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--text-opacity));
}

.text-gracy-40{
  --text-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--text-opacity));
}

.text-gracy-50{
  --text-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--text-opacity));
}

.text-gracy-60{
  --text-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--text-opacity));
}

.text-gracy-70{
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
}

.text-gracy-80{
  --text-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--text-opacity));
}

.text-gracy-90{
  --text-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--text-opacity));
}

.text-gracy-100{
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
}

.text-gracy{
  --text-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--text-opacity));
}

.text-gracy-overlay-90{
  color: rgba(50,49,50,0.5);
}

.text-login{
  --text-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--text-opacity));
}

.text-olive-light{
  --text-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--text-opacity));
}

.text-olive-drab{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.text-olive-dark{
  --text-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--text-opacity));
}

.text-daisy-light{
  --text-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--text-opacity));
}

.text-feedback-gumby{
  --text-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--text-opacity));
}

.text-feedback-daisy{
  --text-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--text-opacity));
}

.text-feedback-pokey{
  --text-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--text-opacity));
}

.text-feedback-aster{
  --text-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--text-opacity));
}

.text-feedback-aster-dark{
  --text-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--text-opacity));
}

.text-feedback-roxo{
  --text-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--text-opacity));
}

.text-feedback-error{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.text-feedback-success{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.text-functional-aoki{
  --text-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--text-opacity));
}

.text-functional-aoki-dark{
  --text-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--text-opacity));
}

.text-functional-aoki-hocus{
  --text-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--text-opacity));
}

.text-functional-aoki-active{
  --text-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--text-opacity));
}

.text-functional-aoki-light{
  --text-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--text-opacity));
}

.text-functional-kermit{
  --text-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--text-opacity));
}

.text-mixlabPlus-light{
  --text-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--text-opacity));
}

.text-primary-orange-light{
  color: ;
}

.text-off-white{
  --text-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--text-opacity));
}

.hover\:text-black:hover{
  --text-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--text-opacity));
}

.hover\:text-transparent:hover{
  color: transparent;
}

.hover\:text-error:hover{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.hover\:text-success:hover{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.hover\:text-white-10:hover{
  --text-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--text-opacity));
}

.hover\:text-white-20:hover{
  --text-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--text-opacity));
}

.hover\:text-white:hover{
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.hover\:text-cheeto:hover{
  --text-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--text-opacity));
}

.hover\:text-cheeto-very-light:hover{
  --text-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--text-opacity));
}

.hover\:text-cheeto-light:hover{
  --text-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--text-opacity));
}

.hover\:text-cheeto-dark:hover{
  --text-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--text-opacity));
}

.hover\:text-cheeto-hocus:hover{
  --text-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--text-opacity));
}

.hover\:text-cheeto-active:hover{
  --text-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--text-opacity));
}

.hover\:text-cheeto-ml-plus:hover{
  --text-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--text-opacity));
}

.hover\:text-cheeto-banner:hover{
  --text-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--text-opacity));
}

.hover\:text-gracy-1:hover{
  --text-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--text-opacity));
}

.hover\:text-gracy-10:hover{
  --text-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--text-opacity));
}

.hover\:text-gracy-20:hover{
  --text-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--text-opacity));
}

.hover\:text-gracy-30:hover{
  --text-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--text-opacity));
}

.hover\:text-gracy-40:hover{
  --text-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--text-opacity));
}

.hover\:text-gracy-50:hover{
  --text-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--text-opacity));
}

.hover\:text-gracy-60:hover{
  --text-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--text-opacity));
}

.hover\:text-gracy-70:hover{
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
}

.hover\:text-gracy-80:hover{
  --text-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--text-opacity));
}

.hover\:text-gracy-90:hover{
  --text-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--text-opacity));
}

.hover\:text-gracy-100:hover{
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
}

.hover\:text-gracy:hover{
  --text-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--text-opacity));
}

.hover\:text-gracy-overlay-90:hover{
  color: rgba(50,49,50,0.5);
}

.hover\:text-login:hover{
  --text-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--text-opacity));
}

.hover\:text-olive-light:hover{
  --text-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--text-opacity));
}

.hover\:text-olive-drab:hover{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.hover\:text-olive-dark:hover{
  --text-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--text-opacity));
}

.hover\:text-daisy-light:hover{
  --text-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--text-opacity));
}

.hover\:text-feedback-gumby:hover{
  --text-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--text-opacity));
}

.hover\:text-feedback-daisy:hover{
  --text-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--text-opacity));
}

.hover\:text-feedback-pokey:hover{
  --text-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--text-opacity));
}

.hover\:text-feedback-aster:hover{
  --text-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--text-opacity));
}

.hover\:text-feedback-aster-dark:hover{
  --text-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--text-opacity));
}

.hover\:text-feedback-roxo:hover{
  --text-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--text-opacity));
}

.hover\:text-feedback-error:hover{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.hover\:text-feedback-success:hover{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.hover\:text-functional-aoki:hover{
  --text-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--text-opacity));
}

.hover\:text-functional-aoki-dark:hover{
  --text-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--text-opacity));
}

.hover\:text-functional-aoki-hocus:hover{
  --text-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--text-opacity));
}

.hover\:text-functional-aoki-active:hover{
  --text-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--text-opacity));
}

.hover\:text-functional-aoki-light:hover{
  --text-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--text-opacity));
}

.hover\:text-functional-kermit:hover{
  --text-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--text-opacity));
}

.hover\:text-mixlabPlus-light:hover{
  --text-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--text-opacity));
}

.hover\:text-primary-orange-light:hover{
  color: ;
}

.hover\:text-off-white:hover{
  --text-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--text-opacity));
}

.focus\:text-black:focus{
  --text-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--text-opacity));
}

.focus\:text-transparent:focus{
  color: transparent;
}

.focus\:text-error:focus{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.focus\:text-success:focus{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.focus\:text-white-10:focus{
  --text-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--text-opacity));
}

.focus\:text-white-20:focus{
  --text-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--text-opacity));
}

.focus\:text-white:focus{
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.focus\:text-cheeto:focus{
  --text-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--text-opacity));
}

.focus\:text-cheeto-very-light:focus{
  --text-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--text-opacity));
}

.focus\:text-cheeto-light:focus{
  --text-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--text-opacity));
}

.focus\:text-cheeto-dark:focus{
  --text-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--text-opacity));
}

.focus\:text-cheeto-hocus:focus{
  --text-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--text-opacity));
}

.focus\:text-cheeto-active:focus{
  --text-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--text-opacity));
}

.focus\:text-cheeto-ml-plus:focus{
  --text-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--text-opacity));
}

.focus\:text-cheeto-banner:focus{
  --text-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--text-opacity));
}

.focus\:text-gracy-1:focus{
  --text-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--text-opacity));
}

.focus\:text-gracy-10:focus{
  --text-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--text-opacity));
}

.focus\:text-gracy-20:focus{
  --text-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--text-opacity));
}

.focus\:text-gracy-30:focus{
  --text-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--text-opacity));
}

.focus\:text-gracy-40:focus{
  --text-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--text-opacity));
}

.focus\:text-gracy-50:focus{
  --text-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--text-opacity));
}

.focus\:text-gracy-60:focus{
  --text-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--text-opacity));
}

.focus\:text-gracy-70:focus{
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
}

.focus\:text-gracy-80:focus{
  --text-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--text-opacity));
}

.focus\:text-gracy-90:focus{
  --text-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--text-opacity));
}

.focus\:text-gracy-100:focus{
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
}

.focus\:text-gracy:focus{
  --text-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--text-opacity));
}

.focus\:text-gracy-overlay-90:focus{
  color: rgba(50,49,50,0.5);
}

.focus\:text-login:focus{
  --text-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--text-opacity));
}

.focus\:text-olive-light:focus{
  --text-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--text-opacity));
}

.focus\:text-olive-drab:focus{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.focus\:text-olive-dark:focus{
  --text-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--text-opacity));
}

.focus\:text-daisy-light:focus{
  --text-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--text-opacity));
}

.focus\:text-feedback-gumby:focus{
  --text-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--text-opacity));
}

.focus\:text-feedback-daisy:focus{
  --text-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--text-opacity));
}

.focus\:text-feedback-pokey:focus{
  --text-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--text-opacity));
}

.focus\:text-feedback-aster:focus{
  --text-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--text-opacity));
}

.focus\:text-feedback-aster-dark:focus{
  --text-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--text-opacity));
}

.focus\:text-feedback-roxo:focus{
  --text-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--text-opacity));
}

.focus\:text-feedback-error:focus{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.focus\:text-feedback-success:focus{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.focus\:text-functional-aoki:focus{
  --text-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--text-opacity));
}

.focus\:text-functional-aoki-dark:focus{
  --text-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--text-opacity));
}

.focus\:text-functional-aoki-hocus:focus{
  --text-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--text-opacity));
}

.focus\:text-functional-aoki-active:focus{
  --text-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--text-opacity));
}

.focus\:text-functional-aoki-light:focus{
  --text-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--text-opacity));
}

.focus\:text-functional-kermit:focus{
  --text-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--text-opacity));
}

.focus\:text-mixlabPlus-light:focus{
  --text-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--text-opacity));
}

.focus\:text-primary-orange-light:focus{
  color: ;
}

.focus\:text-off-white:focus{
  --text-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--text-opacity));
}

.active\:text-black:active{
  --text-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--text-opacity));
}

.active\:text-transparent:active{
  color: transparent;
}

.active\:text-error:active{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.active\:text-success:active{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.active\:text-white-10:active{
  --text-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--text-opacity));
}

.active\:text-white-20:active{
  --text-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--text-opacity));
}

.active\:text-white:active{
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.active\:text-cheeto:active{
  --text-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--text-opacity));
}

.active\:text-cheeto-very-light:active{
  --text-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--text-opacity));
}

.active\:text-cheeto-light:active{
  --text-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--text-opacity));
}

.active\:text-cheeto-dark:active{
  --text-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--text-opacity));
}

.active\:text-cheeto-hocus:active{
  --text-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--text-opacity));
}

.active\:text-cheeto-active:active{
  --text-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--text-opacity));
}

.active\:text-cheeto-ml-plus:active{
  --text-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--text-opacity));
}

.active\:text-cheeto-banner:active{
  --text-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--text-opacity));
}

.active\:text-gracy-1:active{
  --text-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--text-opacity));
}

.active\:text-gracy-10:active{
  --text-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--text-opacity));
}

.active\:text-gracy-20:active{
  --text-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--text-opacity));
}

.active\:text-gracy-30:active{
  --text-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--text-opacity));
}

.active\:text-gracy-40:active{
  --text-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--text-opacity));
}

.active\:text-gracy-50:active{
  --text-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--text-opacity));
}

.active\:text-gracy-60:active{
  --text-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--text-opacity));
}

.active\:text-gracy-70:active{
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
}

.active\:text-gracy-80:active{
  --text-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--text-opacity));
}

.active\:text-gracy-90:active{
  --text-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--text-opacity));
}

.active\:text-gracy-100:active{
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
}

.active\:text-gracy:active{
  --text-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--text-opacity));
}

.active\:text-gracy-overlay-90:active{
  color: rgba(50,49,50,0.5);
}

.active\:text-login:active{
  --text-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--text-opacity));
}

.active\:text-olive-light:active{
  --text-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--text-opacity));
}

.active\:text-olive-drab:active{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.active\:text-olive-dark:active{
  --text-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--text-opacity));
}

.active\:text-daisy-light:active{
  --text-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--text-opacity));
}

.active\:text-feedback-gumby:active{
  --text-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--text-opacity));
}

.active\:text-feedback-daisy:active{
  --text-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--text-opacity));
}

.active\:text-feedback-pokey:active{
  --text-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--text-opacity));
}

.active\:text-feedback-aster:active{
  --text-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--text-opacity));
}

.active\:text-feedback-aster-dark:active{
  --text-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--text-opacity));
}

.active\:text-feedback-roxo:active{
  --text-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--text-opacity));
}

.active\:text-feedback-error:active{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.active\:text-feedback-success:active{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.active\:text-functional-aoki:active{
  --text-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--text-opacity));
}

.active\:text-functional-aoki-dark:active{
  --text-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--text-opacity));
}

.active\:text-functional-aoki-hocus:active{
  --text-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--text-opacity));
}

.active\:text-functional-aoki-active:active{
  --text-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--text-opacity));
}

.active\:text-functional-aoki-light:active{
  --text-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--text-opacity));
}

.active\:text-functional-kermit:active{
  --text-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--text-opacity));
}

.active\:text-mixlabPlus-light:active{
  --text-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--text-opacity));
}

.active\:text-primary-orange-light:active{
  color: ;
}

.active\:text-off-white:active{
  --text-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--text-opacity));
}

.first\:text-black:first-child{
  --text-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--text-opacity));
}

.first\:text-transparent:first-child{
  color: transparent;
}

.first\:text-error:first-child{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.first\:text-success:first-child{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.first\:text-white-10:first-child{
  --text-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--text-opacity));
}

.first\:text-white-20:first-child{
  --text-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--text-opacity));
}

.first\:text-white:first-child{
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.first\:text-cheeto:first-child{
  --text-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--text-opacity));
}

.first\:text-cheeto-very-light:first-child{
  --text-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--text-opacity));
}

.first\:text-cheeto-light:first-child{
  --text-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--text-opacity));
}

.first\:text-cheeto-dark:first-child{
  --text-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--text-opacity));
}

.first\:text-cheeto-hocus:first-child{
  --text-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--text-opacity));
}

.first\:text-cheeto-active:first-child{
  --text-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--text-opacity));
}

.first\:text-cheeto-ml-plus:first-child{
  --text-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--text-opacity));
}

.first\:text-cheeto-banner:first-child{
  --text-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--text-opacity));
}

.first\:text-gracy-1:first-child{
  --text-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--text-opacity));
}

.first\:text-gracy-10:first-child{
  --text-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--text-opacity));
}

.first\:text-gracy-20:first-child{
  --text-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--text-opacity));
}

.first\:text-gracy-30:first-child{
  --text-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--text-opacity));
}

.first\:text-gracy-40:first-child{
  --text-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--text-opacity));
}

.first\:text-gracy-50:first-child{
  --text-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--text-opacity));
}

.first\:text-gracy-60:first-child{
  --text-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--text-opacity));
}

.first\:text-gracy-70:first-child{
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
}

.first\:text-gracy-80:first-child{
  --text-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--text-opacity));
}

.first\:text-gracy-90:first-child{
  --text-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--text-opacity));
}

.first\:text-gracy-100:first-child{
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
}

.first\:text-gracy:first-child{
  --text-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--text-opacity));
}

.first\:text-gracy-overlay-90:first-child{
  color: rgba(50,49,50,0.5);
}

.first\:text-login:first-child{
  --text-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--text-opacity));
}

.first\:text-olive-light:first-child{
  --text-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--text-opacity));
}

.first\:text-olive-drab:first-child{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.first\:text-olive-dark:first-child{
  --text-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--text-opacity));
}

.first\:text-daisy-light:first-child{
  --text-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--text-opacity));
}

.first\:text-feedback-gumby:first-child{
  --text-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--text-opacity));
}

.first\:text-feedback-daisy:first-child{
  --text-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--text-opacity));
}

.first\:text-feedback-pokey:first-child{
  --text-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--text-opacity));
}

.first\:text-feedback-aster:first-child{
  --text-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--text-opacity));
}

.first\:text-feedback-aster-dark:first-child{
  --text-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--text-opacity));
}

.first\:text-feedback-roxo:first-child{
  --text-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--text-opacity));
}

.first\:text-feedback-error:first-child{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.first\:text-feedback-success:first-child{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.first\:text-functional-aoki:first-child{
  --text-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--text-opacity));
}

.first\:text-functional-aoki-dark:first-child{
  --text-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--text-opacity));
}

.first\:text-functional-aoki-hocus:first-child{
  --text-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--text-opacity));
}

.first\:text-functional-aoki-active:first-child{
  --text-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--text-opacity));
}

.first\:text-functional-aoki-light:first-child{
  --text-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--text-opacity));
}

.first\:text-functional-kermit:first-child{
  --text-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--text-opacity));
}

.first\:text-mixlabPlus-light:first-child{
  --text-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--text-opacity));
}

.first\:text-primary-orange-light:first-child{
  color: ;
}

.first\:text-off-white:first-child{
  --text-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--text-opacity));
}

.last\:text-black:last-child{
  --text-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--text-opacity));
}

.last\:text-transparent:last-child{
  color: transparent;
}

.last\:text-error:last-child{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.last\:text-success:last-child{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.last\:text-white-10:last-child{
  --text-opacity: 1;
  color: #FBFBFB;
  color: rgba(251, 251, 251, var(--text-opacity));
}

.last\:text-white-20:last-child{
  --text-opacity: 1;
  color: #ECECEC;
  color: rgba(236, 236, 236, var(--text-opacity));
}

.last\:text-white:last-child{
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.last\:text-cheeto:last-child{
  --text-opacity: 1;
  color: #f7a500;
  color: rgba(247, 165, 0, var(--text-opacity));
}

.last\:text-cheeto-very-light:last-child{
  --text-opacity: 1;
  color: #fffaf2;
  color: rgba(255, 250, 242, var(--text-opacity));
}

.last\:text-cheeto-light:last-child{
  --text-opacity: 1;
  color: #ffd649;
  color: rgba(255, 214, 73, var(--text-opacity));
}

.last\:text-cheeto-dark:last-child{
  --text-opacity: 1;
  color: #bf7600;
  color: rgba(191, 118, 0, var(--text-opacity));
}

.last\:text-cheeto-hocus:last-child{
  --text-opacity: 1;
  color: #f8bd0f;
  color: rgba(248, 189, 15, var(--text-opacity));
}

.last\:text-cheeto-active:last-child{
  --text-opacity: 1;
  color: #f8d61b;
  color: rgba(248, 214, 27, var(--text-opacity));
}

.last\:text-cheeto-ml-plus:last-child{
  --text-opacity: 1;
  color: #FBEFCA;
  color: rgba(251, 239, 202, var(--text-opacity));
}

.last\:text-cheeto-banner:last-child{
  --text-opacity: 1;
  color: #fef7e5;
  color: rgba(254, 247, 229, var(--text-opacity));
}

.last\:text-gracy-1:last-child{
  --text-opacity: 1;
  color: #f8f8fa;
  color: rgba(248, 248, 250, var(--text-opacity));
}

.last\:text-gracy-10:last-child{
  --text-opacity: 1;
  color: #faf7fd;
  color: rgba(250, 247, 253, var(--text-opacity));
}

.last\:text-gracy-20:last-child{
  --text-opacity: 1;
  color: #e0dde3;
  color: rgba(224, 221, 227, var(--text-opacity));
}

.last\:text-gracy-30:last-child{
  --text-opacity: 1;
  color: #c8c5ca;
  color: rgba(200, 197, 202, var(--text-opacity));
}

.last\:text-gracy-40:last-child{
  --text-opacity: 1;
  color: #aeacb0;
  color: rgba(174, 172, 176, var(--text-opacity));
}

.last\:text-gracy-50:last-child{
  --text-opacity: 1;
  color: #969497;
  color: rgba(150, 148, 151, var(--text-opacity));
}

.last\:text-gracy-60:last-child{
  --text-opacity: 1;
  color: #7c7b7e;
  color: rgba(124, 123, 126, var(--text-opacity));
}

.last\:text-gracy-70:last-child{
  --text-opacity: 1;
  color: #646265;
  color: rgba(100, 98, 101, var(--text-opacity));
}

.last\:text-gracy-80:last-child{
  --text-opacity: 1;
  color: #4a494b;
  color: rgba(74, 73, 75, var(--text-opacity));
}

.last\:text-gracy-90:last-child{
  --text-opacity: 1;
  color: #323132;
  color: rgba(50, 49, 50, var(--text-opacity));
}

.last\:text-gracy-100:last-child{
  --text-opacity: 1;
  color: #181818;
  color: rgba(24, 24, 24, var(--text-opacity));
}

.last\:text-gracy:last-child{
  --text-opacity: 1;
  color: #6F7878;
  color: rgba(111, 120, 120, var(--text-opacity));
}

.last\:text-gracy-overlay-90:last-child{
  color: rgba(50,49,50,0.5);
}

.last\:text-login:last-child{
  --text-opacity: 1;
  color: #FDF7E7;
  color: rgba(253, 247, 231, var(--text-opacity));
}

.last\:text-olive-light:last-child{
  --text-opacity: 1;
  color: #DFF5F6;
  color: rgba(223, 245, 246, var(--text-opacity));
}

.last\:text-olive-drab:last-child{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.last\:text-olive-dark:last-child{
  --text-opacity: 1;
  color: #096348;
  color: rgba(9, 99, 72, var(--text-opacity));
}

.last\:text-daisy-light:last-child{
  --text-opacity: 1;
  color: #fffce1;
  color: rgba(255, 252, 225, var(--text-opacity));
}

.last\:text-feedback-gumby:last-child{
  --text-opacity: 1;
  color: #c8e6c9;
  color: rgba(200, 230, 201, var(--text-opacity));
}

.last\:text-feedback-daisy:last-child{
  --text-opacity: 1;
  color: #fff9c4;
  color: rgba(255, 249, 196, var(--text-opacity));
}

.last\:text-feedback-pokey:last-child{
  --text-opacity: 1;
  color: #ffcdd2;
  color: rgba(255, 205, 210, var(--text-opacity));
}

.last\:text-feedback-aster:last-child{
  --text-opacity: 1;
  color: #b3e5fc;
  color: rgba(179, 229, 252, var(--text-opacity));
}

.last\:text-feedback-aster-dark:last-child{
  --text-opacity: 1;
  color: #03567C;
  color: rgba(3, 86, 124, var(--text-opacity));
}

.last\:text-feedback-roxo:last-child{
  --text-opacity: 1;
  color: #d1c4e9;
  color: rgba(209, 196, 233, var(--text-opacity));
}

.last\:text-feedback-error:last-child{
  --text-opacity: 1;
  color: #f44336;
  color: rgba(244, 67, 54, var(--text-opacity));
}

.last\:text-feedback-success:last-child{
  --text-opacity: 1;
  color: #5ca02c;
  color: rgba(92, 160, 44, var(--text-opacity));
}

.last\:text-functional-aoki:last-child{
  --text-opacity: 1;
  color: #6f2ca0;
  color: rgba(111, 44, 160, var(--text-opacity));
}

.last\:text-functional-aoki-dark:last-child{
  --text-opacity: 1;
  color: #3e0071;
  color: rgba(62, 0, 113, var(--text-opacity));
}

.last\:text-functional-aoki-hocus:last-child{
  --text-opacity: 1;
  color: #9035af;
  color: rgba(144, 53, 175, var(--text-opacity));
}

.last\:text-functional-aoki-active:last-child{
  --text-opacity: 1;
  color: #a04fbc;
  color: rgba(160, 79, 188, var(--text-opacity));
}

.last\:text-functional-aoki-light:last-child{
  --text-opacity: 1;
  color: #a15ad2;
  color: rgba(161, 90, 210, var(--text-opacity));
}

.last\:text-functional-kermit:last-child{
  --text-opacity: 1;
  color: #5aa120;
  color: rgba(90, 161, 32, var(--text-opacity));
}

.last\:text-mixlabPlus-light:last-child{
  --text-opacity: 1;
  color: #FFFEF9;
  color: rgba(255, 254, 249, var(--text-opacity));
}

.last\:text-primary-orange-light:last-child{
  color: ;
}

.last\:text-off-white:last-child{
  --text-opacity: 1;
  color: #FAF9F6;
  color: rgba(250, 249, 246, var(--text-opacity));
}

.text-opacity-0{
  --text-opacity: 0;
}

.text-opacity-25{
  --text-opacity: 0.25;
}

.text-opacity-50{
  --text-opacity: .5;
}

.text-opacity-75{
  --text-opacity: 0.75;
}

.text-opacity-80{
  --text-opacity: .8;
}

.text-opacity-100{
  --text-opacity: 1;
}

.hover\:text-opacity-0:hover{
  --text-opacity: 0;
}

.hover\:text-opacity-25:hover{
  --text-opacity: 0.25;
}

.hover\:text-opacity-50:hover{
  --text-opacity: .5;
}

.hover\:text-opacity-75:hover{
  --text-opacity: 0.75;
}

.hover\:text-opacity-80:hover{
  --text-opacity: .8;
}

.hover\:text-opacity-100:hover{
  --text-opacity: 1;
}

.focus\:text-opacity-0:focus{
  --text-opacity: 0;
}

.focus\:text-opacity-25:focus{
  --text-opacity: 0.25;
}

.focus\:text-opacity-50:focus{
  --text-opacity: .5;
}

.focus\:text-opacity-75:focus{
  --text-opacity: 0.75;
}

.focus\:text-opacity-80:focus{
  --text-opacity: .8;
}

.focus\:text-opacity-100:focus{
  --text-opacity: 1;
}

.active\:text-opacity-0:active{
  --text-opacity: 0;
}

.active\:text-opacity-25:active{
  --text-opacity: 0.25;
}

.active\:text-opacity-50:active{
  --text-opacity: .5;
}

.active\:text-opacity-75:active{
  --text-opacity: 0.75;
}

.active\:text-opacity-80:active{
  --text-opacity: .8;
}

.active\:text-opacity-100:active{
  --text-opacity: 1;
}

.first\:text-opacity-0:first-child{
  --text-opacity: 0;
}

.first\:text-opacity-25:first-child{
  --text-opacity: 0.25;
}

.first\:text-opacity-50:first-child{
  --text-opacity: .5;
}

.first\:text-opacity-75:first-child{
  --text-opacity: 0.75;
}

.first\:text-opacity-80:first-child{
  --text-opacity: .8;
}

.first\:text-opacity-100:first-child{
  --text-opacity: 1;
}

.last\:text-opacity-0:last-child{
  --text-opacity: 0;
}

.last\:text-opacity-25:last-child{
  --text-opacity: 0.25;
}

.last\:text-opacity-50:last-child{
  --text-opacity: .5;
}

.last\:text-opacity-75:last-child{
  --text-opacity: 0.75;
}

.last\:text-opacity-80:last-child{
  --text-opacity: .8;
}

.last\:text-opacity-100:last-child{
  --text-opacity: 1;
}

.italic{
  font-style: italic;
}

.not-italic{
  font-style: normal;
}

.hover\:italic:hover{
  font-style: italic;
}

.hover\:not-italic:hover{
  font-style: normal;
}

.focus\:italic:focus{
  font-style: italic;
}

.focus\:not-italic:focus{
  font-style: normal;
}

.active\:italic:active{
  font-style: italic;
}

.active\:not-italic:active{
  font-style: normal;
}

.first\:italic:first-child{
  font-style: italic;
}

.first\:not-italic:first-child{
  font-style: normal;
}

.last\:italic:last-child{
  font-style: italic;
}

.last\:not-italic:last-child{
  font-style: normal;
}

.uppercase{
  text-transform: uppercase;
}

.lowercase{
  text-transform: lowercase;
}

.capitalize{
  text-transform: capitalize;
}

.normal-case{
  text-transform: none;
}

.hover\:uppercase:hover{
  text-transform: uppercase;
}

.hover\:lowercase:hover{
  text-transform: lowercase;
}

.hover\:capitalize:hover{
  text-transform: capitalize;
}

.hover\:normal-case:hover{
  text-transform: none;
}

.focus\:uppercase:focus{
  text-transform: uppercase;
}

.focus\:lowercase:focus{
  text-transform: lowercase;
}

.focus\:capitalize:focus{
  text-transform: capitalize;
}

.focus\:normal-case:focus{
  text-transform: none;
}

.active\:uppercase:active{
  text-transform: uppercase;
}

.active\:lowercase:active{
  text-transform: lowercase;
}

.active\:capitalize:active{
  text-transform: capitalize;
}

.active\:normal-case:active{
  text-transform: none;
}

.first\:uppercase:first-child{
  text-transform: uppercase;
}

.first\:lowercase:first-child{
  text-transform: lowercase;
}

.first\:capitalize:first-child{
  text-transform: capitalize;
}

.first\:normal-case:first-child{
  text-transform: none;
}

.last\:uppercase:last-child{
  text-transform: uppercase;
}

.last\:lowercase:last-child{
  text-transform: lowercase;
}

.last\:capitalize:last-child{
  text-transform: capitalize;
}

.last\:normal-case:last-child{
  text-transform: none;
}

.underline{
  text-decoration: underline;
}

.line-through{
  text-decoration: line-through;
}

.no-underline{
  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;
}

.active\:underline:active{
  text-decoration: underline;
}

.active\:line-through:active{
  text-decoration: line-through;
}

.active\:no-underline:active{
  text-decoration: none;
}

.first\:underline:first-child{
  text-decoration: underline;
}

.first\:line-through:first-child{
  text-decoration: line-through;
}

.first\:no-underline:first-child{
  text-decoration: none;
}

.last\:underline:last-child{
  text-decoration: underline;
}

.last\:line-through:last-child{
  text-decoration: line-through;
}

.last\:no-underline:last-child{
  text-decoration: none;
}

.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subpixel-antialiased{
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.hover\:antialiased:hover{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hover\:subpixel-antialiased:hover{
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.focus\:antialiased:focus{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.focus\:subpixel-antialiased:focus{
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.active\:antialiased:active{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.active\:subpixel-antialiased:active{
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.first\:antialiased:first-child{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.first\:subpixel-antialiased:first-child{
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.last\:antialiased:last-child{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.last\:subpixel-antialiased:last-child{
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions{
  --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
  font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
}

.normal-nums{
  font-variant-numeric: normal;
}

.ordinal{
  --font-variant-numeric-ordinal: ordinal;
}

.slashed-zero{
  --font-variant-numeric-slashed-zero: slashed-zero;
}

.lining-nums{
  --font-variant-numeric-figure: lining-nums;
}

.oldstyle-nums{
  --font-variant-numeric-figure: oldstyle-nums;
}

.proportional-nums{
  --font-variant-numeric-spacing: proportional-nums;
}

.tabular-nums{
  --font-variant-numeric-spacing: tabular-nums;
}

.diagonal-fractions{
  --font-variant-numeric-fraction: diagonal-fractions;
}

.stacked-fractions{
  --font-variant-numeric-fraction: stacked-fractions;
}

.hover\:ordinal:hover, .hover\:slashed-zero:hover, .hover\:lining-nums:hover, .hover\:oldstyle-nums:hover, .hover\:proportional-nums:hover, .hover\:tabular-nums:hover, .hover\:diagonal-fractions:hover, .hover\:stacked-fractions:hover{
  --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
  font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
}

.hover\:normal-nums:hover{
  font-variant-numeric: normal;
}

.hover\:ordinal:hover{
  --font-variant-numeric-ordinal: ordinal;
}

.hover\:slashed-zero:hover{
  --font-variant-numeric-slashed-zero: slashed-zero;
}

.hover\:lining-nums:hover{
  --font-variant-numeric-figure: lining-nums;
}

.hover\:oldstyle-nums:hover{
  --font-variant-numeric-figure: oldstyle-nums;
}

.hover\:proportional-nums:hover{
  --font-variant-numeric-spacing: proportional-nums;
}

.hover\:tabular-nums:hover{
  --font-variant-numeric-spacing: tabular-nums;
}

.hover\:diagonal-fractions:hover{
  --font-variant-numeric-fraction: diagonal-fractions;
}

.hover\:stacked-fractions:hover{
  --font-variant-numeric-fraction: stacked-fractions;
}

.focus\:ordinal:focus, .focus\:slashed-zero:focus, .focus\:lining-nums:focus, .focus\:oldstyle-nums:focus, .focus\:proportional-nums:focus, .focus\:tabular-nums:focus, .focus\:diagonal-fractions:focus, .focus\:stacked-fractions:focus{
  --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
  font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
}

.focus\:normal-nums:focus{
  font-variant-numeric: normal;
}

.focus\:ordinal:focus{
  --font-variant-numeric-ordinal: ordinal;
}

.focus\:slashed-zero:focus{
  --font-variant-numeric-slashed-zero: slashed-zero;
}

.focus\:lining-nums:focus{
  --font-variant-numeric-figure: lining-nums;
}

.focus\:oldstyle-nums:focus{
  --font-variant-numeric-figure: oldstyle-nums;
}

.focus\:proportional-nums:focus{
  --font-variant-numeric-spacing: proportional-nums;
}

.focus\:tabular-nums:focus{
  --font-variant-numeric-spacing: tabular-nums;
}

.focus\:diagonal-fractions:focus{
  --font-variant-numeric-fraction: diagonal-fractions;
}

.focus\:stacked-fractions:focus{
  --font-variant-numeric-fraction: stacked-fractions;
}

.active\:ordinal:active, .active\:slashed-zero:active, .active\:lining-nums:active, .active\:oldstyle-nums:active, .active\:proportional-nums:active, .active\:tabular-nums:active, .active\:diagonal-fractions:active, .active\:stacked-fractions:active{
  --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
  font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
}

.active\:normal-nums:active{
  font-variant-numeric: normal;
}

.active\:ordinal:active{
  --font-variant-numeric-ordinal: ordinal;
}

.active\:slashed-zero:active{
  --font-variant-numeric-slashed-zero: slashed-zero;
}

.active\:lining-nums:active{
  --font-variant-numeric-figure: lining-nums;
}

.active\:oldstyle-nums:active{
  --font-variant-numeric-figure: oldstyle-nums;
}

.active\:proportional-nums:active{
  --font-variant-numeric-spacing: proportional-nums;
}

.active\:tabular-nums:active{
  --font-variant-numeric-spacing: tabular-nums;
}

.active\:diagonal-fractions:active{
  --font-variant-numeric-fraction: diagonal-fractions;
}

.active\:stacked-fractions:active{
  --font-variant-numeric-fraction: stacked-fractions;
}

.first\:ordinal:first-child, .first\:slashed-zero:first-child, .first\:lining-nums:first-child, .first\:oldstyle-nums:first-child, .first\:proportional-nums:first-child, .first\:tabular-nums:first-child, .first\:diagonal-fractions:first-child, .first\:stacked-fractions:first-child{
  --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
  font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
}

.first\:normal-nums:first-child{
  font-variant-numeric: normal;
}

.first\:ordinal:first-child{
  --font-variant-numeric-ordinal: ordinal;
}

.first\:slashed-zero:first-child{
  --font-variant-numeric-slashed-zero: slashed-zero;
}

.first\:lining-nums:first-child{
  --font-variant-numeric-figure: lining-nums;
}

.first\:oldstyle-nums:first-child{
  --font-variant-numeric-figure: oldstyle-nums;
}

.first\:proportional-nums:first-child{
  --font-variant-numeric-spacing: proportional-nums;
}

.first\:tabular-nums:first-child{
  --font-variant-numeric-spacing: tabular-nums;
}

.first\:diagonal-fractions:first-child{
  --font-variant-numeric-fraction: diagonal-fractions;
}

.first\:stacked-fractions:first-child{
  --font-variant-numeric-fraction: stacked-fractions;
}

.last\:ordinal:last-child, .last\:slashed-zero:last-child, .last\:lining-nums:last-child, .last\:oldstyle-nums:last-child, .last\:proportional-nums:last-child, .last\:tabular-nums:last-child, .last\:diagonal-fractions:last-child, .last\:stacked-fractions:last-child{
  --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
  font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
}

.last\:normal-nums:last-child{
  font-variant-numeric: normal;
}

.last\:ordinal:last-child{
  --font-variant-numeric-ordinal: ordinal;
}

.last\:slashed-zero:last-child{
  --font-variant-numeric-slashed-zero: slashed-zero;
}

.last\:lining-nums:last-child{
  --font-variant-numeric-figure: lining-nums;
}

.last\:oldstyle-nums:last-child{
  --font-variant-numeric-figure: oldstyle-nums;
}

.last\:proportional-nums:last-child{
  --font-variant-numeric-spacing: proportional-nums;
}

.last\:tabular-nums:last-child{
  --font-variant-numeric-spacing: tabular-nums;
}

.last\:diagonal-fractions:last-child{
  --font-variant-numeric-fraction: diagonal-fractions;
}

.last\:stacked-fractions:last-child{
  --font-variant-numeric-fraction: stacked-fractions;
}

.tracking-tighter{
  letter-spacing: -0.05em;
}

.tracking-tight{
  letter-spacing: -0.025em;
}

.tracking-normal{
  letter-spacing: 0;
}

.tracking-wide{
  letter-spacing: 0.025em;
}

.tracking-wider{
  letter-spacing: 0.05em;
}

.tracking-widest{
  letter-spacing: 0.1em;
}

.hover\:tracking-tighter:hover{
  letter-spacing: -0.05em;
}

.hover\:tracking-tight:hover{
  letter-spacing: -0.025em;
}

.hover\:tracking-normal:hover{
  letter-spacing: 0;
}

.hover\:tracking-wide:hover{
  letter-spacing: 0.025em;
}

.hover\:tracking-wider:hover{
  letter-spacing: 0.05em;
}

.hover\:tracking-widest:hover{
  letter-spacing: 0.1em;
}

.focus\:tracking-tighter:focus{
  letter-spacing: -0.05em;
}

.focus\:tracking-tight:focus{
  letter-spacing: -0.025em;
}

.focus\:tracking-normal:focus{
  letter-spacing: 0;
}

.focus\:tracking-wide:focus{
  letter-spacing: 0.025em;
}

.focus\:tracking-wider:focus{
  letter-spacing: 0.05em;
}

.focus\:tracking-widest:focus{
  letter-spacing: 0.1em;
}

.active\:tracking-tighter:active{
  letter-spacing: -0.05em;
}

.active\:tracking-tight:active{
  letter-spacing: -0.025em;
}

.active\:tracking-normal:active{
  letter-spacing: 0;
}

.active\:tracking-wide:active{
  letter-spacing: 0.025em;
}

.active\:tracking-wider:active{
  letter-spacing: 0.05em;
}

.active\:tracking-widest:active{
  letter-spacing: 0.1em;
}

.first\:tracking-tighter:first-child{
  letter-spacing: -0.05em;
}

.first\:tracking-tight:first-child{
  letter-spacing: -0.025em;
}

.first\:tracking-normal:first-child{
  letter-spacing: 0;
}

.first\:tracking-wide:first-child{
  letter-spacing: 0.025em;
}

.first\:tracking-wider:first-child{
  letter-spacing: 0.05em;
}

.first\:tracking-widest:first-child{
  letter-spacing: 0.1em;
}

.last\:tracking-tighter:last-child{
  letter-spacing: -0.05em;
}

.last\:tracking-tight:last-child{
  letter-spacing: -0.025em;
}

.last\:tracking-normal:last-child{
  letter-spacing: 0;
}

.last\:tracking-wide:last-child{
  letter-spacing: 0.025em;
}

.last\:tracking-wider:last-child{
  letter-spacing: 0.05em;
}

.last\:tracking-widest:last-child{
  letter-spacing: 0.1em;
}

.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;
      -ms-user-select: all;
          user-select: all;
}

.select-auto{
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.hover\:select-none:hover{
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.hover\:select-text:hover{
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.hover\:select-all:hover{
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

.hover\:select-auto:hover{
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.focus\:select-none:focus{
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.focus\:select-text:focus{
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.focus\:select-all:focus{
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

.focus\:select-auto:focus{
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.active\:select-none:active{
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.active\:select-text:active{
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.active\:select-all:active{
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

.active\:select-auto:active{
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.first\:select-none:first-child{
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.first\:select-text:first-child{
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.first\:select-all:first-child{
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

.first\:select-auto:first-child{
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.last\:select-none:last-child{
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.last\:select-text:last-child{
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.last\:select-all:last-child{
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

.last\:select-auto:last-child{
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.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;
}

.hover\:align-baseline:hover{
  vertical-align: baseline;
}

.hover\:align-top:hover{
  vertical-align: top;
}

.hover\:align-middle:hover{
  vertical-align: middle;
}

.hover\:align-bottom:hover{
  vertical-align: bottom;
}

.hover\:align-text-top:hover{
  vertical-align: text-top;
}

.hover\:align-text-bottom:hover{
  vertical-align: text-bottom;
}

.focus\:align-baseline:focus{
  vertical-align: baseline;
}

.focus\:align-top:focus{
  vertical-align: top;
}

.focus\:align-middle:focus{
  vertical-align: middle;
}

.focus\:align-bottom:focus{
  vertical-align: bottom;
}

.focus\:align-text-top:focus{
  vertical-align: text-top;
}

.focus\:align-text-bottom:focus{
  vertical-align: text-bottom;
}

.active\:align-baseline:active{
  vertical-align: baseline;
}

.active\:align-top:active{
  vertical-align: top;
}

.active\:align-middle:active{
  vertical-align: middle;
}

.active\:align-bottom:active{
  vertical-align: bottom;
}

.active\:align-text-top:active{
  vertical-align: text-top;
}

.active\:align-text-bottom:active{
  vertical-align: text-bottom;
}

.first\:align-baseline:first-child{
  vertical-align: baseline;
}

.first\:align-top:first-child{
  vertical-align: top;
}

.first\:align-middle:first-child{
  vertical-align: middle;
}

.first\:align-bottom:first-child{
  vertical-align: bottom;
}

.first\:align-text-top:first-child{
  vertical-align: text-top;
}

.first\:align-text-bottom:first-child{
  vertical-align: text-bottom;
}

.last\:align-baseline:last-child{
  vertical-align: baseline;
}

.last\:align-top:last-child{
  vertical-align: top;
}

.last\:align-middle:last-child{
  vertical-align: middle;
}

.last\:align-bottom:last-child{
  vertical-align: bottom;
}

.last\:align-text-top:last-child{
  vertical-align: text-top;
}

.last\:align-text-bottom:last-child{
  vertical-align: text-bottom;
}

.visible{
  visibility: visible;
}

.invisible{
  visibility: hidden;
}

.hover\:visible:hover{
  visibility: visible;
}

.hover\:invisible:hover{
  visibility: hidden;
}

.focus\:visible:focus{
  visibility: visible;
}

.focus\:invisible:focus{
  visibility: hidden;
}

.active\:visible:active{
  visibility: visible;
}

.active\:invisible:active{
  visibility: hidden;
}

.first\:visible:first-child{
  visibility: visible;
}

.first\:invisible:first-child{
  visibility: hidden;
}

.last\:visible:last-child{
  visibility: visible;
}

.last\:invisible:last-child{
  visibility: hidden;
}

.whitespace-normal{
  white-space: normal;
}

.whitespace-no-wrap{
  white-space: nowrap;
}

.whitespace-pre{
  white-space: pre;
}

.whitespace-pre-line{
  white-space: pre-line;
}

.whitespace-pre-wrap{
  white-space: pre-wrap;
}

.hover\:whitespace-normal:hover{
  white-space: normal;
}

.hover\:whitespace-no-wrap:hover{
  white-space: nowrap;
}

.hover\:whitespace-pre:hover{
  white-space: pre;
}

.hover\:whitespace-pre-line:hover{
  white-space: pre-line;
}

.hover\:whitespace-pre-wrap:hover{
  white-space: pre-wrap;
}

.focus\:whitespace-normal:focus{
  white-space: normal;
}

.focus\:whitespace-no-wrap:focus{
  white-space: nowrap;
}

.focus\:whitespace-pre:focus{
  white-space: pre;
}

.focus\:whitespace-pre-line:focus{
  white-space: pre-line;
}

.focus\:whitespace-pre-wrap:focus{
  white-space: pre-wrap;
}

.active\:whitespace-normal:active{
  white-space: normal;
}

.active\:whitespace-no-wrap:active{
  white-space: nowrap;
}

.active\:whitespace-pre:active{
  white-space: pre;
}

.active\:whitespace-pre-line:active{
  white-space: pre-line;
}

.active\:whitespace-pre-wrap:active{
  white-space: pre-wrap;
}

.first\:whitespace-normal:first-child{
  white-space: normal;
}

.first\:whitespace-no-wrap:first-child{
  white-space: nowrap;
}

.first\:whitespace-pre:first-child{
  white-space: pre;
}

.first\:whitespace-pre-line:first-child{
  white-space: pre-line;
}

.first\:whitespace-pre-wrap:first-child{
  white-space: pre-wrap;
}

.last\:whitespace-normal:last-child{
  white-space: normal;
}

.last\:whitespace-no-wrap:last-child{
  white-space: nowrap;
}

.last\:whitespace-pre:last-child{
  white-space: pre;
}

.last\:whitespace-pre-line:last-child{
  white-space: pre-line;
}

.last\:whitespace-pre-wrap:last-child{
  white-space: pre-wrap;
}

.break-normal{
  overflow-wrap: normal;
  word-break: normal;
}

.break-words{
  overflow-wrap: break-word;
}

.break-all{
  word-break: break-all;
}

.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hover\:break-normal:hover{
  overflow-wrap: normal;
  word-break: normal;
}

.hover\:break-words:hover{
  overflow-wrap: break-word;
}

.hover\:break-all:hover{
  word-break: break-all;
}

.hover\:truncate:hover{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.focus\:break-normal:focus{
  overflow-wrap: normal;
  word-break: normal;
}

.focus\:break-words:focus{
  overflow-wrap: break-word;
}

.focus\:break-all:focus{
  word-break: break-all;
}

.focus\:truncate:focus{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.active\:break-normal:active{
  overflow-wrap: normal;
  word-break: normal;
}

.active\:break-words:active{
  overflow-wrap: break-word;
}

.active\:break-all:active{
  word-break: break-all;
}

.active\:truncate:active{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.first\:break-normal:first-child{
  overflow-wrap: normal;
  word-break: normal;
}

.first\:break-words:first-child{
  overflow-wrap: break-word;
}

.first\:break-all:first-child{
  word-break: break-all;
}

.first\:truncate:first-child{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.last\:break-normal:last-child{
  overflow-wrap: normal;
  word-break: normal;
}

.last\:break-words:last-child{
  overflow-wrap: break-word;
}

.last\:break-all:last-child{
  word-break: break-all;
}

.last\:truncate:last-child{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.w-0{
  width: 0;
}

.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-8{
  width: 2rem;
}

.w-10{
  width: 2.5rem;
}

.w-12{
  width: 3rem;
}

.w-14{
  width: 3.5rem;
}

.w-16{
  width: 4rem;
}

.w-20{
  width: 5rem;
}

.w-24{
  width: 6rem;
}

.w-32{
  width: 8rem;
}

.w-36{
  width: 9rem;
}

.w-40{
  width: 10rem;
}

.w-48{
  width: 12rem;
}

.w-56{
  width: 14rem;
}

.w-64{
  width: 16rem;
}

.w-auto{
  width: auto;
}

.w-px{
  width: 1px;
}

.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-widePage{
  width: 120rem;
}

.w-page{
  width: 80rem;
}

.w-container{
  width: 77.25rem;
}

.w-tooltip{
  width: 25rem;
}

.w-smallTooltip{
  width: 15rem;
}

.w-xsmallTooltip{
  width: 6.0rem;
}

.w-sidebar{
  width: 27rem;
}

.w-doubleSidebar{
  width: 25%;
}

.w-practiceSidebar{
  width: 22.5rem;
}

.w-3\/8{
  width: 37.5%;
}

.w-1\/10{
  width: 10%;
}

.w-2\/10{
  width: 20%;
}

.w-3\/10{
  width: 30%;
}

.w-4\/10{
  width: 40%;
}

.w-5\/10{
  width: 50%;
}

.w-6\/10{
  width: 60%;
}

.w-7\/10{
  width: 70%;
}

.w-8\/10{
  width: 80%;
}

.w-9\/10{
  width: 90%;
}

.w-input{
  width: 32.5rem;
}

.w-inherit{
  width: inherit;
}

.hover\:w-0:hover{
  width: 0;
}

.hover\:w-1:hover{
  width: 0.25rem;
}

.hover\:w-2:hover{
  width: 0.5rem;
}

.hover\:w-3:hover{
  width: 0.75rem;
}

.hover\:w-4:hover{
  width: 1rem;
}

.hover\:w-5:hover{
  width: 1.25rem;
}

.hover\:w-6:hover{
  width: 1.5rem;
}

.hover\:w-8:hover{
  width: 2rem;
}

.hover\:w-10:hover{
  width: 2.5rem;
}

.hover\:w-12:hover{
  width: 3rem;
}

.hover\:w-14:hover{
  width: 3.5rem;
}

.hover\:w-16:hover{
  width: 4rem;
}

.hover\:w-20:hover{
  width: 5rem;
}

.hover\:w-24:hover{
  width: 6rem;
}

.hover\:w-32:hover{
  width: 8rem;
}

.hover\:w-36:hover{
  width: 9rem;
}

.hover\:w-40:hover{
  width: 10rem;
}

.hover\:w-48:hover{
  width: 12rem;
}

.hover\:w-56:hover{
  width: 14rem;
}

.hover\:w-64:hover{
  width: 16rem;
}

.hover\:w-auto:hover{
  width: auto;
}

.hover\:w-px:hover{
  width: 1px;
}

.hover\:w-1\/2:hover{
  width: 50%;
}

.hover\:w-1\/3:hover{
  width: 33.333333%;
}

.hover\:w-2\/3:hover{
  width: 66.666667%;
}

.hover\:w-1\/4:hover{
  width: 25%;
}

.hover\:w-2\/4:hover{
  width: 50%;
}

.hover\:w-3\/4:hover{
  width: 75%;
}

.hover\:w-1\/5:hover{
  width: 20%;
}

.hover\:w-2\/5:hover{
  width: 40%;
}

.hover\:w-3\/5:hover{
  width: 60%;
}

.hover\:w-4\/5:hover{
  width: 80%;
}

.hover\:w-1\/6:hover{
  width: 16.666667%;
}

.hover\:w-2\/6:hover{
  width: 33.333333%;
}

.hover\:w-3\/6:hover{
  width: 50%;
}

.hover\:w-4\/6:hover{
  width: 66.666667%;
}

.hover\:w-5\/6:hover{
  width: 83.333333%;
}

.hover\:w-1\/12:hover{
  width: 8.333333%;
}

.hover\:w-2\/12:hover{
  width: 16.666667%;
}

.hover\:w-3\/12:hover{
  width: 25%;
}

.hover\:w-4\/12:hover{
  width: 33.333333%;
}

.hover\:w-5\/12:hover{
  width: 41.666667%;
}

.hover\:w-6\/12:hover{
  width: 50%;
}

.hover\:w-7\/12:hover{
  width: 58.333333%;
}

.hover\:w-8\/12:hover{
  width: 66.666667%;
}

.hover\:w-9\/12:hover{
  width: 75%;
}

.hover\:w-10\/12:hover{
  width: 83.333333%;
}

.hover\:w-11\/12:hover{
  width: 91.666667%;
}

.hover\:w-full:hover{
  width: 100%;
}

.hover\:w-screen:hover{
  width: 100vw;
}

.hover\:w-widePage:hover{
  width: 120rem;
}

.hover\:w-page:hover{
  width: 80rem;
}

.hover\:w-container:hover{
  width: 77.25rem;
}

.hover\:w-tooltip:hover{
  width: 25rem;
}

.hover\:w-smallTooltip:hover{
  width: 15rem;
}

.hover\:w-xsmallTooltip:hover{
  width: 6.0rem;
}

.hover\:w-sidebar:hover{
  width: 27rem;
}

.hover\:w-doubleSidebar:hover{
  width: 25%;
}

.hover\:w-practiceSidebar:hover{
  width: 22.5rem;
}

.hover\:w-3\/8:hover{
  width: 37.5%;
}

.hover\:w-1\/10:hover{
  width: 10%;
}

.hover\:w-2\/10:hover{
  width: 20%;
}

.hover\:w-3\/10:hover{
  width: 30%;
}

.hover\:w-4\/10:hover{
  width: 40%;
}

.hover\:w-5\/10:hover{
  width: 50%;
}

.hover\:w-6\/10:hover{
  width: 60%;
}

.hover\:w-7\/10:hover{
  width: 70%;
}

.hover\:w-8\/10:hover{
  width: 80%;
}

.hover\:w-9\/10:hover{
  width: 90%;
}

.hover\:w-input:hover{
  width: 32.5rem;
}

.hover\:w-inherit:hover{
  width: inherit;
}

.focus\:w-0:focus{
  width: 0;
}

.focus\:w-1:focus{
  width: 0.25rem;
}

.focus\:w-2:focus{
  width: 0.5rem;
}

.focus\:w-3:focus{
  width: 0.75rem;
}

.focus\:w-4:focus{
  width: 1rem;
}

.focus\:w-5:focus{
  width: 1.25rem;
}

.focus\:w-6:focus{
  width: 1.5rem;
}

.focus\:w-8:focus{
  width: 2rem;
}

.focus\:w-10:focus{
  width: 2.5rem;
}

.focus\:w-12:focus{
  width: 3rem;
}

.focus\:w-14:focus{
  width: 3.5rem;
}

.focus\:w-16:focus{
  width: 4rem;
}

.focus\:w-20:focus{
  width: 5rem;
}

.focus\:w-24:focus{
  width: 6rem;
}

.focus\:w-32:focus{
  width: 8rem;
}

.focus\:w-36:focus{
  width: 9rem;
}

.focus\:w-40:focus{
  width: 10rem;
}

.focus\:w-48:focus{
  width: 12rem;
}

.focus\:w-56:focus{
  width: 14rem;
}

.focus\:w-64:focus{
  width: 16rem;
}

.focus\:w-auto:focus{
  width: auto;
}

.focus\:w-px:focus{
  width: 1px;
}

.focus\:w-1\/2:focus{
  width: 50%;
}

.focus\:w-1\/3:focus{
  width: 33.333333%;
}

.focus\:w-2\/3:focus{
  width: 66.666667%;
}

.focus\:w-1\/4:focus{
  width: 25%;
}

.focus\:w-2\/4:focus{
  width: 50%;
}

.focus\:w-3\/4:focus{
  width: 75%;
}

.focus\:w-1\/5:focus{
  width: 20%;
}

.focus\:w-2\/5:focus{
  width: 40%;
}

.focus\:w-3\/5:focus{
  width: 60%;
}

.focus\:w-4\/5:focus{
  width: 80%;
}

.focus\:w-1\/6:focus{
  width: 16.666667%;
}

.focus\:w-2\/6:focus{
  width: 33.333333%;
}

.focus\:w-3\/6:focus{
  width: 50%;
}

.focus\:w-4\/6:focus{
  width: 66.666667%;
}

.focus\:w-5\/6:focus{
  width: 83.333333%;
}

.focus\:w-1\/12:focus{
  width: 8.333333%;
}

.focus\:w-2\/12:focus{
  width: 16.666667%;
}

.focus\:w-3\/12:focus{
  width: 25%;
}

.focus\:w-4\/12:focus{
  width: 33.333333%;
}

.focus\:w-5\/12:focus{
  width: 41.666667%;
}

.focus\:w-6\/12:focus{
  width: 50%;
}

.focus\:w-7\/12:focus{
  width: 58.333333%;
}

.focus\:w-8\/12:focus{
  width: 66.666667%;
}

.focus\:w-9\/12:focus{
  width: 75%;
}

.focus\:w-10\/12:focus{
  width: 83.333333%;
}

.focus\:w-11\/12:focus{
  width: 91.666667%;
}

.focus\:w-full:focus{
  width: 100%;
}

.focus\:w-screen:focus{
  width: 100vw;
}

.focus\:w-widePage:focus{
  width: 120rem;
}

.focus\:w-page:focus{
  width: 80rem;
}

.focus\:w-container:focus{
  width: 77.25rem;
}

.focus\:w-tooltip:focus{
  width: 25rem;
}

.focus\:w-smallTooltip:focus{
  width: 15rem;
}

.focus\:w-xsmallTooltip:focus{
  width: 6.0rem;
}

.focus\:w-sidebar:focus{
  width: 27rem;
}

.focus\:w-doubleSidebar:focus{
  width: 25%;
}

.focus\:w-practiceSidebar:focus{
  width: 22.5rem;
}

.focus\:w-3\/8:focus{
  width: 37.5%;
}

.focus\:w-1\/10:focus{
  width: 10%;
}

.focus\:w-2\/10:focus{
  width: 20%;
}

.focus\:w-3\/10:focus{
  width: 30%;
}

.focus\:w-4\/10:focus{
  width: 40%;
}

.focus\:w-5\/10:focus{
  width: 50%;
}

.focus\:w-6\/10:focus{
  width: 60%;
}

.focus\:w-7\/10:focus{
  width: 70%;
}

.focus\:w-8\/10:focus{
  width: 80%;
}

.focus\:w-9\/10:focus{
  width: 90%;
}

.focus\:w-input:focus{
  width: 32.5rem;
}

.focus\:w-inherit:focus{
  width: inherit;
}

.active\:w-0:active{
  width: 0;
}

.active\:w-1:active{
  width: 0.25rem;
}

.active\:w-2:active{
  width: 0.5rem;
}

.active\:w-3:active{
  width: 0.75rem;
}

.active\:w-4:active{
  width: 1rem;
}

.active\:w-5:active{
  width: 1.25rem;
}

.active\:w-6:active{
  width: 1.5rem;
}

.active\:w-8:active{
  width: 2rem;
}

.active\:w-10:active{
  width: 2.5rem;
}

.active\:w-12:active{
  width: 3rem;
}

.active\:w-14:active{
  width: 3.5rem;
}

.active\:w-16:active{
  width: 4rem;
}

.active\:w-20:active{
  width: 5rem;
}

.active\:w-24:active{
  width: 6rem;
}

.active\:w-32:active{
  width: 8rem;
}

.active\:w-36:active{
  width: 9rem;
}

.active\:w-40:active{
  width: 10rem;
}

.active\:w-48:active{
  width: 12rem;
}

.active\:w-56:active{
  width: 14rem;
}

.active\:w-64:active{
  width: 16rem;
}

.active\:w-auto:active{
  width: auto;
}

.active\:w-px:active{
  width: 1px;
}

.active\:w-1\/2:active{
  width: 50%;
}

.active\:w-1\/3:active{
  width: 33.333333%;
}

.active\:w-2\/3:active{
  width: 66.666667%;
}

.active\:w-1\/4:active{
  width: 25%;
}

.active\:w-2\/4:active{
  width: 50%;
}

.active\:w-3\/4:active{
  width: 75%;
}

.active\:w-1\/5:active{
  width: 20%;
}

.active\:w-2\/5:active{
  width: 40%;
}

.active\:w-3\/5:active{
  width: 60%;
}

.active\:w-4\/5:active{
  width: 80%;
}

.active\:w-1\/6:active{
  width: 16.666667%;
}

.active\:w-2\/6:active{
  width: 33.333333%;
}

.active\:w-3\/6:active{
  width: 50%;
}

.active\:w-4\/6:active{
  width: 66.666667%;
}

.active\:w-5\/6:active{
  width: 83.333333%;
}

.active\:w-1\/12:active{
  width: 8.333333%;
}

.active\:w-2\/12:active{
  width: 16.666667%;
}

.active\:w-3\/12:active{
  width: 25%;
}

.active\:w-4\/12:active{
  width: 33.333333%;
}

.active\:w-5\/12:active{
  width: 41.666667%;
}

.active\:w-6\/12:active{
  width: 50%;
}

.active\:w-7\/12:active{
  width: 58.333333%;
}

.active\:w-8\/12:active{
  width: 66.666667%;
}

.active\:w-9\/12:active{
  width: 75%;
}

.active\:w-10\/12:active{
  width: 83.333333%;
}

.active\:w-11\/12:active{
  width: 91.666667%;
}

.active\:w-full:active{
  width: 100%;
}

.active\:w-screen:active{
  width: 100vw;
}

.active\:w-widePage:active{
  width: 120rem;
}

.active\:w-page:active{
  width: 80rem;
}

.active\:w-container:active{
  width: 77.25rem;
}

.active\:w-tooltip:active{
  width: 25rem;
}

.active\:w-smallTooltip:active{
  width: 15rem;
}

.active\:w-xsmallTooltip:active{
  width: 6.0rem;
}

.active\:w-sidebar:active{
  width: 27rem;
}

.active\:w-doubleSidebar:active{
  width: 25%;
}

.active\:w-practiceSidebar:active{
  width: 22.5rem;
}

.active\:w-3\/8:active{
  width: 37.5%;
}

.active\:w-1\/10:active{
  width: 10%;
}

.active\:w-2\/10:active{
  width: 20%;
}

.active\:w-3\/10:active{
  width: 30%;
}

.active\:w-4\/10:active{
  width: 40%;
}

.active\:w-5\/10:active{
  width: 50%;
}

.active\:w-6\/10:active{
  width: 60%;
}

.active\:w-7\/10:active{
  width: 70%;
}

.active\:w-8\/10:active{
  width: 80%;
}

.active\:w-9\/10:active{
  width: 90%;
}

.active\:w-input:active{
  width: 32.5rem;
}

.active\:w-inherit:active{
  width: inherit;
}

.first\:w-0:first-child{
  width: 0;
}

.first\:w-1:first-child{
  width: 0.25rem;
}

.first\:w-2:first-child{
  width: 0.5rem;
}

.first\:w-3:first-child{
  width: 0.75rem;
}

.first\:w-4:first-child{
  width: 1rem;
}

.first\:w-5:first-child{
  width: 1.25rem;
}

.first\:w-6:first-child{
  width: 1.5rem;
}

.first\:w-8:first-child{
  width: 2rem;
}

.first\:w-10:first-child{
  width: 2.5rem;
}

.first\:w-12:first-child{
  width: 3rem;
}

.first\:w-14:first-child{
  width: 3.5rem;
}

.first\:w-16:first-child{
  width: 4rem;
}

.first\:w-20:first-child{
  width: 5rem;
}

.first\:w-24:first-child{
  width: 6rem;
}

.first\:w-32:first-child{
  width: 8rem;
}

.first\:w-36:first-child{
  width: 9rem;
}

.first\:w-40:first-child{
  width: 10rem;
}

.first\:w-48:first-child{
  width: 12rem;
}

.first\:w-56:first-child{
  width: 14rem;
}

.first\:w-64:first-child{
  width: 16rem;
}

.first\:w-auto:first-child{
  width: auto;
}

.first\:w-px:first-child{
  width: 1px;
}

.first\:w-1\/2:first-child{
  width: 50%;
}

.first\:w-1\/3:first-child{
  width: 33.333333%;
}

.first\:w-2\/3:first-child{
  width: 66.666667%;
}

.first\:w-1\/4:first-child{
  width: 25%;
}

.first\:w-2\/4:first-child{
  width: 50%;
}

.first\:w-3\/4:first-child{
  width: 75%;
}

.first\:w-1\/5:first-child{
  width: 20%;
}

.first\:w-2\/5:first-child{
  width: 40%;
}

.first\:w-3\/5:first-child{
  width: 60%;
}

.first\:w-4\/5:first-child{
  width: 80%;
}

.first\:w-1\/6:first-child{
  width: 16.666667%;
}

.first\:w-2\/6:first-child{
  width: 33.333333%;
}

.first\:w-3\/6:first-child{
  width: 50%;
}

.first\:w-4\/6:first-child{
  width: 66.666667%;
}

.first\:w-5\/6:first-child{
  width: 83.333333%;
}

.first\:w-1\/12:first-child{
  width: 8.333333%;
}

.first\:w-2\/12:first-child{
  width: 16.666667%;
}

.first\:w-3\/12:first-child{
  width: 25%;
}

.first\:w-4\/12:first-child{
  width: 33.333333%;
}

.first\:w-5\/12:first-child{
  width: 41.666667%;
}

.first\:w-6\/12:first-child{
  width: 50%;
}

.first\:w-7\/12:first-child{
  width: 58.333333%;
}

.first\:w-8\/12:first-child{
  width: 66.666667%;
}

.first\:w-9\/12:first-child{
  width: 75%;
}

.first\:w-10\/12:first-child{
  width: 83.333333%;
}

.first\:w-11\/12:first-child{
  width: 91.666667%;
}

.first\:w-full:first-child{
  width: 100%;
}

.first\:w-screen:first-child{
  width: 100vw;
}

.first\:w-widePage:first-child{
  width: 120rem;
}

.first\:w-page:first-child{
  width: 80rem;
}

.first\:w-container:first-child{
  width: 77.25rem;
}

.first\:w-tooltip:first-child{
  width: 25rem;
}

.first\:w-smallTooltip:first-child{
  width: 15rem;
}

.first\:w-xsmallTooltip:first-child{
  width: 6.0rem;
}

.first\:w-sidebar:first-child{
  width: 27rem;
}

.first\:w-doubleSidebar:first-child{
  width: 25%;
}

.first\:w-practiceSidebar:first-child{
  width: 22.5rem;
}

.first\:w-3\/8:first-child{
  width: 37.5%;
}

.first\:w-1\/10:first-child{
  width: 10%;
}

.first\:w-2\/10:first-child{
  width: 20%;
}

.first\:w-3\/10:first-child{
  width: 30%;
}

.first\:w-4\/10:first-child{
  width: 40%;
}

.first\:w-5\/10:first-child{
  width: 50%;
}

.first\:w-6\/10:first-child{
  width: 60%;
}

.first\:w-7\/10:first-child{
  width: 70%;
}

.first\:w-8\/10:first-child{
  width: 80%;
}

.first\:w-9\/10:first-child{
  width: 90%;
}

.first\:w-input:first-child{
  width: 32.5rem;
}

.first\:w-inherit:first-child{
  width: inherit;
}

.last\:w-0:last-child{
  width: 0;
}

.last\:w-1:last-child{
  width: 0.25rem;
}

.last\:w-2:last-child{
  width: 0.5rem;
}

.last\:w-3:last-child{
  width: 0.75rem;
}

.last\:w-4:last-child{
  width: 1rem;
}

.last\:w-5:last-child{
  width: 1.25rem;
}

.last\:w-6:last-child{
  width: 1.5rem;
}

.last\:w-8:last-child{
  width: 2rem;
}

.last\:w-10:last-child{
  width: 2.5rem;
}

.last\:w-12:last-child{
  width: 3rem;
}

.last\:w-14:last-child{
  width: 3.5rem;
}

.last\:w-16:last-child{
  width: 4rem;
}

.last\:w-20:last-child{
  width: 5rem;
}

.last\:w-24:last-child{
  width: 6rem;
}

.last\:w-32:last-child{
  width: 8rem;
}

.last\:w-36:last-child{
  width: 9rem;
}

.last\:w-40:last-child{
  width: 10rem;
}

.last\:w-48:last-child{
  width: 12rem;
}

.last\:w-56:last-child{
  width: 14rem;
}

.last\:w-64:last-child{
  width: 16rem;
}

.last\:w-auto:last-child{
  width: auto;
}

.last\:w-px:last-child{
  width: 1px;
}

.last\:w-1\/2:last-child{
  width: 50%;
}

.last\:w-1\/3:last-child{
  width: 33.333333%;
}

.last\:w-2\/3:last-child{
  width: 66.666667%;
}

.last\:w-1\/4:last-child{
  width: 25%;
}

.last\:w-2\/4:last-child{
  width: 50%;
}

.last\:w-3\/4:last-child{
  width: 75%;
}

.last\:w-1\/5:last-child{
  width: 20%;
}

.last\:w-2\/5:last-child{
  width: 40%;
}

.last\:w-3\/5:last-child{
  width: 60%;
}

.last\:w-4\/5:last-child{
  width: 80%;
}

.last\:w-1\/6:last-child{
  width: 16.666667%;
}

.last\:w-2\/6:last-child{
  width: 33.333333%;
}

.last\:w-3\/6:last-child{
  width: 50%;
}

.last\:w-4\/6:last-child{
  width: 66.666667%;
}

.last\:w-5\/6:last-child{
  width: 83.333333%;
}

.last\:w-1\/12:last-child{
  width: 8.333333%;
}

.last\:w-2\/12:last-child{
  width: 16.666667%;
}

.last\:w-3\/12:last-child{
  width: 25%;
}

.last\:w-4\/12:last-child{
  width: 33.333333%;
}

.last\:w-5\/12:last-child{
  width: 41.666667%;
}

.last\:w-6\/12:last-child{
  width: 50%;
}

.last\:w-7\/12:last-child{
  width: 58.333333%;
}

.last\:w-8\/12:last-child{
  width: 66.666667%;
}

.last\:w-9\/12:last-child{
  width: 75%;
}

.last\:w-10\/12:last-child{
  width: 83.333333%;
}

.last\:w-11\/12:last-child{
  width: 91.666667%;
}

.last\:w-full:last-child{
  width: 100%;
}

.last\:w-screen:last-child{
  width: 100vw;
}

.last\:w-widePage:last-child{
  width: 120rem;
}

.last\:w-page:last-child{
  width: 80rem;
}

.last\:w-container:last-child{
  width: 77.25rem;
}

.last\:w-tooltip:last-child{
  width: 25rem;
}

.last\:w-smallTooltip:last-child{
  width: 15rem;
}

.last\:w-xsmallTooltip:last-child{
  width: 6.0rem;
}

.last\:w-sidebar:last-child{
  width: 27rem;
}

.last\:w-doubleSidebar:last-child{
  width: 25%;
}

.last\:w-practiceSidebar:last-child{
  width: 22.5rem;
}

.last\:w-3\/8:last-child{
  width: 37.5%;
}

.last\:w-1\/10:last-child{
  width: 10%;
}

.last\:w-2\/10:last-child{
  width: 20%;
}

.last\:w-3\/10:last-child{
  width: 30%;
}

.last\:w-4\/10:last-child{
  width: 40%;
}

.last\:w-5\/10:last-child{
  width: 50%;
}

.last\:w-6\/10:last-child{
  width: 60%;
}

.last\:w-7\/10:last-child{
  width: 70%;
}

.last\:w-8\/10:last-child{
  width: 80%;
}

.last\:w-9\/10:last-child{
  width: 90%;
}

.last\:w-input:last-child{
  width: 32.5rem;
}

.last\:w-inherit:last-child{
  width: inherit;
}

.z-auto{
  z-index: auto;
}

.z-static-position{
  z-index: 300;
}

.z-tooltip{
  z-index: 201;
}

.z-overlay{
  z-index: 400;
}

.hover\:z-auto:hover{
  z-index: auto;
}

.hover\:z-static-position:hover{
  z-index: 300;
}

.hover\:z-tooltip:hover{
  z-index: 201;
}

.hover\:z-overlay:hover{
  z-index: 400;
}

.focus\:z-auto:focus{
  z-index: auto;
}

.focus\:z-static-position:focus{
  z-index: 300;
}

.focus\:z-tooltip:focus{
  z-index: 201;
}

.focus\:z-overlay:focus{
  z-index: 400;
}

.active\:z-auto:active{
  z-index: auto;
}

.active\:z-static-position:active{
  z-index: 300;
}

.active\:z-tooltip:active{
  z-index: 201;
}

.active\:z-overlay:active{
  z-index: 400;
}

.first\:z-auto:first-child{
  z-index: auto;
}

.first\:z-static-position:first-child{
  z-index: 300;
}

.first\:z-tooltip:first-child{
  z-index: 201;
}

.first\:z-overlay:first-child{
  z-index: 400;
}

.last\:z-auto:last-child{
  z-index: auto;
}

.last\:z-static-position:last-child{
  z-index: 300;
}

.last\:z-tooltip:last-child{
  z-index: 201;
}

.last\:z-overlay:last-child{
  z-index: 400;
}

.gap-0{
  grid-gap: 0;
  gap: 0;
}

.gap-1{
  grid-gap: 0.25rem;
  gap: 0.25rem;
}

.gap-2{
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.gap-3{
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.gap-4{
  grid-gap: 1rem;
  gap: 1rem;
}

.gap-5{
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.gap-6{
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.gap-8{
  grid-gap: 2rem;
  gap: 2rem;
}

.gap-10{
  grid-gap: 2.5rem;
  gap: 2.5rem;
}

.gap-12{
  grid-gap: 3rem;
  gap: 3rem;
}

.gap-14{
  grid-gap: 3.5rem;
  gap: 3.5rem;
}

.gap-16{
  grid-gap: 4rem;
  gap: 4rem;
}

.gap-20{
  grid-gap: 5rem;
  gap: 5rem;
}

.gap-24{
  grid-gap: 6rem;
  gap: 6rem;
}

.gap-32{
  grid-gap: 8rem;
  gap: 8rem;
}

.gap-40{
  grid-gap: 10rem;
  gap: 10rem;
}

.gap-48{
  grid-gap: 12rem;
  gap: 12rem;
}

.gap-56{
  grid-gap: 14rem;
  gap: 14rem;
}

.gap-64{
  grid-gap: 16rem;
  gap: 16rem;
}

.gap-px{
  grid-gap: 1px;
  gap: 1px;
}

.col-gap-0{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.col-gap-1{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.col-gap-2{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.col-gap-3{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.col-gap-4{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.col-gap-5{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.col-gap-6{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.col-gap-8{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.col-gap-10{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.col-gap-12{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.col-gap-14{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.col-gap-16{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.col-gap-20{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.col-gap-24{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.col-gap-32{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.col-gap-40{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.col-gap-48{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.col-gap-56{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.col-gap-64{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.col-gap-px{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.gap-x-0{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.gap-x-1{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.gap-x-2{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-3{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.gap-x-4{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-5{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.gap-x-6{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-x-8{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-x-10{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.gap-x-12{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.gap-x-14{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.gap-x-16{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.gap-x-20{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.gap-x-24{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.gap-x-32{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.gap-x-40{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.gap-x-48{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.gap-x-56{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.gap-x-64{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.gap-x-px{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.row-gap-0{
  grid-row-gap: 0;
  row-gap: 0;
}

.row-gap-1{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.row-gap-2{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.row-gap-3{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.row-gap-4{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.row-gap-5{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.row-gap-6{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.row-gap-8{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.row-gap-10{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.row-gap-12{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.row-gap-14{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.row-gap-16{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.row-gap-20{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.row-gap-24{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.row-gap-32{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.row-gap-40{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.row-gap-48{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.row-gap-56{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.row-gap-64{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.row-gap-px{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.gap-y-0{
  grid-row-gap: 0;
  row-gap: 0;
}

.gap-y-1{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.gap-y-2{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.gap-y-3{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.gap-y-4{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.gap-y-5{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.gap-y-6{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.gap-y-8{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.gap-y-10{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.gap-y-12{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.gap-y-14{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.gap-y-16{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.gap-y-20{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.gap-y-24{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.gap-y-32{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.gap-y-40{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.gap-y-48{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.gap-y-56{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.gap-y-64{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.gap-y-px{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.hover\:gap-0:hover{
  grid-gap: 0;
  gap: 0;
}

.hover\:gap-1:hover{
  grid-gap: 0.25rem;
  gap: 0.25rem;
}

.hover\:gap-2:hover{
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.hover\:gap-3:hover{
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.hover\:gap-4:hover{
  grid-gap: 1rem;
  gap: 1rem;
}

.hover\:gap-5:hover{
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.hover\:gap-6:hover{
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.hover\:gap-8:hover{
  grid-gap: 2rem;
  gap: 2rem;
}

.hover\:gap-10:hover{
  grid-gap: 2.5rem;
  gap: 2.5rem;
}

.hover\:gap-12:hover{
  grid-gap: 3rem;
  gap: 3rem;
}

.hover\:gap-14:hover{
  grid-gap: 3.5rem;
  gap: 3.5rem;
}

.hover\:gap-16:hover{
  grid-gap: 4rem;
  gap: 4rem;
}

.hover\:gap-20:hover{
  grid-gap: 5rem;
  gap: 5rem;
}

.hover\:gap-24:hover{
  grid-gap: 6rem;
  gap: 6rem;
}

.hover\:gap-32:hover{
  grid-gap: 8rem;
  gap: 8rem;
}

.hover\:gap-40:hover{
  grid-gap: 10rem;
  gap: 10rem;
}

.hover\:gap-48:hover{
  grid-gap: 12rem;
  gap: 12rem;
}

.hover\:gap-56:hover{
  grid-gap: 14rem;
  gap: 14rem;
}

.hover\:gap-64:hover{
  grid-gap: 16rem;
  gap: 16rem;
}

.hover\:gap-px:hover{
  grid-gap: 1px;
  gap: 1px;
}

.hover\:col-gap-0:hover{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.hover\:col-gap-1:hover{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.hover\:col-gap-2:hover{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.hover\:col-gap-3:hover{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.hover\:col-gap-4:hover{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.hover\:col-gap-5:hover{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.hover\:col-gap-6:hover{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.hover\:col-gap-8:hover{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.hover\:col-gap-10:hover{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.hover\:col-gap-12:hover{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.hover\:col-gap-14:hover{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.hover\:col-gap-16:hover{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.hover\:col-gap-20:hover{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.hover\:col-gap-24:hover{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.hover\:col-gap-32:hover{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.hover\:col-gap-40:hover{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.hover\:col-gap-48:hover{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.hover\:col-gap-56:hover{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.hover\:col-gap-64:hover{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.hover\:col-gap-px:hover{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.hover\:gap-x-0:hover{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.hover\:gap-x-1:hover{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.hover\:gap-x-2:hover{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.hover\:gap-x-3:hover{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.hover\:gap-x-4:hover{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.hover\:gap-x-5:hover{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.hover\:gap-x-6:hover{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.hover\:gap-x-8:hover{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.hover\:gap-x-10:hover{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.hover\:gap-x-12:hover{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.hover\:gap-x-14:hover{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.hover\:gap-x-16:hover{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.hover\:gap-x-20:hover{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.hover\:gap-x-24:hover{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.hover\:gap-x-32:hover{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.hover\:gap-x-40:hover{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.hover\:gap-x-48:hover{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.hover\:gap-x-56:hover{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.hover\:gap-x-64:hover{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.hover\:gap-x-px:hover{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.hover\:row-gap-0:hover{
  grid-row-gap: 0;
  row-gap: 0;
}

.hover\:row-gap-1:hover{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.hover\:row-gap-2:hover{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.hover\:row-gap-3:hover{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.hover\:row-gap-4:hover{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.hover\:row-gap-5:hover{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.hover\:row-gap-6:hover{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.hover\:row-gap-8:hover{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.hover\:row-gap-10:hover{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.hover\:row-gap-12:hover{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.hover\:row-gap-14:hover{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.hover\:row-gap-16:hover{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.hover\:row-gap-20:hover{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.hover\:row-gap-24:hover{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.hover\:row-gap-32:hover{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.hover\:row-gap-40:hover{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.hover\:row-gap-48:hover{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.hover\:row-gap-56:hover{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.hover\:row-gap-64:hover{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.hover\:row-gap-px:hover{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.hover\:gap-y-0:hover{
  grid-row-gap: 0;
  row-gap: 0;
}

.hover\:gap-y-1:hover{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.hover\:gap-y-2:hover{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.hover\:gap-y-3:hover{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.hover\:gap-y-4:hover{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.hover\:gap-y-5:hover{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.hover\:gap-y-6:hover{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.hover\:gap-y-8:hover{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.hover\:gap-y-10:hover{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.hover\:gap-y-12:hover{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.hover\:gap-y-14:hover{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.hover\:gap-y-16:hover{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.hover\:gap-y-20:hover{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.hover\:gap-y-24:hover{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.hover\:gap-y-32:hover{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.hover\:gap-y-40:hover{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.hover\:gap-y-48:hover{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.hover\:gap-y-56:hover{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.hover\:gap-y-64:hover{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.hover\:gap-y-px:hover{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.focus\:gap-0:focus{
  grid-gap: 0;
  gap: 0;
}

.focus\:gap-1:focus{
  grid-gap: 0.25rem;
  gap: 0.25rem;
}

.focus\:gap-2:focus{
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.focus\:gap-3:focus{
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.focus\:gap-4:focus{
  grid-gap: 1rem;
  gap: 1rem;
}

.focus\:gap-5:focus{
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.focus\:gap-6:focus{
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.focus\:gap-8:focus{
  grid-gap: 2rem;
  gap: 2rem;
}

.focus\:gap-10:focus{
  grid-gap: 2.5rem;
  gap: 2.5rem;
}

.focus\:gap-12:focus{
  grid-gap: 3rem;
  gap: 3rem;
}

.focus\:gap-14:focus{
  grid-gap: 3.5rem;
  gap: 3.5rem;
}

.focus\:gap-16:focus{
  grid-gap: 4rem;
  gap: 4rem;
}

.focus\:gap-20:focus{
  grid-gap: 5rem;
  gap: 5rem;
}

.focus\:gap-24:focus{
  grid-gap: 6rem;
  gap: 6rem;
}

.focus\:gap-32:focus{
  grid-gap: 8rem;
  gap: 8rem;
}

.focus\:gap-40:focus{
  grid-gap: 10rem;
  gap: 10rem;
}

.focus\:gap-48:focus{
  grid-gap: 12rem;
  gap: 12rem;
}

.focus\:gap-56:focus{
  grid-gap: 14rem;
  gap: 14rem;
}

.focus\:gap-64:focus{
  grid-gap: 16rem;
  gap: 16rem;
}

.focus\:gap-px:focus{
  grid-gap: 1px;
  gap: 1px;
}

.focus\:col-gap-0:focus{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.focus\:col-gap-1:focus{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.focus\:col-gap-2:focus{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.focus\:col-gap-3:focus{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.focus\:col-gap-4:focus{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.focus\:col-gap-5:focus{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.focus\:col-gap-6:focus{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.focus\:col-gap-8:focus{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.focus\:col-gap-10:focus{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.focus\:col-gap-12:focus{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.focus\:col-gap-14:focus{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.focus\:col-gap-16:focus{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.focus\:col-gap-20:focus{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.focus\:col-gap-24:focus{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.focus\:col-gap-32:focus{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.focus\:col-gap-40:focus{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.focus\:col-gap-48:focus{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.focus\:col-gap-56:focus{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.focus\:col-gap-64:focus{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.focus\:col-gap-px:focus{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.focus\:gap-x-0:focus{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.focus\:gap-x-1:focus{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.focus\:gap-x-2:focus{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.focus\:gap-x-3:focus{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.focus\:gap-x-4:focus{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.focus\:gap-x-5:focus{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.focus\:gap-x-6:focus{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.focus\:gap-x-8:focus{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.focus\:gap-x-10:focus{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.focus\:gap-x-12:focus{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.focus\:gap-x-14:focus{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.focus\:gap-x-16:focus{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.focus\:gap-x-20:focus{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.focus\:gap-x-24:focus{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.focus\:gap-x-32:focus{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.focus\:gap-x-40:focus{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.focus\:gap-x-48:focus{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.focus\:gap-x-56:focus{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.focus\:gap-x-64:focus{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.focus\:gap-x-px:focus{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.focus\:row-gap-0:focus{
  grid-row-gap: 0;
  row-gap: 0;
}

.focus\:row-gap-1:focus{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.focus\:row-gap-2:focus{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.focus\:row-gap-3:focus{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.focus\:row-gap-4:focus{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.focus\:row-gap-5:focus{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.focus\:row-gap-6:focus{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.focus\:row-gap-8:focus{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.focus\:row-gap-10:focus{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.focus\:row-gap-12:focus{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.focus\:row-gap-14:focus{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.focus\:row-gap-16:focus{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.focus\:row-gap-20:focus{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.focus\:row-gap-24:focus{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.focus\:row-gap-32:focus{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.focus\:row-gap-40:focus{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.focus\:row-gap-48:focus{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.focus\:row-gap-56:focus{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.focus\:row-gap-64:focus{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.focus\:row-gap-px:focus{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.focus\:gap-y-0:focus{
  grid-row-gap: 0;
  row-gap: 0;
}

.focus\:gap-y-1:focus{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.focus\:gap-y-2:focus{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.focus\:gap-y-3:focus{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.focus\:gap-y-4:focus{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.focus\:gap-y-5:focus{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.focus\:gap-y-6:focus{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.focus\:gap-y-8:focus{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.focus\:gap-y-10:focus{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.focus\:gap-y-12:focus{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.focus\:gap-y-14:focus{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.focus\:gap-y-16:focus{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.focus\:gap-y-20:focus{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.focus\:gap-y-24:focus{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.focus\:gap-y-32:focus{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.focus\:gap-y-40:focus{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.focus\:gap-y-48:focus{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.focus\:gap-y-56:focus{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.focus\:gap-y-64:focus{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.focus\:gap-y-px:focus{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.active\:gap-0:active{
  grid-gap: 0;
  gap: 0;
}

.active\:gap-1:active{
  grid-gap: 0.25rem;
  gap: 0.25rem;
}

.active\:gap-2:active{
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.active\:gap-3:active{
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.active\:gap-4:active{
  grid-gap: 1rem;
  gap: 1rem;
}

.active\:gap-5:active{
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.active\:gap-6:active{
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.active\:gap-8:active{
  grid-gap: 2rem;
  gap: 2rem;
}

.active\:gap-10:active{
  grid-gap: 2.5rem;
  gap: 2.5rem;
}

.active\:gap-12:active{
  grid-gap: 3rem;
  gap: 3rem;
}

.active\:gap-14:active{
  grid-gap: 3.5rem;
  gap: 3.5rem;
}

.active\:gap-16:active{
  grid-gap: 4rem;
  gap: 4rem;
}

.active\:gap-20:active{
  grid-gap: 5rem;
  gap: 5rem;
}

.active\:gap-24:active{
  grid-gap: 6rem;
  gap: 6rem;
}

.active\:gap-32:active{
  grid-gap: 8rem;
  gap: 8rem;
}

.active\:gap-40:active{
  grid-gap: 10rem;
  gap: 10rem;
}

.active\:gap-48:active{
  grid-gap: 12rem;
  gap: 12rem;
}

.active\:gap-56:active{
  grid-gap: 14rem;
  gap: 14rem;
}

.active\:gap-64:active{
  grid-gap: 16rem;
  gap: 16rem;
}

.active\:gap-px:active{
  grid-gap: 1px;
  gap: 1px;
}

.active\:col-gap-0:active{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.active\:col-gap-1:active{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.active\:col-gap-2:active{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.active\:col-gap-3:active{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.active\:col-gap-4:active{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.active\:col-gap-5:active{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.active\:col-gap-6:active{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.active\:col-gap-8:active{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.active\:col-gap-10:active{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.active\:col-gap-12:active{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.active\:col-gap-14:active{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.active\:col-gap-16:active{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.active\:col-gap-20:active{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.active\:col-gap-24:active{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.active\:col-gap-32:active{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.active\:col-gap-40:active{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.active\:col-gap-48:active{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.active\:col-gap-56:active{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.active\:col-gap-64:active{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.active\:col-gap-px:active{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.active\:gap-x-0:active{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.active\:gap-x-1:active{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.active\:gap-x-2:active{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.active\:gap-x-3:active{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.active\:gap-x-4:active{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.active\:gap-x-5:active{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.active\:gap-x-6:active{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.active\:gap-x-8:active{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.active\:gap-x-10:active{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.active\:gap-x-12:active{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.active\:gap-x-14:active{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.active\:gap-x-16:active{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.active\:gap-x-20:active{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.active\:gap-x-24:active{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.active\:gap-x-32:active{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.active\:gap-x-40:active{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.active\:gap-x-48:active{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.active\:gap-x-56:active{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.active\:gap-x-64:active{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.active\:gap-x-px:active{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.active\:row-gap-0:active{
  grid-row-gap: 0;
  row-gap: 0;
}

.active\:row-gap-1:active{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.active\:row-gap-2:active{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.active\:row-gap-3:active{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.active\:row-gap-4:active{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.active\:row-gap-5:active{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.active\:row-gap-6:active{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.active\:row-gap-8:active{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.active\:row-gap-10:active{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.active\:row-gap-12:active{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.active\:row-gap-14:active{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.active\:row-gap-16:active{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.active\:row-gap-20:active{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.active\:row-gap-24:active{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.active\:row-gap-32:active{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.active\:row-gap-40:active{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.active\:row-gap-48:active{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.active\:row-gap-56:active{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.active\:row-gap-64:active{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.active\:row-gap-px:active{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.active\:gap-y-0:active{
  grid-row-gap: 0;
  row-gap: 0;
}

.active\:gap-y-1:active{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.active\:gap-y-2:active{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.active\:gap-y-3:active{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.active\:gap-y-4:active{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.active\:gap-y-5:active{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.active\:gap-y-6:active{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.active\:gap-y-8:active{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.active\:gap-y-10:active{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.active\:gap-y-12:active{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.active\:gap-y-14:active{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.active\:gap-y-16:active{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.active\:gap-y-20:active{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.active\:gap-y-24:active{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.active\:gap-y-32:active{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.active\:gap-y-40:active{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.active\:gap-y-48:active{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.active\:gap-y-56:active{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.active\:gap-y-64:active{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.active\:gap-y-px:active{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.first\:gap-0:first-child{
  grid-gap: 0;
  gap: 0;
}

.first\:gap-1:first-child{
  grid-gap: 0.25rem;
  gap: 0.25rem;
}

.first\:gap-2:first-child{
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.first\:gap-3:first-child{
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.first\:gap-4:first-child{
  grid-gap: 1rem;
  gap: 1rem;
}

.first\:gap-5:first-child{
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.first\:gap-6:first-child{
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.first\:gap-8:first-child{
  grid-gap: 2rem;
  gap: 2rem;
}

.first\:gap-10:first-child{
  grid-gap: 2.5rem;
  gap: 2.5rem;
}

.first\:gap-12:first-child{
  grid-gap: 3rem;
  gap: 3rem;
}

.first\:gap-14:first-child{
  grid-gap: 3.5rem;
  gap: 3.5rem;
}

.first\:gap-16:first-child{
  grid-gap: 4rem;
  gap: 4rem;
}

.first\:gap-20:first-child{
  grid-gap: 5rem;
  gap: 5rem;
}

.first\:gap-24:first-child{
  grid-gap: 6rem;
  gap: 6rem;
}

.first\:gap-32:first-child{
  grid-gap: 8rem;
  gap: 8rem;
}

.first\:gap-40:first-child{
  grid-gap: 10rem;
  gap: 10rem;
}

.first\:gap-48:first-child{
  grid-gap: 12rem;
  gap: 12rem;
}

.first\:gap-56:first-child{
  grid-gap: 14rem;
  gap: 14rem;
}

.first\:gap-64:first-child{
  grid-gap: 16rem;
  gap: 16rem;
}

.first\:gap-px:first-child{
  grid-gap: 1px;
  gap: 1px;
}

.first\:col-gap-0:first-child{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.first\:col-gap-1:first-child{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.first\:col-gap-2:first-child{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.first\:col-gap-3:first-child{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.first\:col-gap-4:first-child{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.first\:col-gap-5:first-child{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.first\:col-gap-6:first-child{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.first\:col-gap-8:first-child{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.first\:col-gap-10:first-child{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.first\:col-gap-12:first-child{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.first\:col-gap-14:first-child{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.first\:col-gap-16:first-child{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.first\:col-gap-20:first-child{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.first\:col-gap-24:first-child{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.first\:col-gap-32:first-child{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.first\:col-gap-40:first-child{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.first\:col-gap-48:first-child{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.first\:col-gap-56:first-child{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.first\:col-gap-64:first-child{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.first\:col-gap-px:first-child{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.first\:gap-x-0:first-child{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.first\:gap-x-1:first-child{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.first\:gap-x-2:first-child{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.first\:gap-x-3:first-child{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.first\:gap-x-4:first-child{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.first\:gap-x-5:first-child{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.first\:gap-x-6:first-child{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.first\:gap-x-8:first-child{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.first\:gap-x-10:first-child{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.first\:gap-x-12:first-child{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.first\:gap-x-14:first-child{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.first\:gap-x-16:first-child{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.first\:gap-x-20:first-child{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.first\:gap-x-24:first-child{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.first\:gap-x-32:first-child{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.first\:gap-x-40:first-child{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.first\:gap-x-48:first-child{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.first\:gap-x-56:first-child{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.first\:gap-x-64:first-child{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.first\:gap-x-px:first-child{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.first\:row-gap-0:first-child{
  grid-row-gap: 0;
  row-gap: 0;
}

.first\:row-gap-1:first-child{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.first\:row-gap-2:first-child{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.first\:row-gap-3:first-child{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.first\:row-gap-4:first-child{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.first\:row-gap-5:first-child{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.first\:row-gap-6:first-child{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.first\:row-gap-8:first-child{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.first\:row-gap-10:first-child{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.first\:row-gap-12:first-child{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.first\:row-gap-14:first-child{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.first\:row-gap-16:first-child{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.first\:row-gap-20:first-child{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.first\:row-gap-24:first-child{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.first\:row-gap-32:first-child{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.first\:row-gap-40:first-child{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.first\:row-gap-48:first-child{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.first\:row-gap-56:first-child{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.first\:row-gap-64:first-child{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.first\:row-gap-px:first-child{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.first\:gap-y-0:first-child{
  grid-row-gap: 0;
  row-gap: 0;
}

.first\:gap-y-1:first-child{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.first\:gap-y-2:first-child{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.first\:gap-y-3:first-child{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.first\:gap-y-4:first-child{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.first\:gap-y-5:first-child{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.first\:gap-y-6:first-child{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.first\:gap-y-8:first-child{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.first\:gap-y-10:first-child{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.first\:gap-y-12:first-child{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.first\:gap-y-14:first-child{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.first\:gap-y-16:first-child{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.first\:gap-y-20:first-child{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.first\:gap-y-24:first-child{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.first\:gap-y-32:first-child{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.first\:gap-y-40:first-child{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.first\:gap-y-48:first-child{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.first\:gap-y-56:first-child{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.first\:gap-y-64:first-child{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.first\:gap-y-px:first-child{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.last\:gap-0:last-child{
  grid-gap: 0;
  gap: 0;
}

.last\:gap-1:last-child{
  grid-gap: 0.25rem;
  gap: 0.25rem;
}

.last\:gap-2:last-child{
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.last\:gap-3:last-child{
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.last\:gap-4:last-child{
  grid-gap: 1rem;
  gap: 1rem;
}

.last\:gap-5:last-child{
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.last\:gap-6:last-child{
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.last\:gap-8:last-child{
  grid-gap: 2rem;
  gap: 2rem;
}

.last\:gap-10:last-child{
  grid-gap: 2.5rem;
  gap: 2.5rem;
}

.last\:gap-12:last-child{
  grid-gap: 3rem;
  gap: 3rem;
}

.last\:gap-14:last-child{
  grid-gap: 3.5rem;
  gap: 3.5rem;
}

.last\:gap-16:last-child{
  grid-gap: 4rem;
  gap: 4rem;
}

.last\:gap-20:last-child{
  grid-gap: 5rem;
  gap: 5rem;
}

.last\:gap-24:last-child{
  grid-gap: 6rem;
  gap: 6rem;
}

.last\:gap-32:last-child{
  grid-gap: 8rem;
  gap: 8rem;
}

.last\:gap-40:last-child{
  grid-gap: 10rem;
  gap: 10rem;
}

.last\:gap-48:last-child{
  grid-gap: 12rem;
  gap: 12rem;
}

.last\:gap-56:last-child{
  grid-gap: 14rem;
  gap: 14rem;
}

.last\:gap-64:last-child{
  grid-gap: 16rem;
  gap: 16rem;
}

.last\:gap-px:last-child{
  grid-gap: 1px;
  gap: 1px;
}

.last\:col-gap-0:last-child{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.last\:col-gap-1:last-child{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.last\:col-gap-2:last-child{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.last\:col-gap-3:last-child{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.last\:col-gap-4:last-child{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.last\:col-gap-5:last-child{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.last\:col-gap-6:last-child{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.last\:col-gap-8:last-child{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.last\:col-gap-10:last-child{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.last\:col-gap-12:last-child{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.last\:col-gap-14:last-child{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.last\:col-gap-16:last-child{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.last\:col-gap-20:last-child{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.last\:col-gap-24:last-child{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.last\:col-gap-32:last-child{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.last\:col-gap-40:last-child{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.last\:col-gap-48:last-child{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.last\:col-gap-56:last-child{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.last\:col-gap-64:last-child{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.last\:col-gap-px:last-child{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.last\:gap-x-0:last-child{
  grid-column-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}

.last\:gap-x-1:last-child{
  grid-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.last\:gap-x-2:last-child{
  grid-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.last\:gap-x-3:last-child{
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.last\:gap-x-4:last-child{
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.last\:gap-x-5:last-child{
  grid-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.last\:gap-x-6:last-child{
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.last\:gap-x-8:last-child{
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.last\:gap-x-10:last-child{
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.last\:gap-x-12:last-child{
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.last\:gap-x-14:last-child{
  grid-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.last\:gap-x-16:last-child{
  grid-column-gap: 4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.last\:gap-x-20:last-child{
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.last\:gap-x-24:last-child{
  grid-column-gap: 6rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.last\:gap-x-32:last-child{
  grid-column-gap: 8rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.last\:gap-x-40:last-child{
  grid-column-gap: 10rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.last\:gap-x-48:last-child{
  grid-column-gap: 12rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.last\:gap-x-56:last-child{
  grid-column-gap: 14rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.last\:gap-x-64:last-child{
  grid-column-gap: 16rem;
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.last\:gap-x-px:last-child{
  grid-column-gap: 1px;
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.last\:row-gap-0:last-child{
  grid-row-gap: 0;
  row-gap: 0;
}

.last\:row-gap-1:last-child{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.last\:row-gap-2:last-child{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.last\:row-gap-3:last-child{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.last\:row-gap-4:last-child{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.last\:row-gap-5:last-child{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.last\:row-gap-6:last-child{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.last\:row-gap-8:last-child{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.last\:row-gap-10:last-child{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.last\:row-gap-12:last-child{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.last\:row-gap-14:last-child{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.last\:row-gap-16:last-child{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.last\:row-gap-20:last-child{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.last\:row-gap-24:last-child{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.last\:row-gap-32:last-child{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.last\:row-gap-40:last-child{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.last\:row-gap-48:last-child{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.last\:row-gap-56:last-child{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.last\:row-gap-64:last-child{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.last\:row-gap-px:last-child{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.last\:gap-y-0:last-child{
  grid-row-gap: 0;
  row-gap: 0;
}

.last\:gap-y-1:last-child{
  grid-row-gap: 0.25rem;
  row-gap: 0.25rem;
}

.last\:gap-y-2:last-child{
  grid-row-gap: 0.5rem;
  row-gap: 0.5rem;
}

.last\:gap-y-3:last-child{
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
}

.last\:gap-y-4:last-child{
  grid-row-gap: 1rem;
  row-gap: 1rem;
}

.last\:gap-y-5:last-child{
  grid-row-gap: 1.25rem;
  row-gap: 1.25rem;
}

.last\:gap-y-6:last-child{
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.last\:gap-y-8:last-child{
  grid-row-gap: 2rem;
  row-gap: 2rem;
}

.last\:gap-y-10:last-child{
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
}

.last\:gap-y-12:last-child{
  grid-row-gap: 3rem;
  row-gap: 3rem;
}

.last\:gap-y-14:last-child{
  grid-row-gap: 3.5rem;
  row-gap: 3.5rem;
}

.last\:gap-y-16:last-child{
  grid-row-gap: 4rem;
  row-gap: 4rem;
}

.last\:gap-y-20:last-child{
  grid-row-gap: 5rem;
  row-gap: 5rem;
}

.last\:gap-y-24:last-child{
  grid-row-gap: 6rem;
  row-gap: 6rem;
}

.last\:gap-y-32:last-child{
  grid-row-gap: 8rem;
  row-gap: 8rem;
}

.last\:gap-y-40:last-child{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.last\:gap-y-48:last-child{
  grid-row-gap: 12rem;
  row-gap: 12rem;
}

.last\:gap-y-56:last-child{
  grid-row-gap: 14rem;
  row-gap: 14rem;
}

.last\:gap-y-64:last-child{
  grid-row-gap: 16rem;
  row-gap: 16rem;
}

.last\:gap-y-px:last-child{
  grid-row-gap: 1px;
  row-gap: 1px;
}

.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;
}

.hover\:grid-flow-row:hover{
  grid-auto-flow: row;
}

.hover\:grid-flow-col:hover{
  grid-auto-flow: column;
}

.hover\:grid-flow-row-dense:hover{
  grid-auto-flow: row dense;
}

.hover\:grid-flow-col-dense:hover{
  grid-auto-flow: column dense;
}

.focus\:grid-flow-row:focus{
  grid-auto-flow: row;
}

.focus\:grid-flow-col:focus{
  grid-auto-flow: column;
}

.focus\:grid-flow-row-dense:focus{
  grid-auto-flow: row dense;
}

.focus\:grid-flow-col-dense:focus{
  grid-auto-flow: column dense;
}

.active\:grid-flow-row:active{
  grid-auto-flow: row;
}

.active\:grid-flow-col:active{
  grid-auto-flow: column;
}

.active\:grid-flow-row-dense:active{
  grid-auto-flow: row dense;
}

.active\:grid-flow-col-dense:active{
  grid-auto-flow: column dense;
}

.first\:grid-flow-row:first-child{
  grid-auto-flow: row;
}

.first\:grid-flow-col:first-child{
  grid-auto-flow: column;
}

.first\:grid-flow-row-dense:first-child{
  grid-auto-flow: row dense;
}

.first\:grid-flow-col-dense:first-child{
  grid-auto-flow: column dense;
}

.last\:grid-flow-row:last-child{
  grid-auto-flow: row;
}

.last\:grid-flow-col:last-child{
  grid-auto-flow: column;
}

.last\:grid-flow-row-dense:last-child{
  grid-auto-flow: row dense;
}

.last\:grid-flow-col-dense:last-child{
  grid-auto-flow: column dense;
}

.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;
}

.hover\:grid-cols-1:hover{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.hover\:grid-cols-2:hover{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hover\:grid-cols-3:hover{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hover\:grid-cols-4:hover{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hover\:grid-cols-5:hover{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hover\:grid-cols-6:hover{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hover\:grid-cols-7:hover{
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.hover\:grid-cols-8:hover{
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.hover\:grid-cols-9:hover{
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.hover\:grid-cols-10:hover{
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.hover\:grid-cols-11:hover{
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.hover\:grid-cols-12:hover{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.hover\:grid-cols-none:hover{
  grid-template-columns: none;
}

.focus\:grid-cols-1:focus{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.focus\:grid-cols-2:focus{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.focus\:grid-cols-3:focus{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.focus\:grid-cols-4:focus{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.focus\:grid-cols-5:focus{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.focus\:grid-cols-6:focus{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.focus\:grid-cols-7:focus{
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.focus\:grid-cols-8:focus{
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.focus\:grid-cols-9:focus{
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.focus\:grid-cols-10:focus{
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.focus\:grid-cols-11:focus{
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.focus\:grid-cols-12:focus{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.focus\:grid-cols-none:focus{
  grid-template-columns: none;
}

.active\:grid-cols-1:active{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.active\:grid-cols-2:active{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.active\:grid-cols-3:active{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.active\:grid-cols-4:active{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.active\:grid-cols-5:active{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.active\:grid-cols-6:active{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.active\:grid-cols-7:active{
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.active\:grid-cols-8:active{
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.active\:grid-cols-9:active{
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.active\:grid-cols-10:active{
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.active\:grid-cols-11:active{
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.active\:grid-cols-12:active{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.active\:grid-cols-none:active{
  grid-template-columns: none;
}

.first\:grid-cols-1:first-child{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.first\:grid-cols-2:first-child{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.first\:grid-cols-3:first-child{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.first\:grid-cols-4:first-child{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.first\:grid-cols-5:first-child{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.first\:grid-cols-6:first-child{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.first\:grid-cols-7:first-child{
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.first\:grid-cols-8:first-child{
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.first\:grid-cols-9:first-child{
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.first\:grid-cols-10:first-child{
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.first\:grid-cols-11:first-child{
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.first\:grid-cols-12:first-child{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.first\:grid-cols-none:first-child{
  grid-template-columns: none;
}

.last\:grid-cols-1:last-child{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.last\:grid-cols-2:last-child{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.last\:grid-cols-3:last-child{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.last\:grid-cols-4:last-child{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.last\:grid-cols-5:last-child{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.last\:grid-cols-6:last-child{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.last\:grid-cols-7:last-child{
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.last\:grid-cols-8:last-child{
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.last\:grid-cols-9:last-child{
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.last\:grid-cols-10:last-child{
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.last\:grid-cols-11:last-child{
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.last\:grid-cols-12:last-child{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.last\:grid-cols-none:last-child{
  grid-template-columns: none;
}

.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;
}

.hover\:col-auto:hover{
  grid-column: auto;
}

.hover\:col-span-1:hover{
  grid-column: span 1 / span 1;
}

.hover\:col-span-2:hover{
  grid-column: span 2 / span 2;
}

.hover\:col-span-3:hover{
  grid-column: span 3 / span 3;
}

.hover\:col-span-4:hover{
  grid-column: span 4 / span 4;
}

.hover\:col-span-5:hover{
  grid-column: span 5 / span 5;
}

.hover\:col-span-6:hover{
  grid-column: span 6 / span 6;
}

.hover\:col-span-7:hover{
  grid-column: span 7 / span 7;
}

.hover\:col-span-8:hover{
  grid-column: span 8 / span 8;
}

.hover\:col-span-9:hover{
  grid-column: span 9 / span 9;
}

.hover\:col-span-10:hover{
  grid-column: span 10 / span 10;
}

.hover\:col-span-11:hover{
  grid-column: span 11 / span 11;
}

.hover\:col-span-12:hover{
  grid-column: span 12 / span 12;
}

.focus\:col-auto:focus{
  grid-column: auto;
}

.focus\:col-span-1:focus{
  grid-column: span 1 / span 1;
}

.focus\:col-span-2:focus{
  grid-column: span 2 / span 2;
}

.focus\:col-span-3:focus{
  grid-column: span 3 / span 3;
}

.focus\:col-span-4:focus{
  grid-column: span 4 / span 4;
}

.focus\:col-span-5:focus{
  grid-column: span 5 / span 5;
}

.focus\:col-span-6:focus{
  grid-column: span 6 / span 6;
}

.focus\:col-span-7:focus{
  grid-column: span 7 / span 7;
}

.focus\:col-span-8:focus{
  grid-column: span 8 / span 8;
}

.focus\:col-span-9:focus{
  grid-column: span 9 / span 9;
}

.focus\:col-span-10:focus{
  grid-column: span 10 / span 10;
}

.focus\:col-span-11:focus{
  grid-column: span 11 / span 11;
}

.focus\:col-span-12:focus{
  grid-column: span 12 / span 12;
}

.active\:col-auto:active{
  grid-column: auto;
}

.active\:col-span-1:active{
  grid-column: span 1 / span 1;
}

.active\:col-span-2:active{
  grid-column: span 2 / span 2;
}

.active\:col-span-3:active{
  grid-column: span 3 / span 3;
}

.active\:col-span-4:active{
  grid-column: span 4 / span 4;
}

.active\:col-span-5:active{
  grid-column: span 5 / span 5;
}

.active\:col-span-6:active{
  grid-column: span 6 / span 6;
}

.active\:col-span-7:active{
  grid-column: span 7 / span 7;
}

.active\:col-span-8:active{
  grid-column: span 8 / span 8;
}

.active\:col-span-9:active{
  grid-column: span 9 / span 9;
}

.active\:col-span-10:active{
  grid-column: span 10 / span 10;
}

.active\:col-span-11:active{
  grid-column: span 11 / span 11;
}

.active\:col-span-12:active{
  grid-column: span 12 / span 12;
}

.first\:col-auto:first-child{
  grid-column: auto;
}

.first\:col-span-1:first-child{
  grid-column: span 1 / span 1;
}

.first\:col-span-2:first-child{
  grid-column: span 2 / span 2;
}

.first\:col-span-3:first-child{
  grid-column: span 3 / span 3;
}

.first\:col-span-4:first-child{
  grid-column: span 4 / span 4;
}

.first\:col-span-5:first-child{
  grid-column: span 5 / span 5;
}

.first\:col-span-6:first-child{
  grid-column: span 6 / span 6;
}

.first\:col-span-7:first-child{
  grid-column: span 7 / span 7;
}

.first\:col-span-8:first-child{
  grid-column: span 8 / span 8;
}

.first\:col-span-9:first-child{
  grid-column: span 9 / span 9;
}

.first\:col-span-10:first-child{
  grid-column: span 10 / span 10;
}

.first\:col-span-11:first-child{
  grid-column: span 11 / span 11;
}

.first\:col-span-12:first-child{
  grid-column: span 12 / span 12;
}

.last\:col-auto:last-child{
  grid-column: auto;
}

.last\:col-span-1:last-child{
  grid-column: span 1 / span 1;
}

.last\:col-span-2:last-child{
  grid-column: span 2 / span 2;
}

.last\:col-span-3:last-child{
  grid-column: span 3 / span 3;
}

.last\:col-span-4:last-child{
  grid-column: span 4 / span 4;
}

.last\:col-span-5:last-child{
  grid-column: span 5 / span 5;
}

.last\:col-span-6:last-child{
  grid-column: span 6 / span 6;
}

.last\:col-span-7:last-child{
  grid-column: span 7 / span 7;
}

.last\:col-span-8:last-child{
  grid-column: span 8 / span 8;
}

.last\:col-span-9:last-child{
  grid-column: span 9 / span 9;
}

.last\:col-span-10:last-child{
  grid-column: span 10 / span 10;
}

.last\:col-span-11:last-child{
  grid-column: span 11 / span 11;
}

.last\:col-span-12:last-child{
  grid-column: span 12 / span 12;
}

.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;
}

.hover\:col-start-1:hover{
  grid-column-start: 1;
}

.hover\:col-start-2:hover{
  grid-column-start: 2;
}

.hover\:col-start-3:hover{
  grid-column-start: 3;
}

.hover\:col-start-4:hover{
  grid-column-start: 4;
}

.hover\:col-start-5:hover{
  grid-column-start: 5;
}

.hover\:col-start-6:hover{
  grid-column-start: 6;
}

.hover\:col-start-7:hover{
  grid-column-start: 7;
}

.hover\:col-start-8:hover{
  grid-column-start: 8;
}

.hover\:col-start-9:hover{
  grid-column-start: 9;
}

.hover\:col-start-10:hover{
  grid-column-start: 10;
}

.hover\:col-start-11:hover{
  grid-column-start: 11;
}

.hover\:col-start-12:hover{
  grid-column-start: 12;
}

.hover\:col-start-13:hover{
  grid-column-start: 13;
}

.hover\:col-start-auto:hover{
  grid-column-start: auto;
}

.focus\:col-start-1:focus{
  grid-column-start: 1;
}

.focus\:col-start-2:focus{
  grid-column-start: 2;
}

.focus\:col-start-3:focus{
  grid-column-start: 3;
}

.focus\:col-start-4:focus{
  grid-column-start: 4;
}

.focus\:col-start-5:focus{
  grid-column-start: 5;
}

.focus\:col-start-6:focus{
  grid-column-start: 6;
}

.focus\:col-start-7:focus{
  grid-column-start: 7;
}

.focus\:col-start-8:focus{
  grid-column-start: 8;
}

.focus\:col-start-9:focus{
  grid-column-start: 9;
}

.focus\:col-start-10:focus{
  grid-column-start: 10;
}

.focus\:col-start-11:focus{
  grid-column-start: 11;
}

.focus\:col-start-12:focus{
  grid-column-start: 12;
}

.focus\:col-start-13:focus{
  grid-column-start: 13;
}

.focus\:col-start-auto:focus{
  grid-column-start: auto;
}

.active\:col-start-1:active{
  grid-column-start: 1;
}

.active\:col-start-2:active{
  grid-column-start: 2;
}

.active\:col-start-3:active{
  grid-column-start: 3;
}

.active\:col-start-4:active{
  grid-column-start: 4;
}

.active\:col-start-5:active{
  grid-column-start: 5;
}

.active\:col-start-6:active{
  grid-column-start: 6;
}

.active\:col-start-7:active{
  grid-column-start: 7;
}

.active\:col-start-8:active{
  grid-column-start: 8;
}

.active\:col-start-9:active{
  grid-column-start: 9;
}

.active\:col-start-10:active{
  grid-column-start: 10;
}

.active\:col-start-11:active{
  grid-column-start: 11;
}

.active\:col-start-12:active{
  grid-column-start: 12;
}

.active\:col-start-13:active{
  grid-column-start: 13;
}

.active\:col-start-auto:active{
  grid-column-start: auto;
}

.first\:col-start-1:first-child{
  grid-column-start: 1;
}

.first\:col-start-2:first-child{
  grid-column-start: 2;
}

.first\:col-start-3:first-child{
  grid-column-start: 3;
}

.first\:col-start-4:first-child{
  grid-column-start: 4;
}

.first\:col-start-5:first-child{
  grid-column-start: 5;
}

.first\:col-start-6:first-child{
  grid-column-start: 6;
}

.first\:col-start-7:first-child{
  grid-column-start: 7;
}

.first\:col-start-8:first-child{
  grid-column-start: 8;
}

.first\:col-start-9:first-child{
  grid-column-start: 9;
}

.first\:col-start-10:first-child{
  grid-column-start: 10;
}

.first\:col-start-11:first-child{
  grid-column-start: 11;
}

.first\:col-start-12:first-child{
  grid-column-start: 12;
}

.first\:col-start-13:first-child{
  grid-column-start: 13;
}

.first\:col-start-auto:first-child{
  grid-column-start: auto;
}

.last\:col-start-1:last-child{
  grid-column-start: 1;
}

.last\:col-start-2:last-child{
  grid-column-start: 2;
}

.last\:col-start-3:last-child{
  grid-column-start: 3;
}

.last\:col-start-4:last-child{
  grid-column-start: 4;
}

.last\:col-start-5:last-child{
  grid-column-start: 5;
}

.last\:col-start-6:last-child{
  grid-column-start: 6;
}

.last\:col-start-7:last-child{
  grid-column-start: 7;
}

.last\:col-start-8:last-child{
  grid-column-start: 8;
}

.last\:col-start-9:last-child{
  grid-column-start: 9;
}

.last\:col-start-10:last-child{
  grid-column-start: 10;
}

.last\:col-start-11:last-child{
  grid-column-start: 11;
}

.last\:col-start-12:last-child{
  grid-column-start: 12;
}

.last\:col-start-13:last-child{
  grid-column-start: 13;
}

.last\:col-start-auto:last-child{
  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;
}

.hover\:col-end-1:hover{
  grid-column-end: 1;
}

.hover\:col-end-2:hover{
  grid-column-end: 2;
}

.hover\:col-end-3:hover{
  grid-column-end: 3;
}

.hover\:col-end-4:hover{
  grid-column-end: 4;
}

.hover\:col-end-5:hover{
  grid-column-end: 5;
}

.hover\:col-end-6:hover{
  grid-column-end: 6;
}

.hover\:col-end-7:hover{
  grid-column-end: 7;
}

.hover\:col-end-8:hover{
  grid-column-end: 8;
}

.hover\:col-end-9:hover{
  grid-column-end: 9;
}

.hover\:col-end-10:hover{
  grid-column-end: 10;
}

.hover\:col-end-11:hover{
  grid-column-end: 11;
}

.hover\:col-end-12:hover{
  grid-column-end: 12;
}

.hover\:col-end-13:hover{
  grid-column-end: 13;
}

.hover\:col-end-auto:hover{
  grid-column-end: auto;
}

.focus\:col-end-1:focus{
  grid-column-end: 1;
}

.focus\:col-end-2:focus{
  grid-column-end: 2;
}

.focus\:col-end-3:focus{
  grid-column-end: 3;
}

.focus\:col-end-4:focus{
  grid-column-end: 4;
}

.focus\:col-end-5:focus{
  grid-column-end: 5;
}

.focus\:col-end-6:focus{
  grid-column-end: 6;
}

.focus\:col-end-7:focus{
  grid-column-end: 7;
}

.focus\:col-end-8:focus{
  grid-column-end: 8;
}

.focus\:col-end-9:focus{
  grid-column-end: 9;
}

.focus\:col-end-10:focus{
  grid-column-end: 10;
}

.focus\:col-end-11:focus{
  grid-column-end: 11;
}

.focus\:col-end-12:focus{
  grid-column-end: 12;
}

.focus\:col-end-13:focus{
  grid-column-end: 13;
}

.focus\:col-end-auto:focus{
  grid-column-end: auto;
}

.active\:col-end-1:active{
  grid-column-end: 1;
}

.active\:col-end-2:active{
  grid-column-end: 2;
}

.active\:col-end-3:active{
  grid-column-end: 3;
}

.active\:col-end-4:active{
  grid-column-end: 4;
}

.active\:col-end-5:active{
  grid-column-end: 5;
}

.active\:col-end-6:active{
  grid-column-end: 6;
}

.active\:col-end-7:active{
  grid-column-end: 7;
}

.active\:col-end-8:active{
  grid-column-end: 8;
}

.active\:col-end-9:active{
  grid-column-end: 9;
}

.active\:col-end-10:active{
  grid-column-end: 10;
}

.active\:col-end-11:active{
  grid-column-end: 11;
}

.active\:col-end-12:active{
  grid-column-end: 12;
}

.active\:col-end-13:active{
  grid-column-end: 13;
}

.active\:col-end-auto:active{
  grid-column-end: auto;
}

.first\:col-end-1:first-child{
  grid-column-end: 1;
}

.first\:col-end-2:first-child{
  grid-column-end: 2;
}

.first\:col-end-3:first-child{
  grid-column-end: 3;
}

.first\:col-end-4:first-child{
  grid-column-end: 4;
}

.first\:col-end-5:first-child{
  grid-column-end: 5;
}

.first\:col-end-6:first-child{
  grid-column-end: 6;
}

.first\:col-end-7:first-child{
  grid-column-end: 7;
}

.first\:col-end-8:first-child{
  grid-column-end: 8;
}

.first\:col-end-9:first-child{
  grid-column-end: 9;
}

.first\:col-end-10:first-child{
  grid-column-end: 10;
}

.first\:col-end-11:first-child{
  grid-column-end: 11;
}

.first\:col-end-12:first-child{
  grid-column-end: 12;
}

.first\:col-end-13:first-child{
  grid-column-end: 13;
}

.first\:col-end-auto:first-child{
  grid-column-end: auto;
}

.last\:col-end-1:last-child{
  grid-column-end: 1;
}

.last\:col-end-2:last-child{
  grid-column-end: 2;
}

.last\:col-end-3:last-child{
  grid-column-end: 3;
}

.last\:col-end-4:last-child{
  grid-column-end: 4;
}

.last\:col-end-5:last-child{
  grid-column-end: 5;
}

.last\:col-end-6:last-child{
  grid-column-end: 6;
}

.last\:col-end-7:last-child{
  grid-column-end: 7;
}

.last\:col-end-8:last-child{
  grid-column-end: 8;
}

.last\:col-end-9:last-child{
  grid-column-end: 9;
}

.last\:col-end-10:last-child{
  grid-column-end: 10;
}

.last\:col-end-11:last-child{
  grid-column-end: 11;
}

.last\:col-end-12:last-child{
  grid-column-end: 12;
}

.last\:col-end-13:last-child{
  grid-column-end: 13;
}

.last\:col-end-auto:last-child{
  grid-column-end: auto;
}

.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;
}

.hover\:grid-rows-1:hover{
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.hover\:grid-rows-2:hover{
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.hover\:grid-rows-3:hover{
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.hover\:grid-rows-4:hover{
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.hover\:grid-rows-5:hover{
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.hover\:grid-rows-6:hover{
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.hover\:grid-rows-none:hover{
  grid-template-rows: none;
}

.focus\:grid-rows-1:focus{
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.focus\:grid-rows-2:focus{
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.focus\:grid-rows-3:focus{
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.focus\:grid-rows-4:focus{
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.focus\:grid-rows-5:focus{
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.focus\:grid-rows-6:focus{
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.focus\:grid-rows-none:focus{
  grid-template-rows: none;
}

.active\:grid-rows-1:active{
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.active\:grid-rows-2:active{
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.active\:grid-rows-3:active{
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.active\:grid-rows-4:active{
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.active\:grid-rows-5:active{
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.active\:grid-rows-6:active{
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.active\:grid-rows-none:active{
  grid-template-rows: none;
}

.first\:grid-rows-1:first-child{
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.first\:grid-rows-2:first-child{
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.first\:grid-rows-3:first-child{
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.first\:grid-rows-4:first-child{
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.first\:grid-rows-5:first-child{
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.first\:grid-rows-6:first-child{
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.first\:grid-rows-none:first-child{
  grid-template-rows: none;
}

.last\:grid-rows-1:last-child{
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.last\:grid-rows-2:last-child{
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.last\:grid-rows-3:last-child{
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.last\:grid-rows-4:last-child{
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.last\:grid-rows-5:last-child{
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.last\:grid-rows-6:last-child{
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.last\:grid-rows-none:last-child{
  grid-template-rows: none;
}

.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;
}

.hover\:row-auto:hover{
  grid-row: auto;
}

.hover\:row-span-1:hover{
  grid-row: span 1 / span 1;
}

.hover\:row-span-2:hover{
  grid-row: span 2 / span 2;
}

.hover\:row-span-3:hover{
  grid-row: span 3 / span 3;
}

.hover\:row-span-4:hover{
  grid-row: span 4 / span 4;
}

.hover\:row-span-5:hover{
  grid-row: span 5 / span 5;
}

.hover\:row-span-6:hover{
  grid-row: span 6 / span 6;
}

.focus\:row-auto:focus{
  grid-row: auto;
}

.focus\:row-span-1:focus{
  grid-row: span 1 / span 1;
}

.focus\:row-span-2:focus{
  grid-row: span 2 / span 2;
}

.focus\:row-span-3:focus{
  grid-row: span 3 / span 3;
}

.focus\:row-span-4:focus{
  grid-row: span 4 / span 4;
}

.focus\:row-span-5:focus{
  grid-row: span 5 / span 5;
}

.focus\:row-span-6:focus{
  grid-row: span 6 / span 6;
}

.active\:row-auto:active{
  grid-row: auto;
}

.active\:row-span-1:active{
  grid-row: span 1 / span 1;
}

.active\:row-span-2:active{
  grid-row: span 2 / span 2;
}

.active\:row-span-3:active{
  grid-row: span 3 / span 3;
}

.active\:row-span-4:active{
  grid-row: span 4 / span 4;
}

.active\:row-span-5:active{
  grid-row: span 5 / span 5;
}

.active\:row-span-6:active{
  grid-row: span 6 / span 6;
}

.first\:row-auto:first-child{
  grid-row: auto;
}

.first\:row-span-1:first-child{
  grid-row: span 1 / span 1;
}

.first\:row-span-2:first-child{
  grid-row: span 2 / span 2;
}

.first\:row-span-3:first-child{
  grid-row: span 3 / span 3;
}

.first\:row-span-4:first-child{
  grid-row: span 4 / span 4;
}

.first\:row-span-5:first-child{
  grid-row: span 5 / span 5;
}

.first\:row-span-6:first-child{
  grid-row: span 6 / span 6;
}

.last\:row-auto:last-child{
  grid-row: auto;
}

.last\:row-span-1:last-child{
  grid-row: span 1 / span 1;
}

.last\:row-span-2:last-child{
  grid-row: span 2 / span 2;
}

.last\:row-span-3:last-child{
  grid-row: span 3 / span 3;
}

.last\:row-span-4:last-child{
  grid-row: span 4 / span 4;
}

.last\:row-span-5:last-child{
  grid-row: span 5 / span 5;
}

.last\:row-span-6:last-child{
  grid-row: span 6 / span 6;
}

.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;
}

.hover\:row-start-1:hover{
  grid-row-start: 1;
}

.hover\:row-start-2:hover{
  grid-row-start: 2;
}

.hover\:row-start-3:hover{
  grid-row-start: 3;
}

.hover\:row-start-4:hover{
  grid-row-start: 4;
}

.hover\:row-start-5:hover{
  grid-row-start: 5;
}

.hover\:row-start-6:hover{
  grid-row-start: 6;
}

.hover\:row-start-7:hover{
  grid-row-start: 7;
}

.hover\:row-start-auto:hover{
  grid-row-start: auto;
}

.focus\:row-start-1:focus{
  grid-row-start: 1;
}

.focus\:row-start-2:focus{
  grid-row-start: 2;
}

.focus\:row-start-3:focus{
  grid-row-start: 3;
}

.focus\:row-start-4:focus{
  grid-row-start: 4;
}

.focus\:row-start-5:focus{
  grid-row-start: 5;
}

.focus\:row-start-6:focus{
  grid-row-start: 6;
}

.focus\:row-start-7:focus{
  grid-row-start: 7;
}

.focus\:row-start-auto:focus{
  grid-row-start: auto;
}

.active\:row-start-1:active{
  grid-row-start: 1;
}

.active\:row-start-2:active{
  grid-row-start: 2;
}

.active\:row-start-3:active{
  grid-row-start: 3;
}

.active\:row-start-4:active{
  grid-row-start: 4;
}

.active\:row-start-5:active{
  grid-row-start: 5;
}

.active\:row-start-6:active{
  grid-row-start: 6;
}

.active\:row-start-7:active{
  grid-row-start: 7;
}

.active\:row-start-auto:active{
  grid-row-start: auto;
}

.first\:row-start-1:first-child{
  grid-row-start: 1;
}

.first\:row-start-2:first-child{
  grid-row-start: 2;
}

.first\:row-start-3:first-child{
  grid-row-start: 3;
}

.first\:row-start-4:first-child{
  grid-row-start: 4;
}

.first\:row-start-5:first-child{
  grid-row-start: 5;
}

.first\:row-start-6:first-child{
  grid-row-start: 6;
}

.first\:row-start-7:first-child{
  grid-row-start: 7;
}

.first\:row-start-auto:first-child{
  grid-row-start: auto;
}

.last\:row-start-1:last-child{
  grid-row-start: 1;
}

.last\:row-start-2:last-child{
  grid-row-start: 2;
}

.last\:row-start-3:last-child{
  grid-row-start: 3;
}

.last\:row-start-4:last-child{
  grid-row-start: 4;
}

.last\:row-start-5:last-child{
  grid-row-start: 5;
}

.last\:row-start-6:last-child{
  grid-row-start: 6;
}

.last\:row-start-7:last-child{
  grid-row-start: 7;
}

.last\:row-start-auto:last-child{
  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;
}

.hover\:row-end-1:hover{
  grid-row-end: 1;
}

.hover\:row-end-2:hover{
  grid-row-end: 2;
}

.hover\:row-end-3:hover{
  grid-row-end: 3;
}

.hover\:row-end-4:hover{
  grid-row-end: 4;
}

.hover\:row-end-5:hover{
  grid-row-end: 5;
}

.hover\:row-end-6:hover{
  grid-row-end: 6;
}

.hover\:row-end-7:hover{
  grid-row-end: 7;
}

.hover\:row-end-auto:hover{
  grid-row-end: auto;
}

.focus\:row-end-1:focus{
  grid-row-end: 1;
}

.focus\:row-end-2:focus{
  grid-row-end: 2;
}

.focus\:row-end-3:focus{
  grid-row-end: 3;
}

.focus\:row-end-4:focus{
  grid-row-end: 4;
}

.focus\:row-end-5:focus{
  grid-row-end: 5;
}

.focus\:row-end-6:focus{
  grid-row-end: 6;
}

.focus\:row-end-7:focus{
  grid-row-end: 7;
}

.focus\:row-end-auto:focus{
  grid-row-end: auto;
}

.active\:row-end-1:active{
  grid-row-end: 1;
}

.active\:row-end-2:active{
  grid-row-end: 2;
}

.active\:row-end-3:active{
  grid-row-end: 3;
}

.active\:row-end-4:active{
  grid-row-end: 4;
}

.active\:row-end-5:active{
  grid-row-end: 5;
}

.active\:row-end-6:active{
  grid-row-end: 6;
}

.active\:row-end-7:active{
  grid-row-end: 7;
}

.active\:row-end-auto:active{
  grid-row-end: auto;
}

.first\:row-end-1:first-child{
  grid-row-end: 1;
}

.first\:row-end-2:first-child{
  grid-row-end: 2;
}

.first\:row-end-3:first-child{
  grid-row-end: 3;
}

.first\:row-end-4:first-child{
  grid-row-end: 4;
}

.first\:row-end-5:first-child{
  grid-row-end: 5;
}

.first\:row-end-6:first-child{
  grid-row-end: 6;
}

.first\:row-end-7:first-child{
  grid-row-end: 7;
}

.first\:row-end-auto:first-child{
  grid-row-end: auto;
}

.last\:row-end-1:last-child{
  grid-row-end: 1;
}

.last\:row-end-2:last-child{
  grid-row-end: 2;
}

.last\:row-end-3:last-child{
  grid-row-end: 3;
}

.last\:row-end-4:last-child{
  grid-row-end: 4;
}

.last\:row-end-5:last-child{
  grid-row-end: 5;
}

.last\:row-end-6:last-child{
  grid-row-end: 6;
}

.last\:row-end-7:last-child{
  grid-row-end: 7;
}

.last\:row-end-auto:last-child{
  grid-row-end: auto;
}

.transform{
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.transform-none{
  transform: none;
}

.hover\:transform:hover{
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.hover\:transform-none:hover{
  transform: none;
}

.focus\:transform:focus{
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.focus\:transform-none:focus{
  transform: none;
}

.active\:transform:active{
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.active\:transform-none:active{
  transform: none;
}

.first\:transform:first-child{
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.first\:transform-none:first-child{
  transform: none;
}

.last\:transform:last-child{
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.last\:transform-none:last-child{
  transform: none;
}

.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;
}

.hover\:origin-center:hover{
  transform-origin: center;
}

.hover\:origin-top:hover{
  transform-origin: top;
}

.hover\:origin-top-right:hover{
  transform-origin: top right;
}

.hover\:origin-right:hover{
  transform-origin: right;
}

.hover\:origin-bottom-right:hover{
  transform-origin: bottom right;
}

.hover\:origin-bottom:hover{
  transform-origin: bottom;
}

.hover\:origin-bottom-left:hover{
  transform-origin: bottom left;
}

.hover\:origin-left:hover{
  transform-origin: left;
}

.hover\:origin-top-left:hover{
  transform-origin: top left;
}

.focus\:origin-center:focus{
  transform-origin: center;
}

.focus\:origin-top:focus{
  transform-origin: top;
}

.focus\:origin-top-right:focus{
  transform-origin: top right;
}

.focus\:origin-right:focus{
  transform-origin: right;
}

.focus\:origin-bottom-right:focus{
  transform-origin: bottom right;
}

.focus\:origin-bottom:focus{
  transform-origin: bottom;
}

.focus\:origin-bottom-left:focus{
  transform-origin: bottom left;
}

.focus\:origin-left:focus{
  transform-origin: left;
}

.focus\:origin-top-left:focus{
  transform-origin: top left;
}

.active\:origin-center:active{
  transform-origin: center;
}

.active\:origin-top:active{
  transform-origin: top;
}

.active\:origin-top-right:active{
  transform-origin: top right;
}

.active\:origin-right:active{
  transform-origin: right;
}

.active\:origin-bottom-right:active{
  transform-origin: bottom right;
}

.active\:origin-bottom:active{
  transform-origin: bottom;
}

.active\:origin-bottom-left:active{
  transform-origin: bottom left;
}

.active\:origin-left:active{
  transform-origin: left;
}

.active\:origin-top-left:active{
  transform-origin: top left;
}

.first\:origin-center:first-child{
  transform-origin: center;
}

.first\:origin-top:first-child{
  transform-origin: top;
}

.first\:origin-top-right:first-child{
  transform-origin: top right;
}

.first\:origin-right:first-child{
  transform-origin: right;
}

.first\:origin-bottom-right:first-child{
  transform-origin: bottom right;
}

.first\:origin-bottom:first-child{
  transform-origin: bottom;
}

.first\:origin-bottom-left:first-child{
  transform-origin: bottom left;
}

.first\:origin-left:first-child{
  transform-origin: left;
}

.first\:origin-top-left:first-child{
  transform-origin: top left;
}

.last\:origin-center:last-child{
  transform-origin: center;
}

.last\:origin-top:last-child{
  transform-origin: top;
}

.last\:origin-top-right:last-child{
  transform-origin: top right;
}

.last\:origin-right:last-child{
  transform-origin: right;
}

.last\:origin-bottom-right:last-child{
  transform-origin: bottom right;
}

.last\:origin-bottom:last-child{
  transform-origin: bottom;
}

.last\:origin-bottom-left:last-child{
  transform-origin: bottom left;
}

.last\:origin-left:last-child{
  transform-origin: left;
}

.last\:origin-top-left:last-child{
  transform-origin: top left;
}

.scale-0{
  --transform-scale-x: 0;
  --transform-scale-y: 0;
}

.scale-50{
  --transform-scale-x: .5;
  --transform-scale-y: .5;
}

.scale-75{
  --transform-scale-x: .75;
  --transform-scale-y: .75;
}

.scale-90{
  --transform-scale-x: .9;
  --transform-scale-y: .9;
}

.scale-95{
  --transform-scale-x: .95;
  --transform-scale-y: .95;
}

.scale-100{
  --transform-scale-x: 1;
  --transform-scale-y: 1;
}

.scale-105{
  --transform-scale-x: 1.05;
  --transform-scale-y: 1.05;
}

.scale-110{
  --transform-scale-x: 1.1;
  --transform-scale-y: 1.1;
}

.scale-125{
  --transform-scale-x: 1.25;
  --transform-scale-y: 1.25;
}

.scale-150{
  --transform-scale-x: 1.5;
  --transform-scale-y: 1.5;
}

.scale-x-0{
  --transform-scale-x: 0;
}

.scale-x-50{
  --transform-scale-x: .5;
}

.scale-x-75{
  --transform-scale-x: .75;
}

.scale-x-90{
  --transform-scale-x: .9;
}

.scale-x-95{
  --transform-scale-x: .95;
}

.scale-x-100{
  --transform-scale-x: 1;
}

.scale-x-105{
  --transform-scale-x: 1.05;
}

.scale-x-110{
  --transform-scale-x: 1.1;
}

.scale-x-125{
  --transform-scale-x: 1.25;
}

.scale-x-150{
  --transform-scale-x: 1.5;
}

.scale-y-0{
  --transform-scale-y: 0;
}

.scale-y-50{
  --transform-scale-y: .5;
}

.scale-y-75{
  --transform-scale-y: .75;
}

.scale-y-90{
  --transform-scale-y: .9;
}

.scale-y-95{
  --transform-scale-y: .95;
}

.scale-y-100{
  --transform-scale-y: 1;
}

.scale-y-105{
  --transform-scale-y: 1.05;
}

.scale-y-110{
  --transform-scale-y: 1.1;
}

.scale-y-125{
  --transform-scale-y: 1.25;
}

.scale-y-150{
  --transform-scale-y: 1.5;
}

.hover\:scale-0:hover{
  --transform-scale-x: 0;
  --transform-scale-y: 0;
}

.hover\:scale-50:hover{
  --transform-scale-x: .5;
  --transform-scale-y: .5;
}

.hover\:scale-75:hover{
  --transform-scale-x: .75;
  --transform-scale-y: .75;
}

.hover\:scale-90:hover{
  --transform-scale-x: .9;
  --transform-scale-y: .9;
}

.hover\:scale-95:hover{
  --transform-scale-x: .95;
  --transform-scale-y: .95;
}

.hover\:scale-100:hover{
  --transform-scale-x: 1;
  --transform-scale-y: 1;
}

.hover\:scale-105:hover{
  --transform-scale-x: 1.05;
  --transform-scale-y: 1.05;
}

.hover\:scale-110:hover{
  --transform-scale-x: 1.1;
  --transform-scale-y: 1.1;
}

.hover\:scale-125:hover{
  --transform-scale-x: 1.25;
  --transform-scale-y: 1.25;
}

.hover\:scale-150:hover{
  --transform-scale-x: 1.5;
  --transform-scale-y: 1.5;
}

.hover\:scale-x-0:hover{
  --transform-scale-x: 0;
}

.hover\:scale-x-50:hover{
  --transform-scale-x: .5;
}

.hover\:scale-x-75:hover{
  --transform-scale-x: .75;
}

.hover\:scale-x-90:hover{
  --transform-scale-x: .9;
}

.hover\:scale-x-95:hover{
  --transform-scale-x: .95;
}

.hover\:scale-x-100:hover{
  --transform-scale-x: 1;
}

.hover\:scale-x-105:hover{
  --transform-scale-x: 1.05;
}

.hover\:scale-x-110:hover{
  --transform-scale-x: 1.1;
}

.hover\:scale-x-125:hover{
  --transform-scale-x: 1.25;
}

.hover\:scale-x-150:hover{
  --transform-scale-x: 1.5;
}

.hover\:scale-y-0:hover{
  --transform-scale-y: 0;
}

.hover\:scale-y-50:hover{
  --transform-scale-y: .5;
}

.hover\:scale-y-75:hover{
  --transform-scale-y: .75;
}

.hover\:scale-y-90:hover{
  --transform-scale-y: .9;
}

.hover\:scale-y-95:hover{
  --transform-scale-y: .95;
}

.hover\:scale-y-100:hover{
  --transform-scale-y: 1;
}

.hover\:scale-y-105:hover{
  --transform-scale-y: 1.05;
}

.hover\:scale-y-110:hover{
  --transform-scale-y: 1.1;
}

.hover\:scale-y-125:hover{
  --transform-scale-y: 1.25;
}

.hover\:scale-y-150:hover{
  --transform-scale-y: 1.5;
}

.focus\:scale-0:focus{
  --transform-scale-x: 0;
  --transform-scale-y: 0;
}

.focus\:scale-50:focus{
  --transform-scale-x: .5;
  --transform-scale-y: .5;
}

.focus\:scale-75:focus{
  --transform-scale-x: .75;
  --transform-scale-y: .75;
}

.focus\:scale-90:focus{
  --transform-scale-x: .9;
  --transform-scale-y: .9;
}

.focus\:scale-95:focus{
  --transform-scale-x: .95;
  --transform-scale-y: .95;
}

.focus\:scale-100:focus{
  --transform-scale-x: 1;
  --transform-scale-y: 1;
}

.focus\:scale-105:focus{
  --transform-scale-x: 1.05;
  --transform-scale-y: 1.05;
}

.focus\:scale-110:focus{
  --transform-scale-x: 1.1;
  --transform-scale-y: 1.1;
}

.focus\:scale-125:focus{
  --transform-scale-x: 1.25;
  --transform-scale-y: 1.25;
}

.focus\:scale-150:focus{
  --transform-scale-x: 1.5;
  --transform-scale-y: 1.5;
}

.focus\:scale-x-0:focus{
  --transform-scale-x: 0;
}

.focus\:scale-x-50:focus{
  --transform-scale-x: .5;
}

.focus\:scale-x-75:focus{
  --transform-scale-x: .75;
}

.focus\:scale-x-90:focus{
  --transform-scale-x: .9;
}

.focus\:scale-x-95:focus{
  --transform-scale-x: .95;
}

.focus\:scale-x-100:focus{
  --transform-scale-x: 1;
}

.focus\:scale-x-105:focus{
  --transform-scale-x: 1.05;
}

.focus\:scale-x-110:focus{
  --transform-scale-x: 1.1;
}

.focus\:scale-x-125:focus{
  --transform-scale-x: 1.25;
}

.focus\:scale-x-150:focus{
  --transform-scale-x: 1.5;
}

.focus\:scale-y-0:focus{
  --transform-scale-y: 0;
}

.focus\:scale-y-50:focus{
  --transform-scale-y: .5;
}

.focus\:scale-y-75:focus{
  --transform-scale-y: .75;
}

.focus\:scale-y-90:focus{
  --transform-scale-y: .9;
}

.focus\:scale-y-95:focus{
  --transform-scale-y: .95;
}

.focus\:scale-y-100:focus{
  --transform-scale-y: 1;
}

.focus\:scale-y-105:focus{
  --transform-scale-y: 1.05;
}

.focus\:scale-y-110:focus{
  --transform-scale-y: 1.1;
}

.focus\:scale-y-125:focus{
  --transform-scale-y: 1.25;
}

.focus\:scale-y-150:focus{
  --transform-scale-y: 1.5;
}

.active\:scale-0:active{
  --transform-scale-x: 0;
  --transform-scale-y: 0;
}

.active\:scale-50:active{
  --transform-scale-x: .5;
  --transform-scale-y: .5;
}

.active\:scale-75:active{
  --transform-scale-x: .75;
  --transform-scale-y: .75;
}

.active\:scale-90:active{
  --transform-scale-x: .9;
  --transform-scale-y: .9;
}

.active\:scale-95:active{
  --transform-scale-x: .95;
  --transform-scale-y: .95;
}

.active\:scale-100:active{
  --transform-scale-x: 1;
  --transform-scale-y: 1;
}

.active\:scale-105:active{
  --transform-scale-x: 1.05;
  --transform-scale-y: 1.05;
}

.active\:scale-110:active{
  --transform-scale-x: 1.1;
  --transform-scale-y: 1.1;
}

.active\:scale-125:active{
  --transform-scale-x: 1.25;
  --transform-scale-y: 1.25;
}

.active\:scale-150:active{
  --transform-scale-x: 1.5;
  --transform-scale-y: 1.5;
}

.active\:scale-x-0:active{
  --transform-scale-x: 0;
}

.active\:scale-x-50:active{
  --transform-scale-x: .5;
}

.active\:scale-x-75:active{
  --transform-scale-x: .75;
}

.active\:scale-x-90:active{
  --transform-scale-x: .9;
}

.active\:scale-x-95:active{
  --transform-scale-x: .95;
}

.active\:scale-x-100:active{
  --transform-scale-x: 1;
}

.active\:scale-x-105:active{
  --transform-scale-x: 1.05;
}

.active\:scale-x-110:active{
  --transform-scale-x: 1.1;
}

.active\:scale-x-125:active{
  --transform-scale-x: 1.25;
}

.active\:scale-x-150:active{
  --transform-scale-x: 1.5;
}

.active\:scale-y-0:active{
  --transform-scale-y: 0;
}

.active\:scale-y-50:active{
  --transform-scale-y: .5;
}

.active\:scale-y-75:active{
  --transform-scale-y: .75;
}

.active\:scale-y-90:active{
  --transform-scale-y: .9;
}

.active\:scale-y-95:active{
  --transform-scale-y: .95;
}

.active\:scale-y-100:active{
  --transform-scale-y: 1;
}

.active\:scale-y-105:active{
  --transform-scale-y: 1.05;
}

.active\:scale-y-110:active{
  --transform-scale-y: 1.1;
}

.active\:scale-y-125:active{
  --transform-scale-y: 1.25;
}

.active\:scale-y-150:active{
  --transform-scale-y: 1.5;
}

.first\:scale-0:first-child{
  --transform-scale-x: 0;
  --transform-scale-y: 0;
}

.first\:scale-50:first-child{
  --transform-scale-x: .5;
  --transform-scale-y: .5;
}

.first\:scale-75:first-child{
  --transform-scale-x: .75;
  --transform-scale-y: .75;
}

.first\:scale-90:first-child{
  --transform-scale-x: .9;
  --transform-scale-y: .9;
}

.first\:scale-95:first-child{
  --transform-scale-x: .95;
  --transform-scale-y: .95;
}

.first\:scale-100:first-child{
  --transform-scale-x: 1;
  --transform-scale-y: 1;
}

.first\:scale-105:first-child{
  --transform-scale-x: 1.05;
  --transform-scale-y: 1.05;
}

.first\:scale-110:first-child{
  --transform-scale-x: 1.1;
  --transform-scale-y: 1.1;
}

.first\:scale-125:first-child{
  --transform-scale-x: 1.25;
  --transform-scale-y: 1.25;
}

.first\:scale-150:first-child{
  --transform-scale-x: 1.5;
  --transform-scale-y: 1.5;
}

.first\:scale-x-0:first-child{
  --transform-scale-x: 0;
}

.first\:scale-x-50:first-child{
  --transform-scale-x: .5;
}

.first\:scale-x-75:first-child{
  --transform-scale-x: .75;
}

.first\:scale-x-90:first-child{
  --transform-scale-x: .9;
}

.first\:scale-x-95:first-child{
  --transform-scale-x: .95;
}

.first\:scale-x-100:first-child{
  --transform-scale-x: 1;
}

.first\:scale-x-105:first-child{
  --transform-scale-x: 1.05;
}

.first\:scale-x-110:first-child{
  --transform-scale-x: 1.1;
}

.first\:scale-x-125:first-child{
  --transform-scale-x: 1.25;
}

.first\:scale-x-150:first-child{
  --transform-scale-x: 1.5;
}

.first\:scale-y-0:first-child{
  --transform-scale-y: 0;
}

.first\:scale-y-50:first-child{
  --transform-scale-y: .5;
}

.first\:scale-y-75:first-child{
  --transform-scale-y: .75;
}

.first\:scale-y-90:first-child{
  --transform-scale-y: .9;
}

.first\:scale-y-95:first-child{
  --transform-scale-y: .95;
}

.first\:scale-y-100:first-child{
  --transform-scale-y: 1;
}

.first\:scale-y-105:first-child{
  --transform-scale-y: 1.05;
}

.first\:scale-y-110:first-child{
  --transform-scale-y: 1.1;
}

.first\:scale-y-125:first-child{
  --transform-scale-y: 1.25;
}

.first\:scale-y-150:first-child{
  --transform-scale-y: 1.5;
}

.last\:scale-0:last-child{
  --transform-scale-x: 0;
  --transform-scale-y: 0;
}

.last\:scale-50:last-child{
  --transform-scale-x: .5;
  --transform-scale-y: .5;
}

.last\:scale-75:last-child{
  --transform-scale-x: .75;
  --transform-scale-y: .75;
}

.last\:scale-90:last-child{
  --transform-scale-x: .9;
  --transform-scale-y: .9;
}

.last\:scale-95:last-child{
  --transform-scale-x: .95;
  --transform-scale-y: .95;
}

.last\:scale-100:last-child{
  --transform-scale-x: 1;
  --transform-scale-y: 1;
}

.last\:scale-105:last-child{
  --transform-scale-x: 1.05;
  --transform-scale-y: 1.05;
}

.last\:scale-110:last-child{
  --transform-scale-x: 1.1;
  --transform-scale-y: 1.1;
}

.last\:scale-125:last-child{
  --transform-scale-x: 1.25;
  --transform-scale-y: 1.25;
}

.last\:scale-150:last-child{
  --transform-scale-x: 1.5;
  --transform-scale-y: 1.5;
}

.last\:scale-x-0:last-child{
  --transform-scale-x: 0;
}

.last\:scale-x-50:last-child{
  --transform-scale-x: .5;
}

.last\:scale-x-75:last-child{
  --transform-scale-x: .75;
}

.last\:scale-x-90:last-child{
  --transform-scale-x: .9;
}

.last\:scale-x-95:last-child{
  --transform-scale-x: .95;
}

.last\:scale-x-100:last-child{
  --transform-scale-x: 1;
}

.last\:scale-x-105:last-child{
  --transform-scale-x: 1.05;
}

.last\:scale-x-110:last-child{
  --transform-scale-x: 1.1;
}

.last\:scale-x-125:last-child{
  --transform-scale-x: 1.25;
}

.last\:scale-x-150:last-child{
  --transform-scale-x: 1.5;
}

.last\:scale-y-0:last-child{
  --transform-scale-y: 0;
}

.last\:scale-y-50:last-child{
  --transform-scale-y: .5;
}

.last\:scale-y-75:last-child{
  --transform-scale-y: .75;
}

.last\:scale-y-90:last-child{
  --transform-scale-y: .9;
}

.last\:scale-y-95:last-child{
  --transform-scale-y: .95;
}

.last\:scale-y-100:last-child{
  --transform-scale-y: 1;
}

.last\:scale-y-105:last-child{
  --transform-scale-y: 1.05;
}

.last\:scale-y-110:last-child{
  --transform-scale-y: 1.1;
}

.last\:scale-y-125:last-child{
  --transform-scale-y: 1.25;
}

.last\:scale-y-150:last-child{
  --transform-scale-y: 1.5;
}

.rotate-0{
  --transform-rotate: 0;
}

.rotate-45{
  --transform-rotate: 45deg;
}

.rotate-90{
  --transform-rotate: 90deg;
}

.rotate-180{
  --transform-rotate: 180deg;
}

.-rotate-180{
  --transform-rotate: -180deg;
}

.-rotate-90{
  --transform-rotate: -90deg;
}

.-rotate-45{
  --transform-rotate: -45deg;
}

.hover\:rotate-0:hover{
  --transform-rotate: 0;
}

.hover\:rotate-45:hover{
  --transform-rotate: 45deg;
}

.hover\:rotate-90:hover{
  --transform-rotate: 90deg;
}

.hover\:rotate-180:hover{
  --transform-rotate: 180deg;
}

.hover\:-rotate-180:hover{
  --transform-rotate: -180deg;
}

.hover\:-rotate-90:hover{
  --transform-rotate: -90deg;
}

.hover\:-rotate-45:hover{
  --transform-rotate: -45deg;
}

.focus\:rotate-0:focus{
  --transform-rotate: 0;
}

.focus\:rotate-45:focus{
  --transform-rotate: 45deg;
}

.focus\:rotate-90:focus{
  --transform-rotate: 90deg;
}

.focus\:rotate-180:focus{
  --transform-rotate: 180deg;
}

.focus\:-rotate-180:focus{
  --transform-rotate: -180deg;
}

.focus\:-rotate-90:focus{
  --transform-rotate: -90deg;
}

.focus\:-rotate-45:focus{
  --transform-rotate: -45deg;
}

.active\:rotate-0:active{
  --transform-rotate: 0;
}

.active\:rotate-45:active{
  --transform-rotate: 45deg;
}

.active\:rotate-90:active{
  --transform-rotate: 90deg;
}

.active\:rotate-180:active{
  --transform-rotate: 180deg;
}

.active\:-rotate-180:active{
  --transform-rotate: -180deg;
}

.active\:-rotate-90:active{
  --transform-rotate: -90deg;
}

.active\:-rotate-45:active{
  --transform-rotate: -45deg;
}

.first\:rotate-0:first-child{
  --transform-rotate: 0;
}

.first\:rotate-45:first-child{
  --transform-rotate: 45deg;
}

.first\:rotate-90:first-child{
  --transform-rotate: 90deg;
}

.first\:rotate-180:first-child{
  --transform-rotate: 180deg;
}

.first\:-rotate-180:first-child{
  --transform-rotate: -180deg;
}

.first\:-rotate-90:first-child{
  --transform-rotate: -90deg;
}

.first\:-rotate-45:first-child{
  --transform-rotate: -45deg;
}

.last\:rotate-0:last-child{
  --transform-rotate: 0;
}

.last\:rotate-45:last-child{
  --transform-rotate: 45deg;
}

.last\:rotate-90:last-child{
  --transform-rotate: 90deg;
}

.last\:rotate-180:last-child{
  --transform-rotate: 180deg;
}

.last\:-rotate-180:last-child{
  --transform-rotate: -180deg;
}

.last\:-rotate-90:last-child{
  --transform-rotate: -90deg;
}

.last\:-rotate-45:last-child{
  --transform-rotate: -45deg;
}

.translate-x-0{
  --transform-translate-x: 0;
}

.translate-x-1{
  --transform-translate-x: 0.25rem;
}

.translate-x-2{
  --transform-translate-x: 0.5rem;
}

.translate-x-3{
  --transform-translate-x: 0.75rem;
}

.translate-x-4{
  --transform-translate-x: 1rem;
}

.translate-x-5{
  --transform-translate-x: 1.25rem;
}

.translate-x-6{
  --transform-translate-x: 1.5rem;
}

.translate-x-8{
  --transform-translate-x: 2rem;
}

.translate-x-10{
  --transform-translate-x: 2.5rem;
}

.translate-x-12{
  --transform-translate-x: 3rem;
}

.translate-x-14{
  --transform-translate-x: 3.5rem;
}

.translate-x-16{
  --transform-translate-x: 4rem;
}

.translate-x-20{
  --transform-translate-x: 5rem;
}

.translate-x-24{
  --transform-translate-x: 6rem;
}

.translate-x-32{
  --transform-translate-x: 8rem;
}

.translate-x-40{
  --transform-translate-x: 10rem;
}

.translate-x-48{
  --transform-translate-x: 12rem;
}

.translate-x-56{
  --transform-translate-x: 14rem;
}

.translate-x-64{
  --transform-translate-x: 16rem;
}

.translate-x-px{
  --transform-translate-x: 1px;
}

.-translate-x-1{
  --transform-translate-x: -0.25rem;
}

.-translate-x-2{
  --transform-translate-x: -0.5rem;
}

.-translate-x-3{
  --transform-translate-x: -0.75rem;
}

.-translate-x-4{
  --transform-translate-x: -1rem;
}

.-translate-x-5{
  --transform-translate-x: -1.25rem;
}

.-translate-x-6{
  --transform-translate-x: -1.5rem;
}

.-translate-x-8{
  --transform-translate-x: -2rem;
}

.-translate-x-10{
  --transform-translate-x: -2.5rem;
}

.-translate-x-12{
  --transform-translate-x: -3rem;
}

.-translate-x-14{
  --transform-translate-x: -3.5rem;
}

.-translate-x-16{
  --transform-translate-x: -4rem;
}

.-translate-x-20{
  --transform-translate-x: -5rem;
}

.-translate-x-24{
  --transform-translate-x: -6rem;
}

.-translate-x-32{
  --transform-translate-x: -8rem;
}

.-translate-x-40{
  --transform-translate-x: -10rem;
}

.-translate-x-48{
  --transform-translate-x: -12rem;
}

.-translate-x-56{
  --transform-translate-x: -14rem;
}

.-translate-x-64{
  --transform-translate-x: -16rem;
}

.-translate-x-px{
  --transform-translate-x: -1px;
}

.-translate-x-full{
  --transform-translate-x: -100%;
}

.-translate-x-1\/2{
  --transform-translate-x: -50%;
}

.translate-x-1\/2{
  --transform-translate-x: 50%;
}

.translate-x-full{
  --transform-translate-x: 100%;
}

.translate-y-0{
  --transform-translate-y: 0;
}

.translate-y-1{
  --transform-translate-y: 0.25rem;
}

.translate-y-2{
  --transform-translate-y: 0.5rem;
}

.translate-y-3{
  --transform-translate-y: 0.75rem;
}

.translate-y-4{
  --transform-translate-y: 1rem;
}

.translate-y-5{
  --transform-translate-y: 1.25rem;
}

.translate-y-6{
  --transform-translate-y: 1.5rem;
}

.translate-y-8{
  --transform-translate-y: 2rem;
}

.translate-y-10{
  --transform-translate-y: 2.5rem;
}

.translate-y-12{
  --transform-translate-y: 3rem;
}

.translate-y-14{
  --transform-translate-y: 3.5rem;
}

.translate-y-16{
  --transform-translate-y: 4rem;
}

.translate-y-20{
  --transform-translate-y: 5rem;
}

.translate-y-24{
  --transform-translate-y: 6rem;
}

.translate-y-32{
  --transform-translate-y: 8rem;
}

.translate-y-40{
  --transform-translate-y: 10rem;
}

.translate-y-48{
  --transform-translate-y: 12rem;
}

.translate-y-56{
  --transform-translate-y: 14rem;
}

.translate-y-64{
  --transform-translate-y: 16rem;
}

.translate-y-px{
  --transform-translate-y: 1px;
}

.-translate-y-1{
  --transform-translate-y: -0.25rem;
}

.-translate-y-2{
  --transform-translate-y: -0.5rem;
}

.-translate-y-3{
  --transform-translate-y: -0.75rem;
}

.-translate-y-4{
  --transform-translate-y: -1rem;
}

.-translate-y-5{
  --transform-translate-y: -1.25rem;
}

.-translate-y-6{
  --transform-translate-y: -1.5rem;
}

.-translate-y-8{
  --transform-translate-y: -2rem;
}

.-translate-y-10{
  --transform-translate-y: -2.5rem;
}

.-translate-y-12{
  --transform-translate-y: -3rem;
}

.-translate-y-14{
  --transform-translate-y: -3.5rem;
}

.-translate-y-16{
  --transform-translate-y: -4rem;
}

.-translate-y-20{
  --transform-translate-y: -5rem;
}

.-translate-y-24{
  --transform-translate-y: -6rem;
}

.-translate-y-32{
  --transform-translate-y: -8rem;
}

.-translate-y-40{
  --transform-translate-y: -10rem;
}

.-translate-y-48{
  --transform-translate-y: -12rem;
}

.-translate-y-56{
  --transform-translate-y: -14rem;
}

.-translate-y-64{
  --transform-translate-y: -16rem;
}

.-translate-y-px{
  --transform-translate-y: -1px;
}

.-translate-y-full{
  --transform-translate-y: -100%;
}

.-translate-y-1\/2{
  --transform-translate-y: -50%;
}

.translate-y-1\/2{
  --transform-translate-y: 50%;
}

.translate-y-full{
  --transform-translate-y: 100%;
}

.hover\:translate-x-0:hover{
  --transform-translate-x: 0;
}

.hover\:translate-x-1:hover{
  --transform-translate-x: 0.25rem;
}

.hover\:translate-x-2:hover{
  --transform-translate-x: 0.5rem;
}

.hover\:translate-x-3:hover{
  --transform-translate-x: 0.75rem;
}

.hover\:translate-x-4:hover{
  --transform-translate-x: 1rem;
}

.hover\:translate-x-5:hover{
  --transform-translate-x: 1.25rem;
}

.hover\:translate-x-6:hover{
  --transform-translate-x: 1.5rem;
}

.hover\:translate-x-8:hover{
  --transform-translate-x: 2rem;
}

.hover\:translate-x-10:hover{
  --transform-translate-x: 2.5rem;
}

.hover\:translate-x-12:hover{
  --transform-translate-x: 3rem;
}

.hover\:translate-x-14:hover{
  --transform-translate-x: 3.5rem;
}

.hover\:translate-x-16:hover{
  --transform-translate-x: 4rem;
}

.hover\:translate-x-20:hover{
  --transform-translate-x: 5rem;
}

.hover\:translate-x-24:hover{
  --transform-translate-x: 6rem;
}

.hover\:translate-x-32:hover{
  --transform-translate-x: 8rem;
}

.hover\:translate-x-40:hover{
  --transform-translate-x: 10rem;
}

.hover\:translate-x-48:hover{
  --transform-translate-x: 12rem;
}

.hover\:translate-x-56:hover{
  --transform-translate-x: 14rem;
}

.hover\:translate-x-64:hover{
  --transform-translate-x: 16rem;
}

.hover\:translate-x-px:hover{
  --transform-translate-x: 1px;
}

.hover\:-translate-x-1:hover{
  --transform-translate-x: -0.25rem;
}

.hover\:-translate-x-2:hover{
  --transform-translate-x: -0.5rem;
}

.hover\:-translate-x-3:hover{
  --transform-translate-x: -0.75rem;
}

.hover\:-translate-x-4:hover{
  --transform-translate-x: -1rem;
}

.hover\:-translate-x-5:hover{
  --transform-translate-x: -1.25rem;
}

.hover\:-translate-x-6:hover{
  --transform-translate-x: -1.5rem;
}

.hover\:-translate-x-8:hover{
  --transform-translate-x: -2rem;
}

.hover\:-translate-x-10:hover{
  --transform-translate-x: -2.5rem;
}

.hover\:-translate-x-12:hover{
  --transform-translate-x: -3rem;
}

.hover\:-translate-x-14:hover{
  --transform-translate-x: -3.5rem;
}

.hover\:-translate-x-16:hover{
  --transform-translate-x: -4rem;
}

.hover\:-translate-x-20:hover{
  --transform-translate-x: -5rem;
}

.hover\:-translate-x-24:hover{
  --transform-translate-x: -6rem;
}

.hover\:-translate-x-32:hover{
  --transform-translate-x: -8rem;
}

.hover\:-translate-x-40:hover{
  --transform-translate-x: -10rem;
}

.hover\:-translate-x-48:hover{
  --transform-translate-x: -12rem;
}

.hover\:-translate-x-56:hover{
  --transform-translate-x: -14rem;
}

.hover\:-translate-x-64:hover{
  --transform-translate-x: -16rem;
}

.hover\:-translate-x-px:hover{
  --transform-translate-x: -1px;
}

.hover\:-translate-x-full:hover{
  --transform-translate-x: -100%;
}

.hover\:-translate-x-1\/2:hover{
  --transform-translate-x: -50%;
}

.hover\:translate-x-1\/2:hover{
  --transform-translate-x: 50%;
}

.hover\:translate-x-full:hover{
  --transform-translate-x: 100%;
}

.hover\:translate-y-0:hover{
  --transform-translate-y: 0;
}

.hover\:translate-y-1:hover{
  --transform-translate-y: 0.25rem;
}

.hover\:translate-y-2:hover{
  --transform-translate-y: 0.5rem;
}

.hover\:translate-y-3:hover{
  --transform-translate-y: 0.75rem;
}

.hover\:translate-y-4:hover{
  --transform-translate-y: 1rem;
}

.hover\:translate-y-5:hover{
  --transform-translate-y: 1.25rem;
}

.hover\:translate-y-6:hover{
  --transform-translate-y: 1.5rem;
}

.hover\:translate-y-8:hover{
  --transform-translate-y: 2rem;
}

.hover\:translate-y-10:hover{
  --transform-translate-y: 2.5rem;
}

.hover\:translate-y-12:hover{
  --transform-translate-y: 3rem;
}

.hover\:translate-y-14:hover{
  --transform-translate-y: 3.5rem;
}

.hover\:translate-y-16:hover{
  --transform-translate-y: 4rem;
}

.hover\:translate-y-20:hover{
  --transform-translate-y: 5rem;
}

.hover\:translate-y-24:hover{
  --transform-translate-y: 6rem;
}

.hover\:translate-y-32:hover{
  --transform-translate-y: 8rem;
}

.hover\:translate-y-40:hover{
  --transform-translate-y: 10rem;
}

.hover\:translate-y-48:hover{
  --transform-translate-y: 12rem;
}

.hover\:translate-y-56:hover{
  --transform-translate-y: 14rem;
}

.hover\:translate-y-64:hover{
  --transform-translate-y: 16rem;
}

.hover\:translate-y-px:hover{
  --transform-translate-y: 1px;
}

.hover\:-translate-y-1:hover{
  --transform-translate-y: -0.25rem;
}

.hover\:-translate-y-2:hover{
  --transform-translate-y: -0.5rem;
}

.hover\:-translate-y-3:hover{
  --transform-translate-y: -0.75rem;
}

.hover\:-translate-y-4:hover{
  --transform-translate-y: -1rem;
}

.hover\:-translate-y-5:hover{
  --transform-translate-y: -1.25rem;
}

.hover\:-translate-y-6:hover{
  --transform-translate-y: -1.5rem;
}

.hover\:-translate-y-8:hover{
  --transform-translate-y: -2rem;
}

.hover\:-translate-y-10:hover{
  --transform-translate-y: -2.5rem;
}

.hover\:-translate-y-12:hover{
  --transform-translate-y: -3rem;
}

.hover\:-translate-y-14:hover{
  --transform-translate-y: -3.5rem;
}

.hover\:-translate-y-16:hover{
  --transform-translate-y: -4rem;
}

.hover\:-translate-y-20:hover{
  --transform-translate-y: -5rem;
}

.hover\:-translate-y-24:hover{
  --transform-translate-y: -6rem;
}

.hover\:-translate-y-32:hover{
  --transform-translate-y: -8rem;
}

.hover\:-translate-y-40:hover{
  --transform-translate-y: -10rem;
}

.hover\:-translate-y-48:hover{
  --transform-translate-y: -12rem;
}

.hover\:-translate-y-56:hover{
  --transform-translate-y: -14rem;
}

.hover\:-translate-y-64:hover{
  --transform-translate-y: -16rem;
}

.hover\:-translate-y-px:hover{
  --transform-translate-y: -1px;
}

.hover\:-translate-y-full:hover{
  --transform-translate-y: -100%;
}

.hover\:-translate-y-1\/2:hover{
  --transform-translate-y: -50%;
}

.hover\:translate-y-1\/2:hover{
  --transform-translate-y: 50%;
}

.hover\:translate-y-full:hover{
  --transform-translate-y: 100%;
}

.focus\:translate-x-0:focus{
  --transform-translate-x: 0;
}

.focus\:translate-x-1:focus{
  --transform-translate-x: 0.25rem;
}

.focus\:translate-x-2:focus{
  --transform-translate-x: 0.5rem;
}

.focus\:translate-x-3:focus{
  --transform-translate-x: 0.75rem;
}

.focus\:translate-x-4:focus{
  --transform-translate-x: 1rem;
}

.focus\:translate-x-5:focus{
  --transform-translate-x: 1.25rem;
}

.focus\:translate-x-6:focus{
  --transform-translate-x: 1.5rem;
}

.focus\:translate-x-8:focus{
  --transform-translate-x: 2rem;
}

.focus\:translate-x-10:focus{
  --transform-translate-x: 2.5rem;
}

.focus\:translate-x-12:focus{
  --transform-translate-x: 3rem;
}

.focus\:translate-x-14:focus{
  --transform-translate-x: 3.5rem;
}

.focus\:translate-x-16:focus{
  --transform-translate-x: 4rem;
}

.focus\:translate-x-20:focus{
  --transform-translate-x: 5rem;
}

.focus\:translate-x-24:focus{
  --transform-translate-x: 6rem;
}

.focus\:translate-x-32:focus{
  --transform-translate-x: 8rem;
}

.focus\:translate-x-40:focus{
  --transform-translate-x: 10rem;
}

.focus\:translate-x-48:focus{
  --transform-translate-x: 12rem;
}

.focus\:translate-x-56:focus{
  --transform-translate-x: 14rem;
}

.focus\:translate-x-64:focus{
  --transform-translate-x: 16rem;
}

.focus\:translate-x-px:focus{
  --transform-translate-x: 1px;
}

.focus\:-translate-x-1:focus{
  --transform-translate-x: -0.25rem;
}

.focus\:-translate-x-2:focus{
  --transform-translate-x: -0.5rem;
}

.focus\:-translate-x-3:focus{
  --transform-translate-x: -0.75rem;
}

.focus\:-translate-x-4:focus{
  --transform-translate-x: -1rem;
}

.focus\:-translate-x-5:focus{
  --transform-translate-x: -1.25rem;
}

.focus\:-translate-x-6:focus{
  --transform-translate-x: -1.5rem;
}

.focus\:-translate-x-8:focus{
  --transform-translate-x: -2rem;
}

.focus\:-translate-x-10:focus{
  --transform-translate-x: -2.5rem;
}

.focus\:-translate-x-12:focus{
  --transform-translate-x: -3rem;
}

.focus\:-translate-x-14:focus{
  --transform-translate-x: -3.5rem;
}

.focus\:-translate-x-16:focus{
  --transform-translate-x: -4rem;
}

.focus\:-translate-x-20:focus{
  --transform-translate-x: -5rem;
}

.focus\:-translate-x-24:focus{
  --transform-translate-x: -6rem;
}

.focus\:-translate-x-32:focus{
  --transform-translate-x: -8rem;
}

.focus\:-translate-x-40:focus{
  --transform-translate-x: -10rem;
}

.focus\:-translate-x-48:focus{
  --transform-translate-x: -12rem;
}

.focus\:-translate-x-56:focus{
  --transform-translate-x: -14rem;
}

.focus\:-translate-x-64:focus{
  --transform-translate-x: -16rem;
}

.focus\:-translate-x-px:focus{
  --transform-translate-x: -1px;
}

.focus\:-translate-x-full:focus{
  --transform-translate-x: -100%;
}

.focus\:-translate-x-1\/2:focus{
  --transform-translate-x: -50%;
}

.focus\:translate-x-1\/2:focus{
  --transform-translate-x: 50%;
}

.focus\:translate-x-full:focus{
  --transform-translate-x: 100%;
}

.focus\:translate-y-0:focus{
  --transform-translate-y: 0;
}

.focus\:translate-y-1:focus{
  --transform-translate-y: 0.25rem;
}

.focus\:translate-y-2:focus{
  --transform-translate-y: 0.5rem;
}

.focus\:translate-y-3:focus{
  --transform-translate-y: 0.75rem;
}

.focus\:translate-y-4:focus{
  --transform-translate-y: 1rem;
}

.focus\:translate-y-5:focus{
  --transform-translate-y: 1.25rem;
}

.focus\:translate-y-6:focus{
  --transform-translate-y: 1.5rem;
}

.focus\:translate-y-8:focus{
  --transform-translate-y: 2rem;
}

.focus\:translate-y-10:focus{
  --transform-translate-y: 2.5rem;
}

.focus\:translate-y-12:focus{
  --transform-translate-y: 3rem;
}

.focus\:translate-y-14:focus{
  --transform-translate-y: 3.5rem;
}

.focus\:translate-y-16:focus{
  --transform-translate-y: 4rem;
}

.focus\:translate-y-20:focus{
  --transform-translate-y: 5rem;
}

.focus\:translate-y-24:focus{
  --transform-translate-y: 6rem;
}

.focus\:translate-y-32:focus{
  --transform-translate-y: 8rem;
}

.focus\:translate-y-40:focus{
  --transform-translate-y: 10rem;
}

.focus\:translate-y-48:focus{
  --transform-translate-y: 12rem;
}

.focus\:translate-y-56:focus{
  --transform-translate-y: 14rem;
}

.focus\:translate-y-64:focus{
  --transform-translate-y: 16rem;
}

.focus\:translate-y-px:focus{
  --transform-translate-y: 1px;
}

.focus\:-translate-y-1:focus{
  --transform-translate-y: -0.25rem;
}

.focus\:-translate-y-2:focus{
  --transform-translate-y: -0.5rem;
}

.focus\:-translate-y-3:focus{
  --transform-translate-y: -0.75rem;
}

.focus\:-translate-y-4:focus{
  --transform-translate-y: -1rem;
}

.focus\:-translate-y-5:focus{
  --transform-translate-y: -1.25rem;
}

.focus\:-translate-y-6:focus{
  --transform-translate-y: -1.5rem;
}

.focus\:-translate-y-8:focus{
  --transform-translate-y: -2rem;
}

.focus\:-translate-y-10:focus{
  --transform-translate-y: -2.5rem;
}

.focus\:-translate-y-12:focus{
  --transform-translate-y: -3rem;
}

.focus\:-translate-y-14:focus{
  --transform-translate-y: -3.5rem;
}

.focus\:-translate-y-16:focus{
  --transform-translate-y: -4rem;
}

.focus\:-translate-y-20:focus{
  --transform-translate-y: -5rem;
}

.focus\:-translate-y-24:focus{
  --transform-translate-y: -6rem;
}

.focus\:-translate-y-32:focus{
  --transform-translate-y: -8rem;
}

.focus\:-translate-y-40:focus{
  --transform-translate-y: -10rem;
}

.focus\:-translate-y-48:focus{
  --transform-translate-y: -12rem;
}

.focus\:-translate-y-56:focus{
  --transform-translate-y: -14rem;
}

.focus\:-translate-y-64:focus{
  --transform-translate-y: -16rem;
}

.focus\:-translate-y-px:focus{
  --transform-translate-y: -1px;
}

.focus\:-translate-y-full:focus{
  --transform-translate-y: -100%;
}

.focus\:-translate-y-1\/2:focus{
  --transform-translate-y: -50%;
}

.focus\:translate-y-1\/2:focus{
  --transform-translate-y: 50%;
}

.focus\:translate-y-full:focus{
  --transform-translate-y: 100%;
}

.active\:translate-x-0:active{
  --transform-translate-x: 0;
}

.active\:translate-x-1:active{
  --transform-translate-x: 0.25rem;
}

.active\:translate-x-2:active{
  --transform-translate-x: 0.5rem;
}

.active\:translate-x-3:active{
  --transform-translate-x: 0.75rem;
}

.active\:translate-x-4:active{
  --transform-translate-x: 1rem;
}

.active\:translate-x-5:active{
  --transform-translate-x: 1.25rem;
}

.active\:translate-x-6:active{
  --transform-translate-x: 1.5rem;
}

.active\:translate-x-8:active{
  --transform-translate-x: 2rem;
}

.active\:translate-x-10:active{
  --transform-translate-x: 2.5rem;
}

.active\:translate-x-12:active{
  --transform-translate-x: 3rem;
}

.active\:translate-x-14:active{
  --transform-translate-x: 3.5rem;
}

.active\:translate-x-16:active{
  --transform-translate-x: 4rem;
}

.active\:translate-x-20:active{
  --transform-translate-x: 5rem;
}

.active\:translate-x-24:active{
  --transform-translate-x: 6rem;
}

.active\:translate-x-32:active{
  --transform-translate-x: 8rem;
}

.active\:translate-x-40:active{
  --transform-translate-x: 10rem;
}

.active\:translate-x-48:active{
  --transform-translate-x: 12rem;
}

.active\:translate-x-56:active{
  --transform-translate-x: 14rem;
}

.active\:translate-x-64:active{
  --transform-translate-x: 16rem;
}

.active\:translate-x-px:active{
  --transform-translate-x: 1px;
}

.active\:-translate-x-1:active{
  --transform-translate-x: -0.25rem;
}

.active\:-translate-x-2:active{
  --transform-translate-x: -0.5rem;
}

.active\:-translate-x-3:active{
  --transform-translate-x: -0.75rem;
}

.active\:-translate-x-4:active{
  --transform-translate-x: -1rem;
}

.active\:-translate-x-5:active{
  --transform-translate-x: -1.25rem;
}

.active\:-translate-x-6:active{
  --transform-translate-x: -1.5rem;
}

.active\:-translate-x-8:active{
  --transform-translate-x: -2rem;
}

.active\:-translate-x-10:active{
  --transform-translate-x: -2.5rem;
}

.active\:-translate-x-12:active{
  --transform-translate-x: -3rem;
}

.active\:-translate-x-14:active{
  --transform-translate-x: -3.5rem;
}

.active\:-translate-x-16:active{
  --transform-translate-x: -4rem;
}

.active\:-translate-x-20:active{
  --transform-translate-x: -5rem;
}

.active\:-translate-x-24:active{
  --transform-translate-x: -6rem;
}

.active\:-translate-x-32:active{
  --transform-translate-x: -8rem;
}

.active\:-translate-x-40:active{
  --transform-translate-x: -10rem;
}

.active\:-translate-x-48:active{
  --transform-translate-x: -12rem;
}

.active\:-translate-x-56:active{
  --transform-translate-x: -14rem;
}

.active\:-translate-x-64:active{
  --transform-translate-x: -16rem;
}

.active\:-translate-x-px:active{
  --transform-translate-x: -1px;
}

.active\:-translate-x-full:active{
  --transform-translate-x: -100%;
}

.active\:-translate-x-1\/2:active{
  --transform-translate-x: -50%;
}

.active\:translate-x-1\/2:active{
  --transform-translate-x: 50%;
}

.active\:translate-x-full:active{
  --transform-translate-x: 100%;
}

.active\:translate-y-0:active{
  --transform-translate-y: 0;
}

.active\:translate-y-1:active{
  --transform-translate-y: 0.25rem;
}

.active\:translate-y-2:active{
  --transform-translate-y: 0.5rem;
}

.active\:translate-y-3:active{
  --transform-translate-y: 0.75rem;
}

.active\:translate-y-4:active{
  --transform-translate-y: 1rem;
}

.active\:translate-y-5:active{
  --transform-translate-y: 1.25rem;
}

.active\:translate-y-6:active{
  --transform-translate-y: 1.5rem;
}

.active\:translate-y-8:active{
  --transform-translate-y: 2rem;
}

.active\:translate-y-10:active{
  --transform-translate-y: 2.5rem;
}

.active\:translate-y-12:active{
  --transform-translate-y: 3rem;
}

.active\:translate-y-14:active{
  --transform-translate-y: 3.5rem;
}

.active\:translate-y-16:active{
  --transform-translate-y: 4rem;
}

.active\:translate-y-20:active{
  --transform-translate-y: 5rem;
}

.active\:translate-y-24:active{
  --transform-translate-y: 6rem;
}

.active\:translate-y-32:active{
  --transform-translate-y: 8rem;
}

.active\:translate-y-40:active{
  --transform-translate-y: 10rem;
}

.active\:translate-y-48:active{
  --transform-translate-y: 12rem;
}

.active\:translate-y-56:active{
  --transform-translate-y: 14rem;
}

.active\:translate-y-64:active{
  --transform-translate-y: 16rem;
}

.active\:translate-y-px:active{
  --transform-translate-y: 1px;
}

.active\:-translate-y-1:active{
  --transform-translate-y: -0.25rem;
}

.active\:-translate-y-2:active{
  --transform-translate-y: -0.5rem;
}

.active\:-translate-y-3:active{
  --transform-translate-y: -0.75rem;
}

.active\:-translate-y-4:active{
  --transform-translate-y: -1rem;
}

.active\:-translate-y-5:active{
  --transform-translate-y: -1.25rem;
}

.active\:-translate-y-6:active{
  --transform-translate-y: -1.5rem;
}

.active\:-translate-y-8:active{
  --transform-translate-y: -2rem;
}

.active\:-translate-y-10:active{
  --transform-translate-y: -2.5rem;
}

.active\:-translate-y-12:active{
  --transform-translate-y: -3rem;
}

.active\:-translate-y-14:active{
  --transform-translate-y: -3.5rem;
}

.active\:-translate-y-16:active{
  --transform-translate-y: -4rem;
}

.active\:-translate-y-20:active{
  --transform-translate-y: -5rem;
}

.active\:-translate-y-24:active{
  --transform-translate-y: -6rem;
}

.active\:-translate-y-32:active{
  --transform-translate-y: -8rem;
}

.active\:-translate-y-40:active{
  --transform-translate-y: -10rem;
}

.active\:-translate-y-48:active{
  --transform-translate-y: -12rem;
}

.active\:-translate-y-56:active{
  --transform-translate-y: -14rem;
}

.active\:-translate-y-64:active{
  --transform-translate-y: -16rem;
}

.active\:-translate-y-px:active{
  --transform-translate-y: -1px;
}

.active\:-translate-y-full:active{
  --transform-translate-y: -100%;
}

.active\:-translate-y-1\/2:active{
  --transform-translate-y: -50%;
}

.active\:translate-y-1\/2:active{
  --transform-translate-y: 50%;
}

.active\:translate-y-full:active{
  --transform-translate-y: 100%;
}

.first\:translate-x-0:first-child{
  --transform-translate-x: 0;
}

.first\:translate-x-1:first-child{
  --transform-translate-x: 0.25rem;
}

.first\:translate-x-2:first-child{
  --transform-translate-x: 0.5rem;
}

.first\:translate-x-3:first-child{
  --transform-translate-x: 0.75rem;
}

.first\:translate-x-4:first-child{
  --transform-translate-x: 1rem;
}

.first\:translate-x-5:first-child{
  --transform-translate-x: 1.25rem;
}

.first\:translate-x-6:first-child{
  --transform-translate-x: 1.5rem;
}

.first\:translate-x-8:first-child{
  --transform-translate-x: 2rem;
}

.first\:translate-x-10:first-child{
  --transform-translate-x: 2.5rem;
}

.first\:translate-x-12:first-child{
  --transform-translate-x: 3rem;
}

.first\:translate-x-14:first-child{
  --transform-translate-x: 3.5rem;
}

.first\:translate-x-16:first-child{
  --transform-translate-x: 4rem;
}

.first\:translate-x-20:first-child{
  --transform-translate-x: 5rem;
}

.first\:translate-x-24:first-child{
  --transform-translate-x: 6rem;
}

.first\:translate-x-32:first-child{
  --transform-translate-x: 8rem;
}

.first\:translate-x-40:first-child{
  --transform-translate-x: 10rem;
}

.first\:translate-x-48:first-child{
  --transform-translate-x: 12rem;
}

.first\:translate-x-56:first-child{
  --transform-translate-x: 14rem;
}

.first\:translate-x-64:first-child{
  --transform-translate-x: 16rem;
}

.first\:translate-x-px:first-child{
  --transform-translate-x: 1px;
}

.first\:-translate-x-1:first-child{
  --transform-translate-x: -0.25rem;
}

.first\:-translate-x-2:first-child{
  --transform-translate-x: -0.5rem;
}

.first\:-translate-x-3:first-child{
  --transform-translate-x: -0.75rem;
}

.first\:-translate-x-4:first-child{
  --transform-translate-x: -1rem;
}

.first\:-translate-x-5:first-child{
  --transform-translate-x: -1.25rem;
}

.first\:-translate-x-6:first-child{
  --transform-translate-x: -1.5rem;
}

.first\:-translate-x-8:first-child{
  --transform-translate-x: -2rem;
}

.first\:-translate-x-10:first-child{
  --transform-translate-x: -2.5rem;
}

.first\:-translate-x-12:first-child{
  --transform-translate-x: -3rem;
}

.first\:-translate-x-14:first-child{
  --transform-translate-x: -3.5rem;
}

.first\:-translate-x-16:first-child{
  --transform-translate-x: -4rem;
}

.first\:-translate-x-20:first-child{
  --transform-translate-x: -5rem;
}

.first\:-translate-x-24:first-child{
  --transform-translate-x: -6rem;
}

.first\:-translate-x-32:first-child{
  --transform-translate-x: -8rem;
}

.first\:-translate-x-40:first-child{
  --transform-translate-x: -10rem;
}

.first\:-translate-x-48:first-child{
  --transform-translate-x: -12rem;
}

.first\:-translate-x-56:first-child{
  --transform-translate-x: -14rem;
}

.first\:-translate-x-64:first-child{
  --transform-translate-x: -16rem;
}

.first\:-translate-x-px:first-child{
  --transform-translate-x: -1px;
}

.first\:-translate-x-full:first-child{
  --transform-translate-x: -100%;
}

.first\:-translate-x-1\/2:first-child{
  --transform-translate-x: -50%;
}

.first\:translate-x-1\/2:first-child{
  --transform-translate-x: 50%;
}

.first\:translate-x-full:first-child{
  --transform-translate-x: 100%;
}

.first\:translate-y-0:first-child{
  --transform-translate-y: 0;
}

.first\:translate-y-1:first-child{
  --transform-translate-y: 0.25rem;
}

.first\:translate-y-2:first-child{
  --transform-translate-y: 0.5rem;
}

.first\:translate-y-3:first-child{
  --transform-translate-y: 0.75rem;
}

.first\:translate-y-4:first-child{
  --transform-translate-y: 1rem;
}

.first\:translate-y-5:first-child{
  --transform-translate-y: 1.25rem;
}

.first\:translate-y-6:first-child{
  --transform-translate-y: 1.5rem;
}

.first\:translate-y-8:first-child{
  --transform-translate-y: 2rem;
}

.first\:translate-y-10:first-child{
  --transform-translate-y: 2.5rem;
}

.first\:translate-y-12:first-child{
  --transform-translate-y: 3rem;
}

.first\:translate-y-14:first-child{
  --transform-translate-y: 3.5rem;
}

.first\:translate-y-16:first-child{
  --transform-translate-y: 4rem;
}

.first\:translate-y-20:first-child{
  --transform-translate-y: 5rem;
}

.first\:translate-y-24:first-child{
  --transform-translate-y: 6rem;
}

.first\:translate-y-32:first-child{
  --transform-translate-y: 8rem;
}

.first\:translate-y-40:first-child{
  --transform-translate-y: 10rem;
}

.first\:translate-y-48:first-child{
  --transform-translate-y: 12rem;
}

.first\:translate-y-56:first-child{
  --transform-translate-y: 14rem;
}

.first\:translate-y-64:first-child{
  --transform-translate-y: 16rem;
}

.first\:translate-y-px:first-child{
  --transform-translate-y: 1px;
}

.first\:-translate-y-1:first-child{
  --transform-translate-y: -0.25rem;
}

.first\:-translate-y-2:first-child{
  --transform-translate-y: -0.5rem;
}

.first\:-translate-y-3:first-child{
  --transform-translate-y: -0.75rem;
}

.first\:-translate-y-4:first-child{
  --transform-translate-y: -1rem;
}

.first\:-translate-y-5:first-child{
  --transform-translate-y: -1.25rem;
}

.first\:-translate-y-6:first-child{
  --transform-translate-y: -1.5rem;
}

.first\:-translate-y-8:first-child{
  --transform-translate-y: -2rem;
}

.first\:-translate-y-10:first-child{
  --transform-translate-y: -2.5rem;
}

.first\:-translate-y-12:first-child{
  --transform-translate-y: -3rem;
}

.first\:-translate-y-14:first-child{
  --transform-translate-y: -3.5rem;
}

.first\:-translate-y-16:first-child{
  --transform-translate-y: -4rem;
}

.first\:-translate-y-20:first-child{
  --transform-translate-y: -5rem;
}

.first\:-translate-y-24:first-child{
  --transform-translate-y: -6rem;
}

.first\:-translate-y-32:first-child{
  --transform-translate-y: -8rem;
}

.first\:-translate-y-40:first-child{
  --transform-translate-y: -10rem;
}

.first\:-translate-y-48:first-child{
  --transform-translate-y: -12rem;
}

.first\:-translate-y-56:first-child{
  --transform-translate-y: -14rem;
}

.first\:-translate-y-64:first-child{
  --transform-translate-y: -16rem;
}

.first\:-translate-y-px:first-child{
  --transform-translate-y: -1px;
}

.first\:-translate-y-full:first-child{
  --transform-translate-y: -100%;
}

.first\:-translate-y-1\/2:first-child{
  --transform-translate-y: -50%;
}

.first\:translate-y-1\/2:first-child{
  --transform-translate-y: 50%;
}

.first\:translate-y-full:first-child{
  --transform-translate-y: 100%;
}

.last\:translate-x-0:last-child{
  --transform-translate-x: 0;
}

.last\:translate-x-1:last-child{
  --transform-translate-x: 0.25rem;
}

.last\:translate-x-2:last-child{
  --transform-translate-x: 0.5rem;
}

.last\:translate-x-3:last-child{
  --transform-translate-x: 0.75rem;
}

.last\:translate-x-4:last-child{
  --transform-translate-x: 1rem;
}

.last\:translate-x-5:last-child{
  --transform-translate-x: 1.25rem;
}

.last\:translate-x-6:last-child{
  --transform-translate-x: 1.5rem;
}

.last\:translate-x-8:last-child{
  --transform-translate-x: 2rem;
}

.last\:translate-x-10:last-child{
  --transform-translate-x: 2.5rem;
}

.last\:translate-x-12:last-child{
  --transform-translate-x: 3rem;
}

.last\:translate-x-14:last-child{
  --transform-translate-x: 3.5rem;
}

.last\:translate-x-16:last-child{
  --transform-translate-x: 4rem;
}

.last\:translate-x-20:last-child{
  --transform-translate-x: 5rem;
}

.last\:translate-x-24:last-child{
  --transform-translate-x: 6rem;
}

.last\:translate-x-32:last-child{
  --transform-translate-x: 8rem;
}

.last\:translate-x-40:last-child{
  --transform-translate-x: 10rem;
}

.last\:translate-x-48:last-child{
  --transform-translate-x: 12rem;
}

.last\:translate-x-56:last-child{
  --transform-translate-x: 14rem;
}

.last\:translate-x-64:last-child{
  --transform-translate-x: 16rem;
}

.last\:translate-x-px:last-child{
  --transform-translate-x: 1px;
}

.last\:-translate-x-1:last-child{
  --transform-translate-x: -0.25rem;
}

.last\:-translate-x-2:last-child{
  --transform-translate-x: -0.5rem;
}

.last\:-translate-x-3:last-child{
  --transform-translate-x: -0.75rem;
}

.last\:-translate-x-4:last-child{
  --transform-translate-x: -1rem;
}

.last\:-translate-x-5:last-child{
  --transform-translate-x: -1.25rem;
}

.last\:-translate-x-6:last-child{
  --transform-translate-x: -1.5rem;
}

.last\:-translate-x-8:last-child{
  --transform-translate-x: -2rem;
}

.last\:-translate-x-10:last-child{
  --transform-translate-x: -2.5rem;
}

.last\:-translate-x-12:last-child{
  --transform-translate-x: -3rem;
}

.last\:-translate-x-14:last-child{
  --transform-translate-x: -3.5rem;
}

.last\:-translate-x-16:last-child{
  --transform-translate-x: -4rem;
}

.last\:-translate-x-20:last-child{
  --transform-translate-x: -5rem;
}

.last\:-translate-x-24:last-child{
  --transform-translate-x: -6rem;
}

.last\:-translate-x-32:last-child{
  --transform-translate-x: -8rem;
}

.last\:-translate-x-40:last-child{
  --transform-translate-x: -10rem;
}

.last\:-translate-x-48:last-child{
  --transform-translate-x: -12rem;
}

.last\:-translate-x-56:last-child{
  --transform-translate-x: -14rem;
}

.last\:-translate-x-64:last-child{
  --transform-translate-x: -16rem;
}

.last\:-translate-x-px:last-child{
  --transform-translate-x: -1px;
}

.last\:-translate-x-full:last-child{
  --transform-translate-x: -100%;
}

.last\:-translate-x-1\/2:last-child{
  --transform-translate-x: -50%;
}

.last\:translate-x-1\/2:last-child{
  --transform-translate-x: 50%;
}

.last\:translate-x-full:last-child{
  --transform-translate-x: 100%;
}

.last\:translate-y-0:last-child{
  --transform-translate-y: 0;
}

.last\:translate-y-1:last-child{
  --transform-translate-y: 0.25rem;
}

.last\:translate-y-2:last-child{
  --transform-translate-y: 0.5rem;
}

.last\:translate-y-3:last-child{
  --transform-translate-y: 0.75rem;
}

.last\:translate-y-4:last-child{
  --transform-translate-y: 1rem;
}

.last\:translate-y-5:last-child{
  --transform-translate-y: 1.25rem;
}

.last\:translate-y-6:last-child{
  --transform-translate-y: 1.5rem;
}

.last\:translate-y-8:last-child{
  --transform-translate-y: 2rem;
}

.last\:translate-y-10:last-child{
  --transform-translate-y: 2.5rem;
}

.last\:translate-y-12:last-child{
  --transform-translate-y: 3rem;
}

.last\:translate-y-14:last-child{
  --transform-translate-y: 3.5rem;
}

.last\:translate-y-16:last-child{
  --transform-translate-y: 4rem;
}

.last\:translate-y-20:last-child{
  --transform-translate-y: 5rem;
}

.last\:translate-y-24:last-child{
  --transform-translate-y: 6rem;
}

.last\:translate-y-32:last-child{
  --transform-translate-y: 8rem;
}

.last\:translate-y-40:last-child{
  --transform-translate-y: 10rem;
}

.last\:translate-y-48:last-child{
  --transform-translate-y: 12rem;
}

.last\:translate-y-56:last-child{
  --transform-translate-y: 14rem;
}

.last\:translate-y-64:last-child{
  --transform-translate-y: 16rem;
}

.last\:translate-y-px:last-child{
  --transform-translate-y: 1px;
}

.last\:-translate-y-1:last-child{
  --transform-translate-y: -0.25rem;
}

.last\:-translate-y-2:last-child{
  --transform-translate-y: -0.5rem;
}

.last\:-translate-y-3:last-child{
  --transform-translate-y: -0.75rem;
}

.last\:-translate-y-4:last-child{
  --transform-translate-y: -1rem;
}

.last\:-translate-y-5:last-child{
  --transform-translate-y: -1.25rem;
}

.last\:-translate-y-6:last-child{
  --transform-translate-y: -1.5rem;
}

.last\:-translate-y-8:last-child{
  --transform-translate-y: -2rem;
}

.last\:-translate-y-10:last-child{
  --transform-translate-y: -2.5rem;
}

.last\:-translate-y-12:last-child{
  --transform-translate-y: -3rem;
}

.last\:-translate-y-14:last-child{
  --transform-translate-y: -3.5rem;
}

.last\:-translate-y-16:last-child{
  --transform-translate-y: -4rem;
}

.last\:-translate-y-20:last-child{
  --transform-translate-y: -5rem;
}

.last\:-translate-y-24:last-child{
  --transform-translate-y: -6rem;
}

.last\:-translate-y-32:last-child{
  --transform-translate-y: -8rem;
}

.last\:-translate-y-40:last-child{
  --transform-translate-y: -10rem;
}

.last\:-translate-y-48:last-child{
  --transform-translate-y: -12rem;
}

.last\:-translate-y-56:last-child{
  --transform-translate-y: -14rem;
}

.last\:-translate-y-64:last-child{
  --transform-translate-y: -16rem;
}

.last\:-translate-y-px:last-child{
  --transform-translate-y: -1px;
}

.last\:-translate-y-full:last-child{
  --transform-translate-y: -100%;
}

.last\:-translate-y-1\/2:last-child{
  --transform-translate-y: -50%;
}

.last\:translate-y-1\/2:last-child{
  --transform-translate-y: 50%;
}

.last\:translate-y-full:last-child{
  --transform-translate-y: 100%;
}

.skew-x-0{
  --transform-skew-x: 0;
}

.skew-x-3{
  --transform-skew-x: 3deg;
}

.skew-x-6{
  --transform-skew-x: 6deg;
}

.skew-x-12{
  --transform-skew-x: 12deg;
}

.-skew-x-12{
  --transform-skew-x: -12deg;
}

.-skew-x-6{
  --transform-skew-x: -6deg;
}

.-skew-x-3{
  --transform-skew-x: -3deg;
}

.skew-y-0{
  --transform-skew-y: 0;
}

.skew-y-3{
  --transform-skew-y: 3deg;
}

.skew-y-6{
  --transform-skew-y: 6deg;
}

.skew-y-12{
  --transform-skew-y: 12deg;
}

.-skew-y-12{
  --transform-skew-y: -12deg;
}

.-skew-y-6{
  --transform-skew-y: -6deg;
}

.-skew-y-3{
  --transform-skew-y: -3deg;
}

.hover\:skew-x-0:hover{
  --transform-skew-x: 0;
}

.hover\:skew-x-3:hover{
  --transform-skew-x: 3deg;
}

.hover\:skew-x-6:hover{
  --transform-skew-x: 6deg;
}

.hover\:skew-x-12:hover{
  --transform-skew-x: 12deg;
}

.hover\:-skew-x-12:hover{
  --transform-skew-x: -12deg;
}

.hover\:-skew-x-6:hover{
  --transform-skew-x: -6deg;
}

.hover\:-skew-x-3:hover{
  --transform-skew-x: -3deg;
}

.hover\:skew-y-0:hover{
  --transform-skew-y: 0;
}

.hover\:skew-y-3:hover{
  --transform-skew-y: 3deg;
}

.hover\:skew-y-6:hover{
  --transform-skew-y: 6deg;
}

.hover\:skew-y-12:hover{
  --transform-skew-y: 12deg;
}

.hover\:-skew-y-12:hover{
  --transform-skew-y: -12deg;
}

.hover\:-skew-y-6:hover{
  --transform-skew-y: -6deg;
}

.hover\:-skew-y-3:hover{
  --transform-skew-y: -3deg;
}

.focus\:skew-x-0:focus{
  --transform-skew-x: 0;
}

.focus\:skew-x-3:focus{
  --transform-skew-x: 3deg;
}

.focus\:skew-x-6:focus{
  --transform-skew-x: 6deg;
}

.focus\:skew-x-12:focus{
  --transform-skew-x: 12deg;
}

.focus\:-skew-x-12:focus{
  --transform-skew-x: -12deg;
}

.focus\:-skew-x-6:focus{
  --transform-skew-x: -6deg;
}

.focus\:-skew-x-3:focus{
  --transform-skew-x: -3deg;
}

.focus\:skew-y-0:focus{
  --transform-skew-y: 0;
}

.focus\:skew-y-3:focus{
  --transform-skew-y: 3deg;
}

.focus\:skew-y-6:focus{
  --transform-skew-y: 6deg;
}

.focus\:skew-y-12:focus{
  --transform-skew-y: 12deg;
}

.focus\:-skew-y-12:focus{
  --transform-skew-y: -12deg;
}

.focus\:-skew-y-6:focus{
  --transform-skew-y: -6deg;
}

.focus\:-skew-y-3:focus{
  --transform-skew-y: -3deg;
}

.active\:skew-x-0:active{
  --transform-skew-x: 0;
}

.active\:skew-x-3:active{
  --transform-skew-x: 3deg;
}

.active\:skew-x-6:active{
  --transform-skew-x: 6deg;
}

.active\:skew-x-12:active{
  --transform-skew-x: 12deg;
}

.active\:-skew-x-12:active{
  --transform-skew-x: -12deg;
}

.active\:-skew-x-6:active{
  --transform-skew-x: -6deg;
}

.active\:-skew-x-3:active{
  --transform-skew-x: -3deg;
}

.active\:skew-y-0:active{
  --transform-skew-y: 0;
}

.active\:skew-y-3:active{
  --transform-skew-y: 3deg;
}

.active\:skew-y-6:active{
  --transform-skew-y: 6deg;
}

.active\:skew-y-12:active{
  --transform-skew-y: 12deg;
}

.active\:-skew-y-12:active{
  --transform-skew-y: -12deg;
}

.active\:-skew-y-6:active{
  --transform-skew-y: -6deg;
}

.active\:-skew-y-3:active{
  --transform-skew-y: -3deg;
}

.first\:skew-x-0:first-child{
  --transform-skew-x: 0;
}

.first\:skew-x-3:first-child{
  --transform-skew-x: 3deg;
}

.first\:skew-x-6:first-child{
  --transform-skew-x: 6deg;
}

.first\:skew-x-12:first-child{
  --transform-skew-x: 12deg;
}

.first\:-skew-x-12:first-child{
  --transform-skew-x: -12deg;
}

.first\:-skew-x-6:first-child{
  --transform-skew-x: -6deg;
}

.first\:-skew-x-3:first-child{
  --transform-skew-x: -3deg;
}

.first\:skew-y-0:first-child{
  --transform-skew-y: 0;
}

.first\:skew-y-3:first-child{
  --transform-skew-y: 3deg;
}

.first\:skew-y-6:first-child{
  --transform-skew-y: 6deg;
}

.first\:skew-y-12:first-child{
  --transform-skew-y: 12deg;
}

.first\:-skew-y-12:first-child{
  --transform-skew-y: -12deg;
}

.first\:-skew-y-6:first-child{
  --transform-skew-y: -6deg;
}

.first\:-skew-y-3:first-child{
  --transform-skew-y: -3deg;
}

.last\:skew-x-0:last-child{
  --transform-skew-x: 0;
}

.last\:skew-x-3:last-child{
  --transform-skew-x: 3deg;
}

.last\:skew-x-6:last-child{
  --transform-skew-x: 6deg;
}

.last\:skew-x-12:last-child{
  --transform-skew-x: 12deg;
}

.last\:-skew-x-12:last-child{
  --transform-skew-x: -12deg;
}

.last\:-skew-x-6:last-child{
  --transform-skew-x: -6deg;
}

.last\:-skew-x-3:last-child{
  --transform-skew-x: -3deg;
}

.last\:skew-y-0:last-child{
  --transform-skew-y: 0;
}

.last\:skew-y-3:last-child{
  --transform-skew-y: 3deg;
}

.last\:skew-y-6:last-child{
  --transform-skew-y: 6deg;
}

.last\:skew-y-12:last-child{
  --transform-skew-y: 12deg;
}

.last\:-skew-y-12:last-child{
  --transform-skew-y: -12deg;
}

.last\:-skew-y-6:last-child{
  --transform-skew-y: -6deg;
}

.last\:-skew-y-3:last-child{
  --transform-skew-y: -3deg;
}

.transition-none{
  transition-property: none;
}

.transition-all{
  transition-property: all;
}

.transition{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.transition-colors{
  transition-property: background-color, border-color, color, fill, stroke;
}

.transition-opacity{
  transition-property: opacity;
}

.transition-shadow{
  transition-property: box-shadow;
}

.transition-transform{
  transition-property: transform;
}

.hover\:transition-none:hover{
  transition-property: none;
}

.hover\:transition-all:hover{
  transition-property: all;
}

.hover\:transition:hover{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.hover\:transition-colors:hover{
  transition-property: background-color, border-color, color, fill, stroke;
}

.hover\:transition-opacity:hover{
  transition-property: opacity;
}

.hover\:transition-shadow:hover{
  transition-property: box-shadow;
}

.hover\:transition-transform:hover{
  transition-property: transform;
}

.focus\:transition-none:focus{
  transition-property: none;
}

.focus\:transition-all:focus{
  transition-property: all;
}

.focus\:transition:focus{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.focus\:transition-colors:focus{
  transition-property: background-color, border-color, color, fill, stroke;
}

.focus\:transition-opacity:focus{
  transition-property: opacity;
}

.focus\:transition-shadow:focus{
  transition-property: box-shadow;
}

.focus\:transition-transform:focus{
  transition-property: transform;
}

.active\:transition-none:active{
  transition-property: none;
}

.active\:transition-all:active{
  transition-property: all;
}

.active\:transition:active{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.active\:transition-colors:active{
  transition-property: background-color, border-color, color, fill, stroke;
}

.active\:transition-opacity:active{
  transition-property: opacity;
}

.active\:transition-shadow:active{
  transition-property: box-shadow;
}

.active\:transition-transform:active{
  transition-property: transform;
}

.first\:transition-none:first-child{
  transition-property: none;
}

.first\:transition-all:first-child{
  transition-property: all;
}

.first\:transition:first-child{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.first\:transition-colors:first-child{
  transition-property: background-color, border-color, color, fill, stroke;
}

.first\:transition-opacity:first-child{
  transition-property: opacity;
}

.first\:transition-shadow:first-child{
  transition-property: box-shadow;
}

.first\:transition-transform:first-child{
  transition-property: transform;
}

.last\:transition-none:last-child{
  transition-property: none;
}

.last\:transition-all:last-child{
  transition-property: all;
}

.last\:transition:last-child{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.last\:transition-colors:last-child{
  transition-property: background-color, border-color, color, fill, stroke;
}

.last\:transition-opacity:last-child{
  transition-property: opacity;
}

.last\:transition-shadow:last-child{
  transition-property: box-shadow;
}

.last\:transition-transform:last-child{
  transition-property: transform;
}

.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);
}

.hover\:ease-linear:hover{
  transition-timing-function: linear;
}

.hover\:ease-in:hover{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.hover\:ease-out:hover{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.hover\:ease-in-out:hover{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.focus\:ease-linear:focus{
  transition-timing-function: linear;
}

.focus\:ease-in:focus{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.focus\:ease-out:focus{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.focus\:ease-in-out:focus{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.active\:ease-linear:active{
  transition-timing-function: linear;
}

.active\:ease-in:active{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.active\:ease-out:active{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.active\:ease-in-out:active{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.first\:ease-linear:first-child{
  transition-timing-function: linear;
}

.first\:ease-in:first-child{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.first\:ease-out:first-child{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.first\:ease-in-out:first-child{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.last\:ease-linear:last-child{
  transition-timing-function: linear;
}

.last\:ease-in:last-child{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.last\:ease-out:last-child{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.last\:ease-in-out:last-child{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.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;
}

.hover\:duration-75:hover{
  transition-duration: 75ms;
}

.hover\:duration-100:hover{
  transition-duration: 100ms;
}

.hover\:duration-150:hover{
  transition-duration: 150ms;
}

.hover\:duration-200:hover{
  transition-duration: 200ms;
}

.hover\:duration-300:hover{
  transition-duration: 300ms;
}

.hover\:duration-500:hover{
  transition-duration: 500ms;
}

.hover\:duration-700:hover{
  transition-duration: 700ms;
}

.hover\:duration-1000:hover{
  transition-duration: 1000ms;
}

.focus\:duration-75:focus{
  transition-duration: 75ms;
}

.focus\:duration-100:focus{
  transition-duration: 100ms;
}

.focus\:duration-150:focus{
  transition-duration: 150ms;
}

.focus\:duration-200:focus{
  transition-duration: 200ms;
}

.focus\:duration-300:focus{
  transition-duration: 300ms;
}

.focus\:duration-500:focus{
  transition-duration: 500ms;
}

.focus\:duration-700:focus{
  transition-duration: 700ms;
}

.focus\:duration-1000:focus{
  transition-duration: 1000ms;
}

.active\:duration-75:active{
  transition-duration: 75ms;
}

.active\:duration-100:active{
  transition-duration: 100ms;
}

.active\:duration-150:active{
  transition-duration: 150ms;
}

.active\:duration-200:active{
  transition-duration: 200ms;
}

.active\:duration-300:active{
  transition-duration: 300ms;
}

.active\:duration-500:active{
  transition-duration: 500ms;
}

.active\:duration-700:active{
  transition-duration: 700ms;
}

.active\:duration-1000:active{
  transition-duration: 1000ms;
}

.first\:duration-75:first-child{
  transition-duration: 75ms;
}

.first\:duration-100:first-child{
  transition-duration: 100ms;
}

.first\:duration-150:first-child{
  transition-duration: 150ms;
}

.first\:duration-200:first-child{
  transition-duration: 200ms;
}

.first\:duration-300:first-child{
  transition-duration: 300ms;
}

.first\:duration-500:first-child{
  transition-duration: 500ms;
}

.first\:duration-700:first-child{
  transition-duration: 700ms;
}

.first\:duration-1000:first-child{
  transition-duration: 1000ms;
}

.last\:duration-75:last-child{
  transition-duration: 75ms;
}

.last\:duration-100:last-child{
  transition-duration: 100ms;
}

.last\:duration-150:last-child{
  transition-duration: 150ms;
}

.last\:duration-200:last-child{
  transition-duration: 200ms;
}

.last\:duration-300:last-child{
  transition-duration: 300ms;
}

.last\:duration-500:last-child{
  transition-duration: 500ms;
}

.last\:duration-700:last-child{
  transition-duration: 700ms;
}

.last\:duration-1000:last-child{
  transition-duration: 1000ms;
}

.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;
}

.hover\:delay-75:hover{
  transition-delay: 75ms;
}

.hover\:delay-100:hover{
  transition-delay: 100ms;
}

.hover\:delay-150:hover{
  transition-delay: 150ms;
}

.hover\:delay-200:hover{
  transition-delay: 200ms;
}

.hover\:delay-300:hover{
  transition-delay: 300ms;
}

.hover\:delay-500:hover{
  transition-delay: 500ms;
}

.hover\:delay-700:hover{
  transition-delay: 700ms;
}

.hover\:delay-1000:hover{
  transition-delay: 1000ms;
}

.focus\:delay-75:focus{
  transition-delay: 75ms;
}

.focus\:delay-100:focus{
  transition-delay: 100ms;
}

.focus\:delay-150:focus{
  transition-delay: 150ms;
}

.focus\:delay-200:focus{
  transition-delay: 200ms;
}

.focus\:delay-300:focus{
  transition-delay: 300ms;
}

.focus\:delay-500:focus{
  transition-delay: 500ms;
}

.focus\:delay-700:focus{
  transition-delay: 700ms;
}

.focus\:delay-1000:focus{
  transition-delay: 1000ms;
}

.active\:delay-75:active{
  transition-delay: 75ms;
}

.active\:delay-100:active{
  transition-delay: 100ms;
}

.active\:delay-150:active{
  transition-delay: 150ms;
}

.active\:delay-200:active{
  transition-delay: 200ms;
}

.active\:delay-300:active{
  transition-delay: 300ms;
}

.active\:delay-500:active{
  transition-delay: 500ms;
}

.active\:delay-700:active{
  transition-delay: 700ms;
}

.active\:delay-1000:active{
  transition-delay: 1000ms;
}

.first\:delay-75:first-child{
  transition-delay: 75ms;
}

.first\:delay-100:first-child{
  transition-delay: 100ms;
}

.first\:delay-150:first-child{
  transition-delay: 150ms;
}

.first\:delay-200:first-child{
  transition-delay: 200ms;
}

.first\:delay-300:first-child{
  transition-delay: 300ms;
}

.first\:delay-500:first-child{
  transition-delay: 500ms;
}

.first\:delay-700:first-child{
  transition-delay: 700ms;
}

.first\:delay-1000:first-child{
  transition-delay: 1000ms;
}

.last\:delay-75:last-child{
  transition-delay: 75ms;
}

.last\:delay-100:last-child{
  transition-delay: 100ms;
}

.last\:delay-150:last-child{
  transition-delay: 150ms;
}

.last\:delay-200:last-child{
  transition-delay: 200ms;
}

.last\:delay-300:last-child{
  transition-delay: 300ms;
}

.last\:delay-500:last-child{
  transition-delay: 500ms;
}

.last\:delay-700:last-child{
  transition-delay: 700ms;
}

.last\:delay-1000:last-child{
  transition-delay: 1000ms;
}

.shadow-border-2-black{
  box-shadow: inset 0 0 0 2px #000000;
}

.shadow-border-4-black{
  box-shadow: inset 0 0 0 4px #000000;
}

.shadow-border-black{
  box-shadow: inset 0 0 0 1px #000000;
}

.shadow-border-2-transparent{
  box-shadow: inset 0 0 0 2px transparent;
}

.shadow-border-4-transparent{
  box-shadow: inset 0 0 0 4px transparent;
}

.shadow-border-transparent{
  box-shadow: inset 0 0 0 1px transparent;
}

.shadow-border-2-error{
  box-shadow: inset 0 0 0 2px #f44336;
}

.shadow-border-4-error{
  box-shadow: inset 0 0 0 4px #f44336;
}

.shadow-border-error{
  box-shadow: inset 0 0 0 1px #f44336;
}

.shadow-border-2-success{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.shadow-border-4-success{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.shadow-border-success{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.shadow-border-2-white-10{
  box-shadow: inset 0 0 0 2px #FBFBFB;
}

.shadow-border-2-white-20{
  box-shadow: inset 0 0 0 2px #ECECEC;
}

.shadow-border-2-white{
  box-shadow: inset 0 0 0 2px #FFFFFF;
}

.shadow-border-4-white-10{
  box-shadow: inset 0 0 0 4px #FBFBFB;
}

.shadow-border-4-white-20{
  box-shadow: inset 0 0 0 4px #ECECEC;
}

.shadow-border-4-white{
  box-shadow: inset 0 0 0 4px #FFFFFF;
}

.shadow-border-white-10{
  box-shadow: inset 0 0 0 1px #FBFBFB;
}

.shadow-border-white-20{
  box-shadow: inset 0 0 0 1px #ECECEC;
}

.shadow-border-white{
  box-shadow: inset 0 0 0 1px #FFFFFF;
}

.shadow-border-2-cheeto{
  box-shadow: inset 0 0 0 2px #f7a500;
}

.shadow-border-2-cheeto-very-light{
  box-shadow: inset 0 0 0 2px #fffaf2;
}

.shadow-border-2-cheeto-light{
  box-shadow: inset 0 0 0 2px #ffd649;
}

.shadow-border-2-cheeto-dark{
  box-shadow: inset 0 0 0 2px #bf7600;
}

.shadow-border-2-cheeto-hocus{
  box-shadow: inset 0 0 0 2px #f8bd0f;
}

.shadow-border-2-cheeto-active{
  box-shadow: inset 0 0 0 2px #f8d61b;
}

.shadow-border-2-cheeto-ml-plus{
  box-shadow: inset 0 0 0 2px #FBEFCA;
}

.shadow-border-2-cheeto-banner{
  box-shadow: inset 0 0 0 2px #fef7e5;
}

.shadow-border-4-cheeto{
  box-shadow: inset 0 0 0 4px #f7a500;
}

.shadow-border-4-cheeto-very-light{
  box-shadow: inset 0 0 0 4px #fffaf2;
}

.shadow-border-4-cheeto-light{
  box-shadow: inset 0 0 0 4px #ffd649;
}

.shadow-border-4-cheeto-dark{
  box-shadow: inset 0 0 0 4px #bf7600;
}

.shadow-border-4-cheeto-hocus{
  box-shadow: inset 0 0 0 4px #f8bd0f;
}

.shadow-border-4-cheeto-active{
  box-shadow: inset 0 0 0 4px #f8d61b;
}

.shadow-border-4-cheeto-ml-plus{
  box-shadow: inset 0 0 0 4px #FBEFCA;
}

.shadow-border-4-cheeto-banner{
  box-shadow: inset 0 0 0 4px #fef7e5;
}

.shadow-border-cheeto{
  box-shadow: inset 0 0 0 1px #f7a500;
}

.shadow-border-cheeto-very-light{
  box-shadow: inset 0 0 0 1px #fffaf2;
}

.shadow-border-cheeto-light{
  box-shadow: inset 0 0 0 1px #ffd649;
}

.shadow-border-cheeto-dark{
  box-shadow: inset 0 0 0 1px #bf7600;
}

.shadow-border-cheeto-hocus{
  box-shadow: inset 0 0 0 1px #f8bd0f;
}

.shadow-border-cheeto-active{
  box-shadow: inset 0 0 0 1px #f8d61b;
}

.shadow-border-cheeto-ml-plus{
  box-shadow: inset 0 0 0 1px #FBEFCA;
}

.shadow-border-cheeto-banner{
  box-shadow: inset 0 0 0 1px #fef7e5;
}

.shadow-border-2-gracy-1{
  box-shadow: inset 0 0 0 2px #f8f8fa;
}

.shadow-border-2-gracy-10{
  box-shadow: inset 0 0 0 2px #faf7fd;
}

.shadow-border-2-gracy-20{
  box-shadow: inset 0 0 0 2px #e0dde3;
}

.shadow-border-2-gracy-30{
  box-shadow: inset 0 0 0 2px #c8c5ca;
}

.shadow-border-2-gracy-40{
  box-shadow: inset 0 0 0 2px #aeacb0;
}

.shadow-border-2-gracy-50{
  box-shadow: inset 0 0 0 2px #969497;
}

.shadow-border-2-gracy-60{
  box-shadow: inset 0 0 0 2px #7c7b7e;
}

.shadow-border-2-gracy-70{
  box-shadow: inset 0 0 0 2px #646265;
}

.shadow-border-2-gracy-80{
  box-shadow: inset 0 0 0 2px #4a494b;
}

.shadow-border-2-gracy-90{
  box-shadow: inset 0 0 0 2px #323132;
}

.shadow-border-2-gracy-100{
  box-shadow: inset 0 0 0 2px #181818;
}

.shadow-border-2-gracy{
  box-shadow: inset 0 0 0 2px #6F7878;
}

.shadow-border-2-gracy-overlay-90{
  box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
}

.shadow-border-4-gracy-1{
  box-shadow: inset 0 0 0 4px #f8f8fa;
}

.shadow-border-4-gracy-10{
  box-shadow: inset 0 0 0 4px #faf7fd;
}

.shadow-border-4-gracy-20{
  box-shadow: inset 0 0 0 4px #e0dde3;
}

.shadow-border-4-gracy-30{
  box-shadow: inset 0 0 0 4px #c8c5ca;
}

.shadow-border-4-gracy-40{
  box-shadow: inset 0 0 0 4px #aeacb0;
}

.shadow-border-4-gracy-50{
  box-shadow: inset 0 0 0 4px #969497;
}

.shadow-border-4-gracy-60{
  box-shadow: inset 0 0 0 4px #7c7b7e;
}

.shadow-border-4-gracy-70{
  box-shadow: inset 0 0 0 4px #646265;
}

.shadow-border-4-gracy-80{
  box-shadow: inset 0 0 0 4px #4a494b;
}

.shadow-border-4-gracy-90{
  box-shadow: inset 0 0 0 4px #323132;
}

.shadow-border-4-gracy-100{
  box-shadow: inset 0 0 0 4px #181818;
}

.shadow-border-4-gracy{
  box-shadow: inset 0 0 0 4px #6F7878;
}

.shadow-border-4-gracy-overlay-90{
  box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
}

.shadow-border-gracy-1{
  box-shadow: inset 0 0 0 1px #f8f8fa;
}

.shadow-border-gracy-10{
  box-shadow: inset 0 0 0 1px #faf7fd;
}

.shadow-border-gracy-20{
  box-shadow: inset 0 0 0 1px #e0dde3;
}

.shadow-border-gracy-30{
  box-shadow: inset 0 0 0 1px #c8c5ca;
}

.shadow-border-gracy-40{
  box-shadow: inset 0 0 0 1px #aeacb0;
}

.shadow-border-gracy-50{
  box-shadow: inset 0 0 0 1px #969497;
}

.shadow-border-gracy-60{
  box-shadow: inset 0 0 0 1px #7c7b7e;
}

.shadow-border-gracy-70{
  box-shadow: inset 0 0 0 1px #646265;
}

.shadow-border-gracy-80{
  box-shadow: inset 0 0 0 1px #4a494b;
}

.shadow-border-gracy-90{
  box-shadow: inset 0 0 0 1px #323132;
}

.shadow-border-gracy-100{
  box-shadow: inset 0 0 0 1px #181818;
}

.shadow-border-gracy{
  box-shadow: inset 0 0 0 1px #6F7878;
}

.shadow-border-gracy-overlay-90{
  box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
}

.shadow-border-2-login-0{
  box-shadow: inset 0 0 0 2px #;
}

.shadow-border-2-login-1{
  box-shadow: inset 0 0 0 2px F;
}

.shadow-border-2-login-2{
  box-shadow: inset 0 0 0 2px D;
}

.shadow-border-2-login-3{
  box-shadow: inset 0 0 0 2px F;
}

.shadow-border-2-login-4{
  box-shadow: inset 0 0 0 2px 7;
}

.shadow-border-2-login-5{
  box-shadow: inset 0 0 0 2px E;
}

.shadow-border-2-login-6{
  box-shadow: inset 0 0 0 2px 7;
}

.shadow-border-2-login-bold{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-strip{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-stripColors{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-trap{
  box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
}

.shadow-border-2-login-zalgo{
  box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
}

.shadow-border-2-login-zebra{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-rainbow{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-random{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-america{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-reset{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-dim{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-italic{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-underline{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-inverse{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-hidden{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-strikethrough{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-black{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-red{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-green{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-yellow{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-blue{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-magenta{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-cyan{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-white{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-gray{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-grey{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-brightRed{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-brightGreen{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-brightYellow{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-brightBlue{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-brightMagenta{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-brightCyan{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-brightWhite{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgBlack{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgRed{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgGreen{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgYellow{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgBlue{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgMagenta{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgCyan{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgWhite{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgGray{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgGrey{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgBrightRed{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgBrightGreen{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgBrightYellow{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgBrightBlue{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgBrightMagenta{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgBrightCyan{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-bgBrightWhite{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-blackBG{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-redBG{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-greenBG{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-yellowBG{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-blueBG{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-magentaBG{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-cyanBG{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-2-login-whiteBG{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.shadow-border-4-login-0{
  box-shadow: inset 0 0 0 4px #;
}

.shadow-border-4-login-1{
  box-shadow: inset 0 0 0 4px F;
}

.shadow-border-4-login-2{
  box-shadow: inset 0 0 0 4px D;
}

.shadow-border-4-login-3{
  box-shadow: inset 0 0 0 4px F;
}

.shadow-border-4-login-4{
  box-shadow: inset 0 0 0 4px 7;
}

.shadow-border-4-login-5{
  box-shadow: inset 0 0 0 4px E;
}

.shadow-border-4-login-6{
  box-shadow: inset 0 0 0 4px 7;
}

.shadow-border-4-login-bold{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-strip{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-stripColors{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-trap{
  box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
}

.shadow-border-4-login-zalgo{
  box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
}

.shadow-border-4-login-zebra{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-rainbow{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-random{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-america{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-reset{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-dim{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-italic{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-underline{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-inverse{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-hidden{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-strikethrough{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-black{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-red{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-green{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-yellow{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-blue{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-magenta{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-cyan{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-white{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-gray{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-grey{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-brightRed{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-brightGreen{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-brightYellow{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-brightBlue{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-brightMagenta{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-brightCyan{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-brightWhite{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgBlack{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgRed{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgGreen{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgYellow{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgBlue{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgMagenta{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgCyan{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgWhite{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgGray{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgGrey{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgBrightRed{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgBrightGreen{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgBrightYellow{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgBrightBlue{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgBrightMagenta{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgBrightCyan{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-bgBrightWhite{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-blackBG{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-redBG{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-greenBG{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-yellowBG{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-blueBG{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-magentaBG{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-cyanBG{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-4-login-whiteBG{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.shadow-border-login-0{
  box-shadow: inset 0 0 0 1px #;
}

.shadow-border-login-1{
  box-shadow: inset 0 0 0 1px F;
}

.shadow-border-login-2{
  box-shadow: inset 0 0 0 1px D;
}

.shadow-border-login-3{
  box-shadow: inset 0 0 0 1px F;
}

.shadow-border-login-4{
  box-shadow: inset 0 0 0 1px 7;
}

.shadow-border-login-5{
  box-shadow: inset 0 0 0 1px E;
}

.shadow-border-login-6{
  box-shadow: inset 0 0 0 1px 7;
}

.shadow-border-login-bold{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-strip{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-stripColors{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-trap{
  box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
}

.shadow-border-login-zalgo{
  box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
}

.shadow-border-login-zebra{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-rainbow{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-random{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-america{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-reset{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-dim{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-italic{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-underline{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-inverse{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-hidden{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-strikethrough{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-black{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-red{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-green{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-yellow{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-blue{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-magenta{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-cyan{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-white{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-gray{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-grey{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-brightRed{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-brightGreen{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-brightYellow{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-brightBlue{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-brightMagenta{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-brightCyan{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-brightWhite{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgBlack{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgRed{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgGreen{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgYellow{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgBlue{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgMagenta{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgCyan{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgWhite{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgGray{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgGrey{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgBrightRed{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgBrightGreen{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgBrightYellow{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgBrightBlue{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgBrightMagenta{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgBrightCyan{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-bgBrightWhite{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-blackBG{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-redBG{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-greenBG{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-yellowBG{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-blueBG{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-magentaBG{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-cyanBG{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-login-whiteBG{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.shadow-border-2-olive-light{
  box-shadow: inset 0 0 0 2px #DFF5F6;
}

.shadow-border-2-olive-drab{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.shadow-border-2-olive-dark{
  box-shadow: inset 0 0 0 2px #096348;
}

.shadow-border-4-olive-light{
  box-shadow: inset 0 0 0 4px #DFF5F6;
}

.shadow-border-4-olive-drab{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.shadow-border-4-olive-dark{
  box-shadow: inset 0 0 0 4px #096348;
}

.shadow-border-olive-light{
  box-shadow: inset 0 0 0 1px #DFF5F6;
}

.shadow-border-olive-drab{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.shadow-border-olive-dark{
  box-shadow: inset 0 0 0 1px #096348;
}

.shadow-border-2-daisy-light{
  box-shadow: inset 0 0 0 2px #fffce1;
}

.shadow-border-4-daisy-light{
  box-shadow: inset 0 0 0 4px #fffce1;
}

.shadow-border-daisy-light{
  box-shadow: inset 0 0 0 1px #fffce1;
}

.shadow-border-2-feedback-gumby{
  box-shadow: inset 0 0 0 2px #c8e6c9;
}

.shadow-border-2-feedback-daisy{
  box-shadow: inset 0 0 0 2px #fff9c4;
}

.shadow-border-2-feedback-pokey{
  box-shadow: inset 0 0 0 2px #ffcdd2;
}

.shadow-border-2-feedback-aster{
  box-shadow: inset 0 0 0 2px #b3e5fc;
}

.shadow-border-2-feedback-aster-dark{
  box-shadow: inset 0 0 0 2px #03567C;
}

.shadow-border-2-feedback-roxo{
  box-shadow: inset 0 0 0 2px #d1c4e9;
}

.shadow-border-2-feedback-error{
  box-shadow: inset 0 0 0 2px #f44336;
}

.shadow-border-2-feedback-success{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.shadow-border-4-feedback-gumby{
  box-shadow: inset 0 0 0 4px #c8e6c9;
}

.shadow-border-4-feedback-daisy{
  box-shadow: inset 0 0 0 4px #fff9c4;
}

.shadow-border-4-feedback-pokey{
  box-shadow: inset 0 0 0 4px #ffcdd2;
}

.shadow-border-4-feedback-aster{
  box-shadow: inset 0 0 0 4px #b3e5fc;
}

.shadow-border-4-feedback-aster-dark{
  box-shadow: inset 0 0 0 4px #03567C;
}

.shadow-border-4-feedback-roxo{
  box-shadow: inset 0 0 0 4px #d1c4e9;
}

.shadow-border-4-feedback-error{
  box-shadow: inset 0 0 0 4px #f44336;
}

.shadow-border-4-feedback-success{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.shadow-border-feedback-gumby{
  box-shadow: inset 0 0 0 1px #c8e6c9;
}

.shadow-border-feedback-daisy{
  box-shadow: inset 0 0 0 1px #fff9c4;
}

.shadow-border-feedback-pokey{
  box-shadow: inset 0 0 0 1px #ffcdd2;
}

.shadow-border-feedback-aster{
  box-shadow: inset 0 0 0 1px #b3e5fc;
}

.shadow-border-feedback-aster-dark{
  box-shadow: inset 0 0 0 1px #03567C;
}

.shadow-border-feedback-roxo{
  box-shadow: inset 0 0 0 1px #d1c4e9;
}

.shadow-border-feedback-error{
  box-shadow: inset 0 0 0 1px #f44336;
}

.shadow-border-feedback-success{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.shadow-border-2-functional-aoki{
  box-shadow: inset 0 0 0 2px #6f2ca0;
}

.shadow-border-2-functional-aoki-dark{
  box-shadow: inset 0 0 0 2px #3e0071;
}

.shadow-border-2-functional-aoki-hocus{
  box-shadow: inset 0 0 0 2px #9035af;
}

.shadow-border-2-functional-aoki-active{
  box-shadow: inset 0 0 0 2px #a04fbc;
}

.shadow-border-2-functional-aoki-light{
  box-shadow: inset 0 0 0 2px #a15ad2;
}

.shadow-border-2-functional-kermit{
  box-shadow: inset 0 0 0 2px #5aa120;
}

.shadow-border-4-functional-aoki{
  box-shadow: inset 0 0 0 4px #6f2ca0;
}

.shadow-border-4-functional-aoki-dark{
  box-shadow: inset 0 0 0 4px #3e0071;
}

.shadow-border-4-functional-aoki-hocus{
  box-shadow: inset 0 0 0 4px #9035af;
}

.shadow-border-4-functional-aoki-active{
  box-shadow: inset 0 0 0 4px #a04fbc;
}

.shadow-border-4-functional-aoki-light{
  box-shadow: inset 0 0 0 4px #a15ad2;
}

.shadow-border-4-functional-kermit{
  box-shadow: inset 0 0 0 4px #5aa120;
}

.shadow-border-functional-aoki{
  box-shadow: inset 0 0 0 1px #6f2ca0;
}

.shadow-border-functional-aoki-dark{
  box-shadow: inset 0 0 0 1px #3e0071;
}

.shadow-border-functional-aoki-hocus{
  box-shadow: inset 0 0 0 1px #9035af;
}

.shadow-border-functional-aoki-active{
  box-shadow: inset 0 0 0 1px #a04fbc;
}

.shadow-border-functional-aoki-light{
  box-shadow: inset 0 0 0 1px #a15ad2;
}

.shadow-border-functional-kermit{
  box-shadow: inset 0 0 0 1px #5aa120;
}

.shadow-border-2-mixlabPlus-light{
  box-shadow: inset 0 0 0 2px #FFFEF9;
}

.shadow-border-4-mixlabPlus-light{
  box-shadow: inset 0 0 0 4px #FFFEF9;
}

.shadow-border-mixlabPlus-light{
  box-shadow: inset 0 0 0 1px #FFFEF9;
}

.shadow-border-2-primary-orange-light{
  box-shadow: inset 0 0 0 2px ;
}

.shadow-border-4-primary-orange-light{
  box-shadow: inset 0 0 0 4px ;
}

.shadow-border-primary-orange-light{
  box-shadow: inset 0 0 0 1px ;
}

.shadow-border-2-off-white{
  box-shadow: inset 0 0 0 2px #FAF9F6;
}

.shadow-border-4-off-white{
  box-shadow: inset 0 0 0 4px #FAF9F6;
}

.shadow-border-off-white{
  box-shadow: inset 0 0 0 1px #FAF9F6;
}

.hover\:shadow-border-2-black:hover{
  box-shadow: inset 0 0 0 2px #000000;
}

.hover\:shadow-border-4-black:hover{
  box-shadow: inset 0 0 0 4px #000000;
}

.hover\:shadow-border-black:hover{
  box-shadow: inset 0 0 0 1px #000000;
}

.hover\:shadow-border-2-transparent:hover{
  box-shadow: inset 0 0 0 2px transparent;
}

.hover\:shadow-border-4-transparent:hover{
  box-shadow: inset 0 0 0 4px transparent;
}

.hover\:shadow-border-transparent:hover{
  box-shadow: inset 0 0 0 1px transparent;
}

.hover\:shadow-border-2-error:hover{
  box-shadow: inset 0 0 0 2px #f44336;
}

.hover\:shadow-border-4-error:hover{
  box-shadow: inset 0 0 0 4px #f44336;
}

.hover\:shadow-border-error:hover{
  box-shadow: inset 0 0 0 1px #f44336;
}

.hover\:shadow-border-2-success:hover{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.hover\:shadow-border-4-success:hover{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.hover\:shadow-border-success:hover{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.hover\:shadow-border-2-white-10:hover{
  box-shadow: inset 0 0 0 2px #FBFBFB;
}

.hover\:shadow-border-2-white-20:hover{
  box-shadow: inset 0 0 0 2px #ECECEC;
}

.hover\:shadow-border-2-white:hover{
  box-shadow: inset 0 0 0 2px #FFFFFF;
}

.hover\:shadow-border-4-white-10:hover{
  box-shadow: inset 0 0 0 4px #FBFBFB;
}

.hover\:shadow-border-4-white-20:hover{
  box-shadow: inset 0 0 0 4px #ECECEC;
}

.hover\:shadow-border-4-white:hover{
  box-shadow: inset 0 0 0 4px #FFFFFF;
}

.hover\:shadow-border-white-10:hover{
  box-shadow: inset 0 0 0 1px #FBFBFB;
}

.hover\:shadow-border-white-20:hover{
  box-shadow: inset 0 0 0 1px #ECECEC;
}

.hover\:shadow-border-white:hover{
  box-shadow: inset 0 0 0 1px #FFFFFF;
}

.hover\:shadow-border-2-cheeto:hover{
  box-shadow: inset 0 0 0 2px #f7a500;
}

.hover\:shadow-border-2-cheeto-very-light:hover{
  box-shadow: inset 0 0 0 2px #fffaf2;
}

.hover\:shadow-border-2-cheeto-light:hover{
  box-shadow: inset 0 0 0 2px #ffd649;
}

.hover\:shadow-border-2-cheeto-dark:hover{
  box-shadow: inset 0 0 0 2px #bf7600;
}

.hover\:shadow-border-2-cheeto-hocus:hover{
  box-shadow: inset 0 0 0 2px #f8bd0f;
}

.hover\:shadow-border-2-cheeto-active:hover{
  box-shadow: inset 0 0 0 2px #f8d61b;
}

.hover\:shadow-border-2-cheeto-ml-plus:hover{
  box-shadow: inset 0 0 0 2px #FBEFCA;
}

.hover\:shadow-border-2-cheeto-banner:hover{
  box-shadow: inset 0 0 0 2px #fef7e5;
}

.hover\:shadow-border-4-cheeto:hover{
  box-shadow: inset 0 0 0 4px #f7a500;
}

.hover\:shadow-border-4-cheeto-very-light:hover{
  box-shadow: inset 0 0 0 4px #fffaf2;
}

.hover\:shadow-border-4-cheeto-light:hover{
  box-shadow: inset 0 0 0 4px #ffd649;
}

.hover\:shadow-border-4-cheeto-dark:hover{
  box-shadow: inset 0 0 0 4px #bf7600;
}

.hover\:shadow-border-4-cheeto-hocus:hover{
  box-shadow: inset 0 0 0 4px #f8bd0f;
}

.hover\:shadow-border-4-cheeto-active:hover{
  box-shadow: inset 0 0 0 4px #f8d61b;
}

.hover\:shadow-border-4-cheeto-ml-plus:hover{
  box-shadow: inset 0 0 0 4px #FBEFCA;
}

.hover\:shadow-border-4-cheeto-banner:hover{
  box-shadow: inset 0 0 0 4px #fef7e5;
}

.hover\:shadow-border-cheeto:hover{
  box-shadow: inset 0 0 0 1px #f7a500;
}

.hover\:shadow-border-cheeto-very-light:hover{
  box-shadow: inset 0 0 0 1px #fffaf2;
}

.hover\:shadow-border-cheeto-light:hover{
  box-shadow: inset 0 0 0 1px #ffd649;
}

.hover\:shadow-border-cheeto-dark:hover{
  box-shadow: inset 0 0 0 1px #bf7600;
}

.hover\:shadow-border-cheeto-hocus:hover{
  box-shadow: inset 0 0 0 1px #f8bd0f;
}

.hover\:shadow-border-cheeto-active:hover{
  box-shadow: inset 0 0 0 1px #f8d61b;
}

.hover\:shadow-border-cheeto-ml-plus:hover{
  box-shadow: inset 0 0 0 1px #FBEFCA;
}

.hover\:shadow-border-cheeto-banner:hover{
  box-shadow: inset 0 0 0 1px #fef7e5;
}

.hover\:shadow-border-2-gracy-1:hover{
  box-shadow: inset 0 0 0 2px #f8f8fa;
}

.hover\:shadow-border-2-gracy-10:hover{
  box-shadow: inset 0 0 0 2px #faf7fd;
}

.hover\:shadow-border-2-gracy-20:hover{
  box-shadow: inset 0 0 0 2px #e0dde3;
}

.hover\:shadow-border-2-gracy-30:hover{
  box-shadow: inset 0 0 0 2px #c8c5ca;
}

.hover\:shadow-border-2-gracy-40:hover{
  box-shadow: inset 0 0 0 2px #aeacb0;
}

.hover\:shadow-border-2-gracy-50:hover{
  box-shadow: inset 0 0 0 2px #969497;
}

.hover\:shadow-border-2-gracy-60:hover{
  box-shadow: inset 0 0 0 2px #7c7b7e;
}

.hover\:shadow-border-2-gracy-70:hover{
  box-shadow: inset 0 0 0 2px #646265;
}

.hover\:shadow-border-2-gracy-80:hover{
  box-shadow: inset 0 0 0 2px #4a494b;
}

.hover\:shadow-border-2-gracy-90:hover{
  box-shadow: inset 0 0 0 2px #323132;
}

.hover\:shadow-border-2-gracy-100:hover{
  box-shadow: inset 0 0 0 2px #181818;
}

.hover\:shadow-border-2-gracy:hover{
  box-shadow: inset 0 0 0 2px #6F7878;
}

.hover\:shadow-border-2-gracy-overlay-90:hover{
  box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
}

.hover\:shadow-border-4-gracy-1:hover{
  box-shadow: inset 0 0 0 4px #f8f8fa;
}

.hover\:shadow-border-4-gracy-10:hover{
  box-shadow: inset 0 0 0 4px #faf7fd;
}

.hover\:shadow-border-4-gracy-20:hover{
  box-shadow: inset 0 0 0 4px #e0dde3;
}

.hover\:shadow-border-4-gracy-30:hover{
  box-shadow: inset 0 0 0 4px #c8c5ca;
}

.hover\:shadow-border-4-gracy-40:hover{
  box-shadow: inset 0 0 0 4px #aeacb0;
}

.hover\:shadow-border-4-gracy-50:hover{
  box-shadow: inset 0 0 0 4px #969497;
}

.hover\:shadow-border-4-gracy-60:hover{
  box-shadow: inset 0 0 0 4px #7c7b7e;
}

.hover\:shadow-border-4-gracy-70:hover{
  box-shadow: inset 0 0 0 4px #646265;
}

.hover\:shadow-border-4-gracy-80:hover{
  box-shadow: inset 0 0 0 4px #4a494b;
}

.hover\:shadow-border-4-gracy-90:hover{
  box-shadow: inset 0 0 0 4px #323132;
}

.hover\:shadow-border-4-gracy-100:hover{
  box-shadow: inset 0 0 0 4px #181818;
}

.hover\:shadow-border-4-gracy:hover{
  box-shadow: inset 0 0 0 4px #6F7878;
}

.hover\:shadow-border-4-gracy-overlay-90:hover{
  box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
}

.hover\:shadow-border-gracy-1:hover{
  box-shadow: inset 0 0 0 1px #f8f8fa;
}

.hover\:shadow-border-gracy-10:hover{
  box-shadow: inset 0 0 0 1px #faf7fd;
}

.hover\:shadow-border-gracy-20:hover{
  box-shadow: inset 0 0 0 1px #e0dde3;
}

.hover\:shadow-border-gracy-30:hover{
  box-shadow: inset 0 0 0 1px #c8c5ca;
}

.hover\:shadow-border-gracy-40:hover{
  box-shadow: inset 0 0 0 1px #aeacb0;
}

.hover\:shadow-border-gracy-50:hover{
  box-shadow: inset 0 0 0 1px #969497;
}

.hover\:shadow-border-gracy-60:hover{
  box-shadow: inset 0 0 0 1px #7c7b7e;
}

.hover\:shadow-border-gracy-70:hover{
  box-shadow: inset 0 0 0 1px #646265;
}

.hover\:shadow-border-gracy-80:hover{
  box-shadow: inset 0 0 0 1px #4a494b;
}

.hover\:shadow-border-gracy-90:hover{
  box-shadow: inset 0 0 0 1px #323132;
}

.hover\:shadow-border-gracy-100:hover{
  box-shadow: inset 0 0 0 1px #181818;
}

.hover\:shadow-border-gracy:hover{
  box-shadow: inset 0 0 0 1px #6F7878;
}

.hover\:shadow-border-gracy-overlay-90:hover{
  box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
}

.hover\:shadow-border-2-login-0:hover{
  box-shadow: inset 0 0 0 2px #;
}

.hover\:shadow-border-2-login-1:hover{
  box-shadow: inset 0 0 0 2px F;
}

.hover\:shadow-border-2-login-2:hover{
  box-shadow: inset 0 0 0 2px D;
}

.hover\:shadow-border-2-login-3:hover{
  box-shadow: inset 0 0 0 2px F;
}

.hover\:shadow-border-2-login-4:hover{
  box-shadow: inset 0 0 0 2px 7;
}

.hover\:shadow-border-2-login-5:hover{
  box-shadow: inset 0 0 0 2px E;
}

.hover\:shadow-border-2-login-6:hover{
  box-shadow: inset 0 0 0 2px 7;
}

.hover\:shadow-border-2-login-bold:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-strip:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-stripColors:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-trap:hover{
  box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
}

.hover\:shadow-border-2-login-zalgo:hover{
  box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
}

.hover\:shadow-border-2-login-zebra:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-rainbow:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-random:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-america:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-reset:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-dim:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-italic:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-underline:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-inverse:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-hidden:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-strikethrough:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-black:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-red:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-green:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-yellow:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-blue:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-magenta:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-cyan:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-white:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-gray:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-grey:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-brightRed:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-brightGreen:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-brightYellow:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-brightBlue:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-brightMagenta:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-brightCyan:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-brightWhite:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgBlack:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgRed:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgGreen:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgYellow:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgBlue:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgMagenta:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgCyan:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgWhite:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgGray:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgGrey:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgBrightRed:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgBrightGreen:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgBrightYellow:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgBrightBlue:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgBrightMagenta:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgBrightCyan:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-bgBrightWhite:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-blackBG:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-redBG:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-greenBG:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-yellowBG:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-blueBG:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-magentaBG:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-cyanBG:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-2-login-whiteBG:hover{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.hover\:shadow-border-4-login-0:hover{
  box-shadow: inset 0 0 0 4px #;
}

.hover\:shadow-border-4-login-1:hover{
  box-shadow: inset 0 0 0 4px F;
}

.hover\:shadow-border-4-login-2:hover{
  box-shadow: inset 0 0 0 4px D;
}

.hover\:shadow-border-4-login-3:hover{
  box-shadow: inset 0 0 0 4px F;
}

.hover\:shadow-border-4-login-4:hover{
  box-shadow: inset 0 0 0 4px 7;
}

.hover\:shadow-border-4-login-5:hover{
  box-shadow: inset 0 0 0 4px E;
}

.hover\:shadow-border-4-login-6:hover{
  box-shadow: inset 0 0 0 4px 7;
}

.hover\:shadow-border-4-login-bold:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-strip:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-stripColors:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-trap:hover{
  box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
}

.hover\:shadow-border-4-login-zalgo:hover{
  box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
}

.hover\:shadow-border-4-login-zebra:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-rainbow:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-random:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-america:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-reset:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-dim:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-italic:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-underline:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-inverse:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-hidden:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-strikethrough:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-black:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-red:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-green:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-yellow:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-blue:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-magenta:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-cyan:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-white:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-gray:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-grey:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-brightRed:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-brightGreen:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-brightYellow:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-brightBlue:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-brightMagenta:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-brightCyan:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-brightWhite:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgBlack:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgRed:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgGreen:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgYellow:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgBlue:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgMagenta:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgCyan:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgWhite:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgGray:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgGrey:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgBrightRed:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgBrightGreen:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgBrightYellow:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgBrightBlue:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgBrightMagenta:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgBrightCyan:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-bgBrightWhite:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-blackBG:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-redBG:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-greenBG:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-yellowBG:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-blueBG:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-magentaBG:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-cyanBG:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-4-login-whiteBG:hover{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.hover\:shadow-border-login-0:hover{
  box-shadow: inset 0 0 0 1px #;
}

.hover\:shadow-border-login-1:hover{
  box-shadow: inset 0 0 0 1px F;
}

.hover\:shadow-border-login-2:hover{
  box-shadow: inset 0 0 0 1px D;
}

.hover\:shadow-border-login-3:hover{
  box-shadow: inset 0 0 0 1px F;
}

.hover\:shadow-border-login-4:hover{
  box-shadow: inset 0 0 0 1px 7;
}

.hover\:shadow-border-login-5:hover{
  box-shadow: inset 0 0 0 1px E;
}

.hover\:shadow-border-login-6:hover{
  box-shadow: inset 0 0 0 1px 7;
}

.hover\:shadow-border-login-bold:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-strip:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-stripColors:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-trap:hover{
  box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
}

.hover\:shadow-border-login-zalgo:hover{
  box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
}

.hover\:shadow-border-login-zebra:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-rainbow:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-random:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-america:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-reset:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-dim:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-italic:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-underline:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-inverse:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-hidden:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-strikethrough:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-black:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-red:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-green:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-yellow:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-blue:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-magenta:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-cyan:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-white:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-gray:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-grey:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-brightRed:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-brightGreen:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-brightYellow:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-brightBlue:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-brightMagenta:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-brightCyan:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-brightWhite:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgBlack:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgRed:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgGreen:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgYellow:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgBlue:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgMagenta:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgCyan:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgWhite:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgGray:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgGrey:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgBrightRed:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgBrightGreen:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgBrightYellow:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgBrightBlue:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgBrightMagenta:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgBrightCyan:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-bgBrightWhite:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-blackBG:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-redBG:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-greenBG:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-yellowBG:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-blueBG:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-magentaBG:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-cyanBG:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-login-whiteBG:hover{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.hover\:shadow-border-2-olive-light:hover{
  box-shadow: inset 0 0 0 2px #DFF5F6;
}

.hover\:shadow-border-2-olive-drab:hover{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.hover\:shadow-border-2-olive-dark:hover{
  box-shadow: inset 0 0 0 2px #096348;
}

.hover\:shadow-border-4-olive-light:hover{
  box-shadow: inset 0 0 0 4px #DFF5F6;
}

.hover\:shadow-border-4-olive-drab:hover{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.hover\:shadow-border-4-olive-dark:hover{
  box-shadow: inset 0 0 0 4px #096348;
}

.hover\:shadow-border-olive-light:hover{
  box-shadow: inset 0 0 0 1px #DFF5F6;
}

.hover\:shadow-border-olive-drab:hover{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.hover\:shadow-border-olive-dark:hover{
  box-shadow: inset 0 0 0 1px #096348;
}

.hover\:shadow-border-2-daisy-light:hover{
  box-shadow: inset 0 0 0 2px #fffce1;
}

.hover\:shadow-border-4-daisy-light:hover{
  box-shadow: inset 0 0 0 4px #fffce1;
}

.hover\:shadow-border-daisy-light:hover{
  box-shadow: inset 0 0 0 1px #fffce1;
}

.hover\:shadow-border-2-feedback-gumby:hover{
  box-shadow: inset 0 0 0 2px #c8e6c9;
}

.hover\:shadow-border-2-feedback-daisy:hover{
  box-shadow: inset 0 0 0 2px #fff9c4;
}

.hover\:shadow-border-2-feedback-pokey:hover{
  box-shadow: inset 0 0 0 2px #ffcdd2;
}

.hover\:shadow-border-2-feedback-aster:hover{
  box-shadow: inset 0 0 0 2px #b3e5fc;
}

.hover\:shadow-border-2-feedback-aster-dark:hover{
  box-shadow: inset 0 0 0 2px #03567C;
}

.hover\:shadow-border-2-feedback-roxo:hover{
  box-shadow: inset 0 0 0 2px #d1c4e9;
}

.hover\:shadow-border-2-feedback-error:hover{
  box-shadow: inset 0 0 0 2px #f44336;
}

.hover\:shadow-border-2-feedback-success:hover{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.hover\:shadow-border-4-feedback-gumby:hover{
  box-shadow: inset 0 0 0 4px #c8e6c9;
}

.hover\:shadow-border-4-feedback-daisy:hover{
  box-shadow: inset 0 0 0 4px #fff9c4;
}

.hover\:shadow-border-4-feedback-pokey:hover{
  box-shadow: inset 0 0 0 4px #ffcdd2;
}

.hover\:shadow-border-4-feedback-aster:hover{
  box-shadow: inset 0 0 0 4px #b3e5fc;
}

.hover\:shadow-border-4-feedback-aster-dark:hover{
  box-shadow: inset 0 0 0 4px #03567C;
}

.hover\:shadow-border-4-feedback-roxo:hover{
  box-shadow: inset 0 0 0 4px #d1c4e9;
}

.hover\:shadow-border-4-feedback-error:hover{
  box-shadow: inset 0 0 0 4px #f44336;
}

.hover\:shadow-border-4-feedback-success:hover{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.hover\:shadow-border-feedback-gumby:hover{
  box-shadow: inset 0 0 0 1px #c8e6c9;
}

.hover\:shadow-border-feedback-daisy:hover{
  box-shadow: inset 0 0 0 1px #fff9c4;
}

.hover\:shadow-border-feedback-pokey:hover{
  box-shadow: inset 0 0 0 1px #ffcdd2;
}

.hover\:shadow-border-feedback-aster:hover{
  box-shadow: inset 0 0 0 1px #b3e5fc;
}

.hover\:shadow-border-feedback-aster-dark:hover{
  box-shadow: inset 0 0 0 1px #03567C;
}

.hover\:shadow-border-feedback-roxo:hover{
  box-shadow: inset 0 0 0 1px #d1c4e9;
}

.hover\:shadow-border-feedback-error:hover{
  box-shadow: inset 0 0 0 1px #f44336;
}

.hover\:shadow-border-feedback-success:hover{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.hover\:shadow-border-2-functional-aoki:hover{
  box-shadow: inset 0 0 0 2px #6f2ca0;
}

.hover\:shadow-border-2-functional-aoki-dark:hover{
  box-shadow: inset 0 0 0 2px #3e0071;
}

.hover\:shadow-border-2-functional-aoki-hocus:hover{
  box-shadow: inset 0 0 0 2px #9035af;
}

.hover\:shadow-border-2-functional-aoki-active:hover{
  box-shadow: inset 0 0 0 2px #a04fbc;
}

.hover\:shadow-border-2-functional-aoki-light:hover{
  box-shadow: inset 0 0 0 2px #a15ad2;
}

.hover\:shadow-border-2-functional-kermit:hover{
  box-shadow: inset 0 0 0 2px #5aa120;
}

.hover\:shadow-border-4-functional-aoki:hover{
  box-shadow: inset 0 0 0 4px #6f2ca0;
}

.hover\:shadow-border-4-functional-aoki-dark:hover{
  box-shadow: inset 0 0 0 4px #3e0071;
}

.hover\:shadow-border-4-functional-aoki-hocus:hover{
  box-shadow: inset 0 0 0 4px #9035af;
}

.hover\:shadow-border-4-functional-aoki-active:hover{
  box-shadow: inset 0 0 0 4px #a04fbc;
}

.hover\:shadow-border-4-functional-aoki-light:hover{
  box-shadow: inset 0 0 0 4px #a15ad2;
}

.hover\:shadow-border-4-functional-kermit:hover{
  box-shadow: inset 0 0 0 4px #5aa120;
}

.hover\:shadow-border-functional-aoki:hover{
  box-shadow: inset 0 0 0 1px #6f2ca0;
}

.hover\:shadow-border-functional-aoki-dark:hover{
  box-shadow: inset 0 0 0 1px #3e0071;
}

.hover\:shadow-border-functional-aoki-hocus:hover{
  box-shadow: inset 0 0 0 1px #9035af;
}

.hover\:shadow-border-functional-aoki-active:hover{
  box-shadow: inset 0 0 0 1px #a04fbc;
}

.hover\:shadow-border-functional-aoki-light:hover{
  box-shadow: inset 0 0 0 1px #a15ad2;
}

.hover\:shadow-border-functional-kermit:hover{
  box-shadow: inset 0 0 0 1px #5aa120;
}

.hover\:shadow-border-2-mixlabPlus-light:hover{
  box-shadow: inset 0 0 0 2px #FFFEF9;
}

.hover\:shadow-border-4-mixlabPlus-light:hover{
  box-shadow: inset 0 0 0 4px #FFFEF9;
}

.hover\:shadow-border-mixlabPlus-light:hover{
  box-shadow: inset 0 0 0 1px #FFFEF9;
}

.hover\:shadow-border-2-primary-orange-light:hover{
  box-shadow: inset 0 0 0 2px ;
}

.hover\:shadow-border-4-primary-orange-light:hover{
  box-shadow: inset 0 0 0 4px ;
}

.hover\:shadow-border-primary-orange-light:hover{
  box-shadow: inset 0 0 0 1px ;
}

.hover\:shadow-border-2-off-white:hover{
  box-shadow: inset 0 0 0 2px #FAF9F6;
}

.hover\:shadow-border-4-off-white:hover{
  box-shadow: inset 0 0 0 4px #FAF9F6;
}

.hover\:shadow-border-off-white:hover{
  box-shadow: inset 0 0 0 1px #FAF9F6;
}

.focus\:shadow-border-2-black:focus{
  box-shadow: inset 0 0 0 2px #000000;
}

.focus\:shadow-border-4-black:focus{
  box-shadow: inset 0 0 0 4px #000000;
}

.focus\:shadow-border-black:focus{
  box-shadow: inset 0 0 0 1px #000000;
}

.focus\:shadow-border-2-transparent:focus{
  box-shadow: inset 0 0 0 2px transparent;
}

.focus\:shadow-border-4-transparent:focus{
  box-shadow: inset 0 0 0 4px transparent;
}

.focus\:shadow-border-transparent:focus{
  box-shadow: inset 0 0 0 1px transparent;
}

.focus\:shadow-border-2-error:focus{
  box-shadow: inset 0 0 0 2px #f44336;
}

.focus\:shadow-border-4-error:focus{
  box-shadow: inset 0 0 0 4px #f44336;
}

.focus\:shadow-border-error:focus{
  box-shadow: inset 0 0 0 1px #f44336;
}

.focus\:shadow-border-2-success:focus{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.focus\:shadow-border-4-success:focus{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.focus\:shadow-border-success:focus{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.focus\:shadow-border-2-white-10:focus{
  box-shadow: inset 0 0 0 2px #FBFBFB;
}

.focus\:shadow-border-2-white-20:focus{
  box-shadow: inset 0 0 0 2px #ECECEC;
}

.focus\:shadow-border-2-white:focus{
  box-shadow: inset 0 0 0 2px #FFFFFF;
}

.focus\:shadow-border-4-white-10:focus{
  box-shadow: inset 0 0 0 4px #FBFBFB;
}

.focus\:shadow-border-4-white-20:focus{
  box-shadow: inset 0 0 0 4px #ECECEC;
}

.focus\:shadow-border-4-white:focus{
  box-shadow: inset 0 0 0 4px #FFFFFF;
}

.focus\:shadow-border-white-10:focus{
  box-shadow: inset 0 0 0 1px #FBFBFB;
}

.focus\:shadow-border-white-20:focus{
  box-shadow: inset 0 0 0 1px #ECECEC;
}

.focus\:shadow-border-white:focus{
  box-shadow: inset 0 0 0 1px #FFFFFF;
}

.focus\:shadow-border-2-cheeto:focus{
  box-shadow: inset 0 0 0 2px #f7a500;
}

.focus\:shadow-border-2-cheeto-very-light:focus{
  box-shadow: inset 0 0 0 2px #fffaf2;
}

.focus\:shadow-border-2-cheeto-light:focus{
  box-shadow: inset 0 0 0 2px #ffd649;
}

.focus\:shadow-border-2-cheeto-dark:focus{
  box-shadow: inset 0 0 0 2px #bf7600;
}

.focus\:shadow-border-2-cheeto-hocus:focus{
  box-shadow: inset 0 0 0 2px #f8bd0f;
}

.focus\:shadow-border-2-cheeto-active:focus{
  box-shadow: inset 0 0 0 2px #f8d61b;
}

.focus\:shadow-border-2-cheeto-ml-plus:focus{
  box-shadow: inset 0 0 0 2px #FBEFCA;
}

.focus\:shadow-border-2-cheeto-banner:focus{
  box-shadow: inset 0 0 0 2px #fef7e5;
}

.focus\:shadow-border-4-cheeto:focus{
  box-shadow: inset 0 0 0 4px #f7a500;
}

.focus\:shadow-border-4-cheeto-very-light:focus{
  box-shadow: inset 0 0 0 4px #fffaf2;
}

.focus\:shadow-border-4-cheeto-light:focus{
  box-shadow: inset 0 0 0 4px #ffd649;
}

.focus\:shadow-border-4-cheeto-dark:focus{
  box-shadow: inset 0 0 0 4px #bf7600;
}

.focus\:shadow-border-4-cheeto-hocus:focus{
  box-shadow: inset 0 0 0 4px #f8bd0f;
}

.focus\:shadow-border-4-cheeto-active:focus{
  box-shadow: inset 0 0 0 4px #f8d61b;
}

.focus\:shadow-border-4-cheeto-ml-plus:focus{
  box-shadow: inset 0 0 0 4px #FBEFCA;
}

.focus\:shadow-border-4-cheeto-banner:focus{
  box-shadow: inset 0 0 0 4px #fef7e5;
}

.focus\:shadow-border-cheeto:focus{
  box-shadow: inset 0 0 0 1px #f7a500;
}

.focus\:shadow-border-cheeto-very-light:focus{
  box-shadow: inset 0 0 0 1px #fffaf2;
}

.focus\:shadow-border-cheeto-light:focus{
  box-shadow: inset 0 0 0 1px #ffd649;
}

.focus\:shadow-border-cheeto-dark:focus{
  box-shadow: inset 0 0 0 1px #bf7600;
}

.focus\:shadow-border-cheeto-hocus:focus{
  box-shadow: inset 0 0 0 1px #f8bd0f;
}

.focus\:shadow-border-cheeto-active:focus{
  box-shadow: inset 0 0 0 1px #f8d61b;
}

.focus\:shadow-border-cheeto-ml-plus:focus{
  box-shadow: inset 0 0 0 1px #FBEFCA;
}

.focus\:shadow-border-cheeto-banner:focus{
  box-shadow: inset 0 0 0 1px #fef7e5;
}

.focus\:shadow-border-2-gracy-1:focus{
  box-shadow: inset 0 0 0 2px #f8f8fa;
}

.focus\:shadow-border-2-gracy-10:focus{
  box-shadow: inset 0 0 0 2px #faf7fd;
}

.focus\:shadow-border-2-gracy-20:focus{
  box-shadow: inset 0 0 0 2px #e0dde3;
}

.focus\:shadow-border-2-gracy-30:focus{
  box-shadow: inset 0 0 0 2px #c8c5ca;
}

.focus\:shadow-border-2-gracy-40:focus{
  box-shadow: inset 0 0 0 2px #aeacb0;
}

.focus\:shadow-border-2-gracy-50:focus{
  box-shadow: inset 0 0 0 2px #969497;
}

.focus\:shadow-border-2-gracy-60:focus{
  box-shadow: inset 0 0 0 2px #7c7b7e;
}

.focus\:shadow-border-2-gracy-70:focus{
  box-shadow: inset 0 0 0 2px #646265;
}

.focus\:shadow-border-2-gracy-80:focus{
  box-shadow: inset 0 0 0 2px #4a494b;
}

.focus\:shadow-border-2-gracy-90:focus{
  box-shadow: inset 0 0 0 2px #323132;
}

.focus\:shadow-border-2-gracy-100:focus{
  box-shadow: inset 0 0 0 2px #181818;
}

.focus\:shadow-border-2-gracy:focus{
  box-shadow: inset 0 0 0 2px #6F7878;
}

.focus\:shadow-border-2-gracy-overlay-90:focus{
  box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
}

.focus\:shadow-border-4-gracy-1:focus{
  box-shadow: inset 0 0 0 4px #f8f8fa;
}

.focus\:shadow-border-4-gracy-10:focus{
  box-shadow: inset 0 0 0 4px #faf7fd;
}

.focus\:shadow-border-4-gracy-20:focus{
  box-shadow: inset 0 0 0 4px #e0dde3;
}

.focus\:shadow-border-4-gracy-30:focus{
  box-shadow: inset 0 0 0 4px #c8c5ca;
}

.focus\:shadow-border-4-gracy-40:focus{
  box-shadow: inset 0 0 0 4px #aeacb0;
}

.focus\:shadow-border-4-gracy-50:focus{
  box-shadow: inset 0 0 0 4px #969497;
}

.focus\:shadow-border-4-gracy-60:focus{
  box-shadow: inset 0 0 0 4px #7c7b7e;
}

.focus\:shadow-border-4-gracy-70:focus{
  box-shadow: inset 0 0 0 4px #646265;
}

.focus\:shadow-border-4-gracy-80:focus{
  box-shadow: inset 0 0 0 4px #4a494b;
}

.focus\:shadow-border-4-gracy-90:focus{
  box-shadow: inset 0 0 0 4px #323132;
}

.focus\:shadow-border-4-gracy-100:focus{
  box-shadow: inset 0 0 0 4px #181818;
}

.focus\:shadow-border-4-gracy:focus{
  box-shadow: inset 0 0 0 4px #6F7878;
}

.focus\:shadow-border-4-gracy-overlay-90:focus{
  box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
}

.focus\:shadow-border-gracy-1:focus{
  box-shadow: inset 0 0 0 1px #f8f8fa;
}

.focus\:shadow-border-gracy-10:focus{
  box-shadow: inset 0 0 0 1px #faf7fd;
}

.focus\:shadow-border-gracy-20:focus{
  box-shadow: inset 0 0 0 1px #e0dde3;
}

.focus\:shadow-border-gracy-30:focus{
  box-shadow: inset 0 0 0 1px #c8c5ca;
}

.focus\:shadow-border-gracy-40:focus{
  box-shadow: inset 0 0 0 1px #aeacb0;
}

.focus\:shadow-border-gracy-50:focus{
  box-shadow: inset 0 0 0 1px #969497;
}

.focus\:shadow-border-gracy-60:focus{
  box-shadow: inset 0 0 0 1px #7c7b7e;
}

.focus\:shadow-border-gracy-70:focus{
  box-shadow: inset 0 0 0 1px #646265;
}

.focus\:shadow-border-gracy-80:focus{
  box-shadow: inset 0 0 0 1px #4a494b;
}

.focus\:shadow-border-gracy-90:focus{
  box-shadow: inset 0 0 0 1px #323132;
}

.focus\:shadow-border-gracy-100:focus{
  box-shadow: inset 0 0 0 1px #181818;
}

.focus\:shadow-border-gracy:focus{
  box-shadow: inset 0 0 0 1px #6F7878;
}

.focus\:shadow-border-gracy-overlay-90:focus{
  box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
}

.focus\:shadow-border-2-login-0:focus{
  box-shadow: inset 0 0 0 2px #;
}

.focus\:shadow-border-2-login-1:focus{
  box-shadow: inset 0 0 0 2px F;
}

.focus\:shadow-border-2-login-2:focus{
  box-shadow: inset 0 0 0 2px D;
}

.focus\:shadow-border-2-login-3:focus{
  box-shadow: inset 0 0 0 2px F;
}

.focus\:shadow-border-2-login-4:focus{
  box-shadow: inset 0 0 0 2px 7;
}

.focus\:shadow-border-2-login-5:focus{
  box-shadow: inset 0 0 0 2px E;
}

.focus\:shadow-border-2-login-6:focus{
  box-shadow: inset 0 0 0 2px 7;
}

.focus\:shadow-border-2-login-bold:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-strip:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-stripColors:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-trap:focus{
  box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
}

.focus\:shadow-border-2-login-zalgo:focus{
  box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
}

.focus\:shadow-border-2-login-zebra:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-rainbow:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-random:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-america:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-reset:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-dim:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-italic:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-underline:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-inverse:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-hidden:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-strikethrough:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-black:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-red:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-green:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-yellow:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-blue:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-magenta:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-cyan:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-white:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-gray:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-grey:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-brightRed:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-brightGreen:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-brightYellow:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-brightBlue:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-brightMagenta:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-brightCyan:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-brightWhite:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgBlack:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgRed:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgGreen:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgYellow:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgBlue:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgMagenta:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgCyan:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgWhite:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgGray:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgGrey:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgBrightRed:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgBrightGreen:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgBrightYellow:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgBrightBlue:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgBrightMagenta:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgBrightCyan:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-bgBrightWhite:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-blackBG:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-redBG:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-greenBG:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-yellowBG:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-blueBG:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-magentaBG:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-cyanBG:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-2-login-whiteBG:focus{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.focus\:shadow-border-4-login-0:focus{
  box-shadow: inset 0 0 0 4px #;
}

.focus\:shadow-border-4-login-1:focus{
  box-shadow: inset 0 0 0 4px F;
}

.focus\:shadow-border-4-login-2:focus{
  box-shadow: inset 0 0 0 4px D;
}

.focus\:shadow-border-4-login-3:focus{
  box-shadow: inset 0 0 0 4px F;
}

.focus\:shadow-border-4-login-4:focus{
  box-shadow: inset 0 0 0 4px 7;
}

.focus\:shadow-border-4-login-5:focus{
  box-shadow: inset 0 0 0 4px E;
}

.focus\:shadow-border-4-login-6:focus{
  box-shadow: inset 0 0 0 4px 7;
}

.focus\:shadow-border-4-login-bold:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-strip:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-stripColors:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-trap:focus{
  box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
}

.focus\:shadow-border-4-login-zalgo:focus{
  box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
}

.focus\:shadow-border-4-login-zebra:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-rainbow:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-random:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-america:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-reset:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-dim:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-italic:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-underline:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-inverse:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-hidden:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-strikethrough:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-black:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-red:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-green:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-yellow:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-blue:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-magenta:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-cyan:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-white:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-gray:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-grey:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-brightRed:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-brightGreen:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-brightYellow:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-brightBlue:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-brightMagenta:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-brightCyan:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-brightWhite:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgBlack:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgRed:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgGreen:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgYellow:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgBlue:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgMagenta:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgCyan:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgWhite:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgGray:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgGrey:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgBrightRed:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgBrightGreen:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgBrightYellow:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgBrightBlue:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgBrightMagenta:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgBrightCyan:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-bgBrightWhite:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-blackBG:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-redBG:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-greenBG:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-yellowBG:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-blueBG:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-magentaBG:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-cyanBG:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-4-login-whiteBG:focus{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.focus\:shadow-border-login-0:focus{
  box-shadow: inset 0 0 0 1px #;
}

.focus\:shadow-border-login-1:focus{
  box-shadow: inset 0 0 0 1px F;
}

.focus\:shadow-border-login-2:focus{
  box-shadow: inset 0 0 0 1px D;
}

.focus\:shadow-border-login-3:focus{
  box-shadow: inset 0 0 0 1px F;
}

.focus\:shadow-border-login-4:focus{
  box-shadow: inset 0 0 0 1px 7;
}

.focus\:shadow-border-login-5:focus{
  box-shadow: inset 0 0 0 1px E;
}

.focus\:shadow-border-login-6:focus{
  box-shadow: inset 0 0 0 1px 7;
}

.focus\:shadow-border-login-bold:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-strip:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-stripColors:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-trap:focus{
  box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
}

.focus\:shadow-border-login-zalgo:focus{
  box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
}

.focus\:shadow-border-login-zebra:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-rainbow:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-random:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-america:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-reset:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-dim:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-italic:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-underline:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-inverse:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-hidden:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-strikethrough:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-black:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-red:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-green:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-yellow:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-blue:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-magenta:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-cyan:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-white:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-gray:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-grey:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-brightRed:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-brightGreen:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-brightYellow:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-brightBlue:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-brightMagenta:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-brightCyan:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-brightWhite:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgBlack:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgRed:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgGreen:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgYellow:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgBlue:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgMagenta:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgCyan:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgWhite:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgGray:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgGrey:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgBrightRed:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgBrightGreen:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgBrightYellow:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgBrightBlue:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgBrightMagenta:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgBrightCyan:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-bgBrightWhite:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-blackBG:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-redBG:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-greenBG:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-yellowBG:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-blueBG:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-magentaBG:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-cyanBG:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-login-whiteBG:focus{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.focus\:shadow-border-2-olive-light:focus{
  box-shadow: inset 0 0 0 2px #DFF5F6;
}

.focus\:shadow-border-2-olive-drab:focus{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.focus\:shadow-border-2-olive-dark:focus{
  box-shadow: inset 0 0 0 2px #096348;
}

.focus\:shadow-border-4-olive-light:focus{
  box-shadow: inset 0 0 0 4px #DFF5F6;
}

.focus\:shadow-border-4-olive-drab:focus{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.focus\:shadow-border-4-olive-dark:focus{
  box-shadow: inset 0 0 0 4px #096348;
}

.focus\:shadow-border-olive-light:focus{
  box-shadow: inset 0 0 0 1px #DFF5F6;
}

.focus\:shadow-border-olive-drab:focus{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.focus\:shadow-border-olive-dark:focus{
  box-shadow: inset 0 0 0 1px #096348;
}

.focus\:shadow-border-2-daisy-light:focus{
  box-shadow: inset 0 0 0 2px #fffce1;
}

.focus\:shadow-border-4-daisy-light:focus{
  box-shadow: inset 0 0 0 4px #fffce1;
}

.focus\:shadow-border-daisy-light:focus{
  box-shadow: inset 0 0 0 1px #fffce1;
}

.focus\:shadow-border-2-feedback-gumby:focus{
  box-shadow: inset 0 0 0 2px #c8e6c9;
}

.focus\:shadow-border-2-feedback-daisy:focus{
  box-shadow: inset 0 0 0 2px #fff9c4;
}

.focus\:shadow-border-2-feedback-pokey:focus{
  box-shadow: inset 0 0 0 2px #ffcdd2;
}

.focus\:shadow-border-2-feedback-aster:focus{
  box-shadow: inset 0 0 0 2px #b3e5fc;
}

.focus\:shadow-border-2-feedback-aster-dark:focus{
  box-shadow: inset 0 0 0 2px #03567C;
}

.focus\:shadow-border-2-feedback-roxo:focus{
  box-shadow: inset 0 0 0 2px #d1c4e9;
}

.focus\:shadow-border-2-feedback-error:focus{
  box-shadow: inset 0 0 0 2px #f44336;
}

.focus\:shadow-border-2-feedback-success:focus{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.focus\:shadow-border-4-feedback-gumby:focus{
  box-shadow: inset 0 0 0 4px #c8e6c9;
}

.focus\:shadow-border-4-feedback-daisy:focus{
  box-shadow: inset 0 0 0 4px #fff9c4;
}

.focus\:shadow-border-4-feedback-pokey:focus{
  box-shadow: inset 0 0 0 4px #ffcdd2;
}

.focus\:shadow-border-4-feedback-aster:focus{
  box-shadow: inset 0 0 0 4px #b3e5fc;
}

.focus\:shadow-border-4-feedback-aster-dark:focus{
  box-shadow: inset 0 0 0 4px #03567C;
}

.focus\:shadow-border-4-feedback-roxo:focus{
  box-shadow: inset 0 0 0 4px #d1c4e9;
}

.focus\:shadow-border-4-feedback-error:focus{
  box-shadow: inset 0 0 0 4px #f44336;
}

.focus\:shadow-border-4-feedback-success:focus{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.focus\:shadow-border-feedback-gumby:focus{
  box-shadow: inset 0 0 0 1px #c8e6c9;
}

.focus\:shadow-border-feedback-daisy:focus{
  box-shadow: inset 0 0 0 1px #fff9c4;
}

.focus\:shadow-border-feedback-pokey:focus{
  box-shadow: inset 0 0 0 1px #ffcdd2;
}

.focus\:shadow-border-feedback-aster:focus{
  box-shadow: inset 0 0 0 1px #b3e5fc;
}

.focus\:shadow-border-feedback-aster-dark:focus{
  box-shadow: inset 0 0 0 1px #03567C;
}

.focus\:shadow-border-feedback-roxo:focus{
  box-shadow: inset 0 0 0 1px #d1c4e9;
}

.focus\:shadow-border-feedback-error:focus{
  box-shadow: inset 0 0 0 1px #f44336;
}

.focus\:shadow-border-feedback-success:focus{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.focus\:shadow-border-2-functional-aoki:focus{
  box-shadow: inset 0 0 0 2px #6f2ca0;
}

.focus\:shadow-border-2-functional-aoki-dark:focus{
  box-shadow: inset 0 0 0 2px #3e0071;
}

.focus\:shadow-border-2-functional-aoki-hocus:focus{
  box-shadow: inset 0 0 0 2px #9035af;
}

.focus\:shadow-border-2-functional-aoki-active:focus{
  box-shadow: inset 0 0 0 2px #a04fbc;
}

.focus\:shadow-border-2-functional-aoki-light:focus{
  box-shadow: inset 0 0 0 2px #a15ad2;
}

.focus\:shadow-border-2-functional-kermit:focus{
  box-shadow: inset 0 0 0 2px #5aa120;
}

.focus\:shadow-border-4-functional-aoki:focus{
  box-shadow: inset 0 0 0 4px #6f2ca0;
}

.focus\:shadow-border-4-functional-aoki-dark:focus{
  box-shadow: inset 0 0 0 4px #3e0071;
}

.focus\:shadow-border-4-functional-aoki-hocus:focus{
  box-shadow: inset 0 0 0 4px #9035af;
}

.focus\:shadow-border-4-functional-aoki-active:focus{
  box-shadow: inset 0 0 0 4px #a04fbc;
}

.focus\:shadow-border-4-functional-aoki-light:focus{
  box-shadow: inset 0 0 0 4px #a15ad2;
}

.focus\:shadow-border-4-functional-kermit:focus{
  box-shadow: inset 0 0 0 4px #5aa120;
}

.focus\:shadow-border-functional-aoki:focus{
  box-shadow: inset 0 0 0 1px #6f2ca0;
}

.focus\:shadow-border-functional-aoki-dark:focus{
  box-shadow: inset 0 0 0 1px #3e0071;
}

.focus\:shadow-border-functional-aoki-hocus:focus{
  box-shadow: inset 0 0 0 1px #9035af;
}

.focus\:shadow-border-functional-aoki-active:focus{
  box-shadow: inset 0 0 0 1px #a04fbc;
}

.focus\:shadow-border-functional-aoki-light:focus{
  box-shadow: inset 0 0 0 1px #a15ad2;
}

.focus\:shadow-border-functional-kermit:focus{
  box-shadow: inset 0 0 0 1px #5aa120;
}

.focus\:shadow-border-2-mixlabPlus-light:focus{
  box-shadow: inset 0 0 0 2px #FFFEF9;
}

.focus\:shadow-border-4-mixlabPlus-light:focus{
  box-shadow: inset 0 0 0 4px #FFFEF9;
}

.focus\:shadow-border-mixlabPlus-light:focus{
  box-shadow: inset 0 0 0 1px #FFFEF9;
}

.focus\:shadow-border-2-primary-orange-light:focus{
  box-shadow: inset 0 0 0 2px ;
}

.focus\:shadow-border-4-primary-orange-light:focus{
  box-shadow: inset 0 0 0 4px ;
}

.focus\:shadow-border-primary-orange-light:focus{
  box-shadow: inset 0 0 0 1px ;
}

.focus\:shadow-border-2-off-white:focus{
  box-shadow: inset 0 0 0 2px #FAF9F6;
}

.focus\:shadow-border-4-off-white:focus{
  box-shadow: inset 0 0 0 4px #FAF9F6;
}

.focus\:shadow-border-off-white:focus{
  box-shadow: inset 0 0 0 1px #FAF9F6;
}

.active\:shadow-border-2-black:active{
  box-shadow: inset 0 0 0 2px #000000;
}

.active\:shadow-border-4-black:active{
  box-shadow: inset 0 0 0 4px #000000;
}

.active\:shadow-border-black:active{
  box-shadow: inset 0 0 0 1px #000000;
}

.active\:shadow-border-2-transparent:active{
  box-shadow: inset 0 0 0 2px transparent;
}

.active\:shadow-border-4-transparent:active{
  box-shadow: inset 0 0 0 4px transparent;
}

.active\:shadow-border-transparent:active{
  box-shadow: inset 0 0 0 1px transparent;
}

.active\:shadow-border-2-error:active{
  box-shadow: inset 0 0 0 2px #f44336;
}

.active\:shadow-border-4-error:active{
  box-shadow: inset 0 0 0 4px #f44336;
}

.active\:shadow-border-error:active{
  box-shadow: inset 0 0 0 1px #f44336;
}

.active\:shadow-border-2-success:active{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.active\:shadow-border-4-success:active{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.active\:shadow-border-success:active{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.active\:shadow-border-2-white-10:active{
  box-shadow: inset 0 0 0 2px #FBFBFB;
}

.active\:shadow-border-2-white-20:active{
  box-shadow: inset 0 0 0 2px #ECECEC;
}

.active\:shadow-border-2-white:active{
  box-shadow: inset 0 0 0 2px #FFFFFF;
}

.active\:shadow-border-4-white-10:active{
  box-shadow: inset 0 0 0 4px #FBFBFB;
}

.active\:shadow-border-4-white-20:active{
  box-shadow: inset 0 0 0 4px #ECECEC;
}

.active\:shadow-border-4-white:active{
  box-shadow: inset 0 0 0 4px #FFFFFF;
}

.active\:shadow-border-white-10:active{
  box-shadow: inset 0 0 0 1px #FBFBFB;
}

.active\:shadow-border-white-20:active{
  box-shadow: inset 0 0 0 1px #ECECEC;
}

.active\:shadow-border-white:active{
  box-shadow: inset 0 0 0 1px #FFFFFF;
}

.active\:shadow-border-2-cheeto:active{
  box-shadow: inset 0 0 0 2px #f7a500;
}

.active\:shadow-border-2-cheeto-very-light:active{
  box-shadow: inset 0 0 0 2px #fffaf2;
}

.active\:shadow-border-2-cheeto-light:active{
  box-shadow: inset 0 0 0 2px #ffd649;
}

.active\:shadow-border-2-cheeto-dark:active{
  box-shadow: inset 0 0 0 2px #bf7600;
}

.active\:shadow-border-2-cheeto-hocus:active{
  box-shadow: inset 0 0 0 2px #f8bd0f;
}

.active\:shadow-border-2-cheeto-active:active{
  box-shadow: inset 0 0 0 2px #f8d61b;
}

.active\:shadow-border-2-cheeto-ml-plus:active{
  box-shadow: inset 0 0 0 2px #FBEFCA;
}

.active\:shadow-border-2-cheeto-banner:active{
  box-shadow: inset 0 0 0 2px #fef7e5;
}

.active\:shadow-border-4-cheeto:active{
  box-shadow: inset 0 0 0 4px #f7a500;
}

.active\:shadow-border-4-cheeto-very-light:active{
  box-shadow: inset 0 0 0 4px #fffaf2;
}

.active\:shadow-border-4-cheeto-light:active{
  box-shadow: inset 0 0 0 4px #ffd649;
}

.active\:shadow-border-4-cheeto-dark:active{
  box-shadow: inset 0 0 0 4px #bf7600;
}

.active\:shadow-border-4-cheeto-hocus:active{
  box-shadow: inset 0 0 0 4px #f8bd0f;
}

.active\:shadow-border-4-cheeto-active:active{
  box-shadow: inset 0 0 0 4px #f8d61b;
}

.active\:shadow-border-4-cheeto-ml-plus:active{
  box-shadow: inset 0 0 0 4px #FBEFCA;
}

.active\:shadow-border-4-cheeto-banner:active{
  box-shadow: inset 0 0 0 4px #fef7e5;
}

.active\:shadow-border-cheeto:active{
  box-shadow: inset 0 0 0 1px #f7a500;
}

.active\:shadow-border-cheeto-very-light:active{
  box-shadow: inset 0 0 0 1px #fffaf2;
}

.active\:shadow-border-cheeto-light:active{
  box-shadow: inset 0 0 0 1px #ffd649;
}

.active\:shadow-border-cheeto-dark:active{
  box-shadow: inset 0 0 0 1px #bf7600;
}

.active\:shadow-border-cheeto-hocus:active{
  box-shadow: inset 0 0 0 1px #f8bd0f;
}

.active\:shadow-border-cheeto-active:active{
  box-shadow: inset 0 0 0 1px #f8d61b;
}

.active\:shadow-border-cheeto-ml-plus:active{
  box-shadow: inset 0 0 0 1px #FBEFCA;
}

.active\:shadow-border-cheeto-banner:active{
  box-shadow: inset 0 0 0 1px #fef7e5;
}

.active\:shadow-border-2-gracy-1:active{
  box-shadow: inset 0 0 0 2px #f8f8fa;
}

.active\:shadow-border-2-gracy-10:active{
  box-shadow: inset 0 0 0 2px #faf7fd;
}

.active\:shadow-border-2-gracy-20:active{
  box-shadow: inset 0 0 0 2px #e0dde3;
}

.active\:shadow-border-2-gracy-30:active{
  box-shadow: inset 0 0 0 2px #c8c5ca;
}

.active\:shadow-border-2-gracy-40:active{
  box-shadow: inset 0 0 0 2px #aeacb0;
}

.active\:shadow-border-2-gracy-50:active{
  box-shadow: inset 0 0 0 2px #969497;
}

.active\:shadow-border-2-gracy-60:active{
  box-shadow: inset 0 0 0 2px #7c7b7e;
}

.active\:shadow-border-2-gracy-70:active{
  box-shadow: inset 0 0 0 2px #646265;
}

.active\:shadow-border-2-gracy-80:active{
  box-shadow: inset 0 0 0 2px #4a494b;
}

.active\:shadow-border-2-gracy-90:active{
  box-shadow: inset 0 0 0 2px #323132;
}

.active\:shadow-border-2-gracy-100:active{
  box-shadow: inset 0 0 0 2px #181818;
}

.active\:shadow-border-2-gracy:active{
  box-shadow: inset 0 0 0 2px #6F7878;
}

.active\:shadow-border-2-gracy-overlay-90:active{
  box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
}

.active\:shadow-border-4-gracy-1:active{
  box-shadow: inset 0 0 0 4px #f8f8fa;
}

.active\:shadow-border-4-gracy-10:active{
  box-shadow: inset 0 0 0 4px #faf7fd;
}

.active\:shadow-border-4-gracy-20:active{
  box-shadow: inset 0 0 0 4px #e0dde3;
}

.active\:shadow-border-4-gracy-30:active{
  box-shadow: inset 0 0 0 4px #c8c5ca;
}

.active\:shadow-border-4-gracy-40:active{
  box-shadow: inset 0 0 0 4px #aeacb0;
}

.active\:shadow-border-4-gracy-50:active{
  box-shadow: inset 0 0 0 4px #969497;
}

.active\:shadow-border-4-gracy-60:active{
  box-shadow: inset 0 0 0 4px #7c7b7e;
}

.active\:shadow-border-4-gracy-70:active{
  box-shadow: inset 0 0 0 4px #646265;
}

.active\:shadow-border-4-gracy-80:active{
  box-shadow: inset 0 0 0 4px #4a494b;
}

.active\:shadow-border-4-gracy-90:active{
  box-shadow: inset 0 0 0 4px #323132;
}

.active\:shadow-border-4-gracy-100:active{
  box-shadow: inset 0 0 0 4px #181818;
}

.active\:shadow-border-4-gracy:active{
  box-shadow: inset 0 0 0 4px #6F7878;
}

.active\:shadow-border-4-gracy-overlay-90:active{
  box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
}

.active\:shadow-border-gracy-1:active{
  box-shadow: inset 0 0 0 1px #f8f8fa;
}

.active\:shadow-border-gracy-10:active{
  box-shadow: inset 0 0 0 1px #faf7fd;
}

.active\:shadow-border-gracy-20:active{
  box-shadow: inset 0 0 0 1px #e0dde3;
}

.active\:shadow-border-gracy-30:active{
  box-shadow: inset 0 0 0 1px #c8c5ca;
}

.active\:shadow-border-gracy-40:active{
  box-shadow: inset 0 0 0 1px #aeacb0;
}

.active\:shadow-border-gracy-50:active{
  box-shadow: inset 0 0 0 1px #969497;
}

.active\:shadow-border-gracy-60:active{
  box-shadow: inset 0 0 0 1px #7c7b7e;
}

.active\:shadow-border-gracy-70:active{
  box-shadow: inset 0 0 0 1px #646265;
}

.active\:shadow-border-gracy-80:active{
  box-shadow: inset 0 0 0 1px #4a494b;
}

.active\:shadow-border-gracy-90:active{
  box-shadow: inset 0 0 0 1px #323132;
}

.active\:shadow-border-gracy-100:active{
  box-shadow: inset 0 0 0 1px #181818;
}

.active\:shadow-border-gracy:active{
  box-shadow: inset 0 0 0 1px #6F7878;
}

.active\:shadow-border-gracy-overlay-90:active{
  box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
}

.active\:shadow-border-2-login-0:active{
  box-shadow: inset 0 0 0 2px #;
}

.active\:shadow-border-2-login-1:active{
  box-shadow: inset 0 0 0 2px F;
}

.active\:shadow-border-2-login-2:active{
  box-shadow: inset 0 0 0 2px D;
}

.active\:shadow-border-2-login-3:active{
  box-shadow: inset 0 0 0 2px F;
}

.active\:shadow-border-2-login-4:active{
  box-shadow: inset 0 0 0 2px 7;
}

.active\:shadow-border-2-login-5:active{
  box-shadow: inset 0 0 0 2px E;
}

.active\:shadow-border-2-login-6:active{
  box-shadow: inset 0 0 0 2px 7;
}

.active\:shadow-border-2-login-bold:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-strip:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-stripColors:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-trap:active{
  box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
}

.active\:shadow-border-2-login-zalgo:active{
  box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
}

.active\:shadow-border-2-login-zebra:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-rainbow:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-random:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-america:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-reset:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-dim:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-italic:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-underline:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-inverse:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-hidden:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-strikethrough:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-black:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-red:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-green:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-yellow:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-blue:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-magenta:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-cyan:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-white:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-gray:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-grey:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-brightRed:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-brightGreen:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-brightYellow:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-brightBlue:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-brightMagenta:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-brightCyan:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-brightWhite:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgBlack:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgRed:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgGreen:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgYellow:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgBlue:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgMagenta:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgCyan:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgWhite:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgGray:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgGrey:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgBrightRed:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgBrightGreen:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgBrightYellow:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgBrightBlue:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgBrightMagenta:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgBrightCyan:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-bgBrightWhite:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-blackBG:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-redBG:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-greenBG:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-yellowBG:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-blueBG:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-magentaBG:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-cyanBG:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-2-login-whiteBG:active{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.active\:shadow-border-4-login-0:active{
  box-shadow: inset 0 0 0 4px #;
}

.active\:shadow-border-4-login-1:active{
  box-shadow: inset 0 0 0 4px F;
}

.active\:shadow-border-4-login-2:active{
  box-shadow: inset 0 0 0 4px D;
}

.active\:shadow-border-4-login-3:active{
  box-shadow: inset 0 0 0 4px F;
}

.active\:shadow-border-4-login-4:active{
  box-shadow: inset 0 0 0 4px 7;
}

.active\:shadow-border-4-login-5:active{
  box-shadow: inset 0 0 0 4px E;
}

.active\:shadow-border-4-login-6:active{
  box-shadow: inset 0 0 0 4px 7;
}

.active\:shadow-border-4-login-bold:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-strip:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-stripColors:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-trap:active{
  box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
}

.active\:shadow-border-4-login-zalgo:active{
  box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
}

.active\:shadow-border-4-login-zebra:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-rainbow:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-random:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-america:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-reset:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-dim:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-italic:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-underline:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-inverse:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-hidden:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-strikethrough:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-black:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-red:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-green:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-yellow:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-blue:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-magenta:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-cyan:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-white:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-gray:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-grey:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-brightRed:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-brightGreen:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-brightYellow:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-brightBlue:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-brightMagenta:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-brightCyan:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-brightWhite:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgBlack:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgRed:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgGreen:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgYellow:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgBlue:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgMagenta:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgCyan:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgWhite:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgGray:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgGrey:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgBrightRed:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgBrightGreen:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgBrightYellow:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgBrightBlue:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgBrightMagenta:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgBrightCyan:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-bgBrightWhite:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-blackBG:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-redBG:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-greenBG:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-yellowBG:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-blueBG:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-magentaBG:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-cyanBG:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-4-login-whiteBG:active{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.active\:shadow-border-login-0:active{
  box-shadow: inset 0 0 0 1px #;
}

.active\:shadow-border-login-1:active{
  box-shadow: inset 0 0 0 1px F;
}

.active\:shadow-border-login-2:active{
  box-shadow: inset 0 0 0 1px D;
}

.active\:shadow-border-login-3:active{
  box-shadow: inset 0 0 0 1px F;
}

.active\:shadow-border-login-4:active{
  box-shadow: inset 0 0 0 1px 7;
}

.active\:shadow-border-login-5:active{
  box-shadow: inset 0 0 0 1px E;
}

.active\:shadow-border-login-6:active{
  box-shadow: inset 0 0 0 1px 7;
}

.active\:shadow-border-login-bold:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-strip:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-stripColors:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-trap:active{
  box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
}

.active\:shadow-border-login-zalgo:active{
  box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
}

.active\:shadow-border-login-zebra:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-rainbow:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-random:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-america:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-reset:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-dim:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-italic:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-underline:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-inverse:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-hidden:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-strikethrough:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-black:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-red:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-green:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-yellow:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-blue:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-magenta:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-cyan:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-white:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-gray:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-grey:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-brightRed:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-brightGreen:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-brightYellow:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-brightBlue:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-brightMagenta:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-brightCyan:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-brightWhite:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgBlack:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgRed:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgGreen:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgYellow:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgBlue:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgMagenta:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgCyan:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgWhite:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgGray:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgGrey:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgBrightRed:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgBrightGreen:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgBrightYellow:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgBrightBlue:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgBrightMagenta:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgBrightCyan:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-bgBrightWhite:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-blackBG:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-redBG:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-greenBG:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-yellowBG:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-blueBG:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-magentaBG:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-cyanBG:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-login-whiteBG:active{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.active\:shadow-border-2-olive-light:active{
  box-shadow: inset 0 0 0 2px #DFF5F6;
}

.active\:shadow-border-2-olive-drab:active{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.active\:shadow-border-2-olive-dark:active{
  box-shadow: inset 0 0 0 2px #096348;
}

.active\:shadow-border-4-olive-light:active{
  box-shadow: inset 0 0 0 4px #DFF5F6;
}

.active\:shadow-border-4-olive-drab:active{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.active\:shadow-border-4-olive-dark:active{
  box-shadow: inset 0 0 0 4px #096348;
}

.active\:shadow-border-olive-light:active{
  box-shadow: inset 0 0 0 1px #DFF5F6;
}

.active\:shadow-border-olive-drab:active{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.active\:shadow-border-olive-dark:active{
  box-shadow: inset 0 0 0 1px #096348;
}

.active\:shadow-border-2-daisy-light:active{
  box-shadow: inset 0 0 0 2px #fffce1;
}

.active\:shadow-border-4-daisy-light:active{
  box-shadow: inset 0 0 0 4px #fffce1;
}

.active\:shadow-border-daisy-light:active{
  box-shadow: inset 0 0 0 1px #fffce1;
}

.active\:shadow-border-2-feedback-gumby:active{
  box-shadow: inset 0 0 0 2px #c8e6c9;
}

.active\:shadow-border-2-feedback-daisy:active{
  box-shadow: inset 0 0 0 2px #fff9c4;
}

.active\:shadow-border-2-feedback-pokey:active{
  box-shadow: inset 0 0 0 2px #ffcdd2;
}

.active\:shadow-border-2-feedback-aster:active{
  box-shadow: inset 0 0 0 2px #b3e5fc;
}

.active\:shadow-border-2-feedback-aster-dark:active{
  box-shadow: inset 0 0 0 2px #03567C;
}

.active\:shadow-border-2-feedback-roxo:active{
  box-shadow: inset 0 0 0 2px #d1c4e9;
}

.active\:shadow-border-2-feedback-error:active{
  box-shadow: inset 0 0 0 2px #f44336;
}

.active\:shadow-border-2-feedback-success:active{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.active\:shadow-border-4-feedback-gumby:active{
  box-shadow: inset 0 0 0 4px #c8e6c9;
}

.active\:shadow-border-4-feedback-daisy:active{
  box-shadow: inset 0 0 0 4px #fff9c4;
}

.active\:shadow-border-4-feedback-pokey:active{
  box-shadow: inset 0 0 0 4px #ffcdd2;
}

.active\:shadow-border-4-feedback-aster:active{
  box-shadow: inset 0 0 0 4px #b3e5fc;
}

.active\:shadow-border-4-feedback-aster-dark:active{
  box-shadow: inset 0 0 0 4px #03567C;
}

.active\:shadow-border-4-feedback-roxo:active{
  box-shadow: inset 0 0 0 4px #d1c4e9;
}

.active\:shadow-border-4-feedback-error:active{
  box-shadow: inset 0 0 0 4px #f44336;
}

.active\:shadow-border-4-feedback-success:active{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.active\:shadow-border-feedback-gumby:active{
  box-shadow: inset 0 0 0 1px #c8e6c9;
}

.active\:shadow-border-feedback-daisy:active{
  box-shadow: inset 0 0 0 1px #fff9c4;
}

.active\:shadow-border-feedback-pokey:active{
  box-shadow: inset 0 0 0 1px #ffcdd2;
}

.active\:shadow-border-feedback-aster:active{
  box-shadow: inset 0 0 0 1px #b3e5fc;
}

.active\:shadow-border-feedback-aster-dark:active{
  box-shadow: inset 0 0 0 1px #03567C;
}

.active\:shadow-border-feedback-roxo:active{
  box-shadow: inset 0 0 0 1px #d1c4e9;
}

.active\:shadow-border-feedback-error:active{
  box-shadow: inset 0 0 0 1px #f44336;
}

.active\:shadow-border-feedback-success:active{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.active\:shadow-border-2-functional-aoki:active{
  box-shadow: inset 0 0 0 2px #6f2ca0;
}

.active\:shadow-border-2-functional-aoki-dark:active{
  box-shadow: inset 0 0 0 2px #3e0071;
}

.active\:shadow-border-2-functional-aoki-hocus:active{
  box-shadow: inset 0 0 0 2px #9035af;
}

.active\:shadow-border-2-functional-aoki-active:active{
  box-shadow: inset 0 0 0 2px #a04fbc;
}

.active\:shadow-border-2-functional-aoki-light:active{
  box-shadow: inset 0 0 0 2px #a15ad2;
}

.active\:shadow-border-2-functional-kermit:active{
  box-shadow: inset 0 0 0 2px #5aa120;
}

.active\:shadow-border-4-functional-aoki:active{
  box-shadow: inset 0 0 0 4px #6f2ca0;
}

.active\:shadow-border-4-functional-aoki-dark:active{
  box-shadow: inset 0 0 0 4px #3e0071;
}

.active\:shadow-border-4-functional-aoki-hocus:active{
  box-shadow: inset 0 0 0 4px #9035af;
}

.active\:shadow-border-4-functional-aoki-active:active{
  box-shadow: inset 0 0 0 4px #a04fbc;
}

.active\:shadow-border-4-functional-aoki-light:active{
  box-shadow: inset 0 0 0 4px #a15ad2;
}

.active\:shadow-border-4-functional-kermit:active{
  box-shadow: inset 0 0 0 4px #5aa120;
}

.active\:shadow-border-functional-aoki:active{
  box-shadow: inset 0 0 0 1px #6f2ca0;
}

.active\:shadow-border-functional-aoki-dark:active{
  box-shadow: inset 0 0 0 1px #3e0071;
}

.active\:shadow-border-functional-aoki-hocus:active{
  box-shadow: inset 0 0 0 1px #9035af;
}

.active\:shadow-border-functional-aoki-active:active{
  box-shadow: inset 0 0 0 1px #a04fbc;
}

.active\:shadow-border-functional-aoki-light:active{
  box-shadow: inset 0 0 0 1px #a15ad2;
}

.active\:shadow-border-functional-kermit:active{
  box-shadow: inset 0 0 0 1px #5aa120;
}

.active\:shadow-border-2-mixlabPlus-light:active{
  box-shadow: inset 0 0 0 2px #FFFEF9;
}

.active\:shadow-border-4-mixlabPlus-light:active{
  box-shadow: inset 0 0 0 4px #FFFEF9;
}

.active\:shadow-border-mixlabPlus-light:active{
  box-shadow: inset 0 0 0 1px #FFFEF9;
}

.active\:shadow-border-2-primary-orange-light:active{
  box-shadow: inset 0 0 0 2px ;
}

.active\:shadow-border-4-primary-orange-light:active{
  box-shadow: inset 0 0 0 4px ;
}

.active\:shadow-border-primary-orange-light:active{
  box-shadow: inset 0 0 0 1px ;
}

.active\:shadow-border-2-off-white:active{
  box-shadow: inset 0 0 0 2px #FAF9F6;
}

.active\:shadow-border-4-off-white:active{
  box-shadow: inset 0 0 0 4px #FAF9F6;
}

.active\:shadow-border-off-white:active{
  box-shadow: inset 0 0 0 1px #FAF9F6;
}

.first\:shadow-border-2-black:first-child{
  box-shadow: inset 0 0 0 2px #000000;
}

.first\:shadow-border-4-black:first-child{
  box-shadow: inset 0 0 0 4px #000000;
}

.first\:shadow-border-black:first-child{
  box-shadow: inset 0 0 0 1px #000000;
}

.first\:shadow-border-2-transparent:first-child{
  box-shadow: inset 0 0 0 2px transparent;
}

.first\:shadow-border-4-transparent:first-child{
  box-shadow: inset 0 0 0 4px transparent;
}

.first\:shadow-border-transparent:first-child{
  box-shadow: inset 0 0 0 1px transparent;
}

.first\:shadow-border-2-error:first-child{
  box-shadow: inset 0 0 0 2px #f44336;
}

.first\:shadow-border-4-error:first-child{
  box-shadow: inset 0 0 0 4px #f44336;
}

.first\:shadow-border-error:first-child{
  box-shadow: inset 0 0 0 1px #f44336;
}

.first\:shadow-border-2-success:first-child{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.first\:shadow-border-4-success:first-child{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.first\:shadow-border-success:first-child{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.first\:shadow-border-2-white-10:first-child{
  box-shadow: inset 0 0 0 2px #FBFBFB;
}

.first\:shadow-border-2-white-20:first-child{
  box-shadow: inset 0 0 0 2px #ECECEC;
}

.first\:shadow-border-2-white:first-child{
  box-shadow: inset 0 0 0 2px #FFFFFF;
}

.first\:shadow-border-4-white-10:first-child{
  box-shadow: inset 0 0 0 4px #FBFBFB;
}

.first\:shadow-border-4-white-20:first-child{
  box-shadow: inset 0 0 0 4px #ECECEC;
}

.first\:shadow-border-4-white:first-child{
  box-shadow: inset 0 0 0 4px #FFFFFF;
}

.first\:shadow-border-white-10:first-child{
  box-shadow: inset 0 0 0 1px #FBFBFB;
}

.first\:shadow-border-white-20:first-child{
  box-shadow: inset 0 0 0 1px #ECECEC;
}

.first\:shadow-border-white:first-child{
  box-shadow: inset 0 0 0 1px #FFFFFF;
}

.first\:shadow-border-2-cheeto:first-child{
  box-shadow: inset 0 0 0 2px #f7a500;
}

.first\:shadow-border-2-cheeto-very-light:first-child{
  box-shadow: inset 0 0 0 2px #fffaf2;
}

.first\:shadow-border-2-cheeto-light:first-child{
  box-shadow: inset 0 0 0 2px #ffd649;
}

.first\:shadow-border-2-cheeto-dark:first-child{
  box-shadow: inset 0 0 0 2px #bf7600;
}

.first\:shadow-border-2-cheeto-hocus:first-child{
  box-shadow: inset 0 0 0 2px #f8bd0f;
}

.first\:shadow-border-2-cheeto-active:first-child{
  box-shadow: inset 0 0 0 2px #f8d61b;
}

.first\:shadow-border-2-cheeto-ml-plus:first-child{
  box-shadow: inset 0 0 0 2px #FBEFCA;
}

.first\:shadow-border-2-cheeto-banner:first-child{
  box-shadow: inset 0 0 0 2px #fef7e5;
}

.first\:shadow-border-4-cheeto:first-child{
  box-shadow: inset 0 0 0 4px #f7a500;
}

.first\:shadow-border-4-cheeto-very-light:first-child{
  box-shadow: inset 0 0 0 4px #fffaf2;
}

.first\:shadow-border-4-cheeto-light:first-child{
  box-shadow: inset 0 0 0 4px #ffd649;
}

.first\:shadow-border-4-cheeto-dark:first-child{
  box-shadow: inset 0 0 0 4px #bf7600;
}

.first\:shadow-border-4-cheeto-hocus:first-child{
  box-shadow: inset 0 0 0 4px #f8bd0f;
}

.first\:shadow-border-4-cheeto-active:first-child{
  box-shadow: inset 0 0 0 4px #f8d61b;
}

.first\:shadow-border-4-cheeto-ml-plus:first-child{
  box-shadow: inset 0 0 0 4px #FBEFCA;
}

.first\:shadow-border-4-cheeto-banner:first-child{
  box-shadow: inset 0 0 0 4px #fef7e5;
}

.first\:shadow-border-cheeto:first-child{
  box-shadow: inset 0 0 0 1px #f7a500;
}

.first\:shadow-border-cheeto-very-light:first-child{
  box-shadow: inset 0 0 0 1px #fffaf2;
}

.first\:shadow-border-cheeto-light:first-child{
  box-shadow: inset 0 0 0 1px #ffd649;
}

.first\:shadow-border-cheeto-dark:first-child{
  box-shadow: inset 0 0 0 1px #bf7600;
}

.first\:shadow-border-cheeto-hocus:first-child{
  box-shadow: inset 0 0 0 1px #f8bd0f;
}

.first\:shadow-border-cheeto-active:first-child{
  box-shadow: inset 0 0 0 1px #f8d61b;
}

.first\:shadow-border-cheeto-ml-plus:first-child{
  box-shadow: inset 0 0 0 1px #FBEFCA;
}

.first\:shadow-border-cheeto-banner:first-child{
  box-shadow: inset 0 0 0 1px #fef7e5;
}

.first\:shadow-border-2-gracy-1:first-child{
  box-shadow: inset 0 0 0 2px #f8f8fa;
}

.first\:shadow-border-2-gracy-10:first-child{
  box-shadow: inset 0 0 0 2px #faf7fd;
}

.first\:shadow-border-2-gracy-20:first-child{
  box-shadow: inset 0 0 0 2px #e0dde3;
}

.first\:shadow-border-2-gracy-30:first-child{
  box-shadow: inset 0 0 0 2px #c8c5ca;
}

.first\:shadow-border-2-gracy-40:first-child{
  box-shadow: inset 0 0 0 2px #aeacb0;
}

.first\:shadow-border-2-gracy-50:first-child{
  box-shadow: inset 0 0 0 2px #969497;
}

.first\:shadow-border-2-gracy-60:first-child{
  box-shadow: inset 0 0 0 2px #7c7b7e;
}

.first\:shadow-border-2-gracy-70:first-child{
  box-shadow: inset 0 0 0 2px #646265;
}

.first\:shadow-border-2-gracy-80:first-child{
  box-shadow: inset 0 0 0 2px #4a494b;
}

.first\:shadow-border-2-gracy-90:first-child{
  box-shadow: inset 0 0 0 2px #323132;
}

.first\:shadow-border-2-gracy-100:first-child{
  box-shadow: inset 0 0 0 2px #181818;
}

.first\:shadow-border-2-gracy:first-child{
  box-shadow: inset 0 0 0 2px #6F7878;
}

.first\:shadow-border-2-gracy-overlay-90:first-child{
  box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
}

.first\:shadow-border-4-gracy-1:first-child{
  box-shadow: inset 0 0 0 4px #f8f8fa;
}

.first\:shadow-border-4-gracy-10:first-child{
  box-shadow: inset 0 0 0 4px #faf7fd;
}

.first\:shadow-border-4-gracy-20:first-child{
  box-shadow: inset 0 0 0 4px #e0dde3;
}

.first\:shadow-border-4-gracy-30:first-child{
  box-shadow: inset 0 0 0 4px #c8c5ca;
}

.first\:shadow-border-4-gracy-40:first-child{
  box-shadow: inset 0 0 0 4px #aeacb0;
}

.first\:shadow-border-4-gracy-50:first-child{
  box-shadow: inset 0 0 0 4px #969497;
}

.first\:shadow-border-4-gracy-60:first-child{
  box-shadow: inset 0 0 0 4px #7c7b7e;
}

.first\:shadow-border-4-gracy-70:first-child{
  box-shadow: inset 0 0 0 4px #646265;
}

.first\:shadow-border-4-gracy-80:first-child{
  box-shadow: inset 0 0 0 4px #4a494b;
}

.first\:shadow-border-4-gracy-90:first-child{
  box-shadow: inset 0 0 0 4px #323132;
}

.first\:shadow-border-4-gracy-100:first-child{
  box-shadow: inset 0 0 0 4px #181818;
}

.first\:shadow-border-4-gracy:first-child{
  box-shadow: inset 0 0 0 4px #6F7878;
}

.first\:shadow-border-4-gracy-overlay-90:first-child{
  box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
}

.first\:shadow-border-gracy-1:first-child{
  box-shadow: inset 0 0 0 1px #f8f8fa;
}

.first\:shadow-border-gracy-10:first-child{
  box-shadow: inset 0 0 0 1px #faf7fd;
}

.first\:shadow-border-gracy-20:first-child{
  box-shadow: inset 0 0 0 1px #e0dde3;
}

.first\:shadow-border-gracy-30:first-child{
  box-shadow: inset 0 0 0 1px #c8c5ca;
}

.first\:shadow-border-gracy-40:first-child{
  box-shadow: inset 0 0 0 1px #aeacb0;
}

.first\:shadow-border-gracy-50:first-child{
  box-shadow: inset 0 0 0 1px #969497;
}

.first\:shadow-border-gracy-60:first-child{
  box-shadow: inset 0 0 0 1px #7c7b7e;
}

.first\:shadow-border-gracy-70:first-child{
  box-shadow: inset 0 0 0 1px #646265;
}

.first\:shadow-border-gracy-80:first-child{
  box-shadow: inset 0 0 0 1px #4a494b;
}

.first\:shadow-border-gracy-90:first-child{
  box-shadow: inset 0 0 0 1px #323132;
}

.first\:shadow-border-gracy-100:first-child{
  box-shadow: inset 0 0 0 1px #181818;
}

.first\:shadow-border-gracy:first-child{
  box-shadow: inset 0 0 0 1px #6F7878;
}

.first\:shadow-border-gracy-overlay-90:first-child{
  box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
}

.first\:shadow-border-2-login-0:first-child{
  box-shadow: inset 0 0 0 2px #;
}

.first\:shadow-border-2-login-1:first-child{
  box-shadow: inset 0 0 0 2px F;
}

.first\:shadow-border-2-login-2:first-child{
  box-shadow: inset 0 0 0 2px D;
}

.first\:shadow-border-2-login-3:first-child{
  box-shadow: inset 0 0 0 2px F;
}

.first\:shadow-border-2-login-4:first-child{
  box-shadow: inset 0 0 0 2px 7;
}

.first\:shadow-border-2-login-5:first-child{
  box-shadow: inset 0 0 0 2px E;
}

.first\:shadow-border-2-login-6:first-child{
  box-shadow: inset 0 0 0 2px 7;
}

.first\:shadow-border-2-login-bold:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-strip:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-stripColors:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-trap:first-child{
  box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
}

.first\:shadow-border-2-login-zalgo:first-child{
  box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
}

.first\:shadow-border-2-login-zebra:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-rainbow:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-random:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-america:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-reset:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-dim:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-italic:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-underline:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-inverse:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-hidden:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-strikethrough:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-black:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-red:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-green:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-yellow:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-blue:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-magenta:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-cyan:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-white:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-gray:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-grey:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-brightRed:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-brightGreen:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-brightYellow:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-brightBlue:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-brightMagenta:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-brightCyan:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-brightWhite:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgBlack:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgRed:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgGreen:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgYellow:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgBlue:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgMagenta:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgCyan:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgWhite:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgGray:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgGrey:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgBrightRed:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgBrightGreen:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgBrightYellow:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgBrightBlue:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgBrightMagenta:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgBrightCyan:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-bgBrightWhite:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-blackBG:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-redBG:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-greenBG:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-yellowBG:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-blueBG:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-magentaBG:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-cyanBG:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-2-login-whiteBG:first-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.first\:shadow-border-4-login-0:first-child{
  box-shadow: inset 0 0 0 4px #;
}

.first\:shadow-border-4-login-1:first-child{
  box-shadow: inset 0 0 0 4px F;
}

.first\:shadow-border-4-login-2:first-child{
  box-shadow: inset 0 0 0 4px D;
}

.first\:shadow-border-4-login-3:first-child{
  box-shadow: inset 0 0 0 4px F;
}

.first\:shadow-border-4-login-4:first-child{
  box-shadow: inset 0 0 0 4px 7;
}

.first\:shadow-border-4-login-5:first-child{
  box-shadow: inset 0 0 0 4px E;
}

.first\:shadow-border-4-login-6:first-child{
  box-shadow: inset 0 0 0 4px 7;
}

.first\:shadow-border-4-login-bold:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-strip:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-stripColors:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-trap:first-child{
  box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
}

.first\:shadow-border-4-login-zalgo:first-child{
  box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
}

.first\:shadow-border-4-login-zebra:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-rainbow:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-random:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-america:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-reset:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-dim:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-italic:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-underline:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-inverse:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-hidden:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-strikethrough:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-black:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-red:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-green:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-yellow:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-blue:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-magenta:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-cyan:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-white:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-gray:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-grey:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-brightRed:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-brightGreen:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-brightYellow:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-brightBlue:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-brightMagenta:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-brightCyan:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-brightWhite:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgBlack:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgRed:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgGreen:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgYellow:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgBlue:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgMagenta:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgCyan:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgWhite:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgGray:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgGrey:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgBrightRed:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgBrightGreen:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgBrightYellow:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgBrightBlue:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgBrightMagenta:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgBrightCyan:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-bgBrightWhite:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-blackBG:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-redBG:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-greenBG:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-yellowBG:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-blueBG:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-magentaBG:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-cyanBG:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-4-login-whiteBG:first-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.first\:shadow-border-login-0:first-child{
  box-shadow: inset 0 0 0 1px #;
}

.first\:shadow-border-login-1:first-child{
  box-shadow: inset 0 0 0 1px F;
}

.first\:shadow-border-login-2:first-child{
  box-shadow: inset 0 0 0 1px D;
}

.first\:shadow-border-login-3:first-child{
  box-shadow: inset 0 0 0 1px F;
}

.first\:shadow-border-login-4:first-child{
  box-shadow: inset 0 0 0 1px 7;
}

.first\:shadow-border-login-5:first-child{
  box-shadow: inset 0 0 0 1px E;
}

.first\:shadow-border-login-6:first-child{
  box-shadow: inset 0 0 0 1px 7;
}

.first\:shadow-border-login-bold:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-strip:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-stripColors:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-trap:first-child{
  box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
}

.first\:shadow-border-login-zalgo:first-child{
  box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
}

.first\:shadow-border-login-zebra:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-rainbow:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-random:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-america:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-reset:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-dim:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-italic:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-underline:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-inverse:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-hidden:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-strikethrough:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-black:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-red:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-green:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-yellow:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-blue:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-magenta:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-cyan:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-white:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-gray:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-grey:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-brightRed:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-brightGreen:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-brightYellow:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-brightBlue:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-brightMagenta:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-brightCyan:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-brightWhite:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgBlack:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgRed:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgGreen:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgYellow:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgBlue:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgMagenta:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgCyan:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgWhite:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgGray:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgGrey:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgBrightRed:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgBrightGreen:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgBrightYellow:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgBrightBlue:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgBrightMagenta:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgBrightCyan:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-bgBrightWhite:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-blackBG:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-redBG:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-greenBG:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-yellowBG:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-blueBG:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-magentaBG:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-cyanBG:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-login-whiteBG:first-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.first\:shadow-border-2-olive-light:first-child{
  box-shadow: inset 0 0 0 2px #DFF5F6;
}

.first\:shadow-border-2-olive-drab:first-child{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.first\:shadow-border-2-olive-dark:first-child{
  box-shadow: inset 0 0 0 2px #096348;
}

.first\:shadow-border-4-olive-light:first-child{
  box-shadow: inset 0 0 0 4px #DFF5F6;
}

.first\:shadow-border-4-olive-drab:first-child{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.first\:shadow-border-4-olive-dark:first-child{
  box-shadow: inset 0 0 0 4px #096348;
}

.first\:shadow-border-olive-light:first-child{
  box-shadow: inset 0 0 0 1px #DFF5F6;
}

.first\:shadow-border-olive-drab:first-child{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.first\:shadow-border-olive-dark:first-child{
  box-shadow: inset 0 0 0 1px #096348;
}

.first\:shadow-border-2-daisy-light:first-child{
  box-shadow: inset 0 0 0 2px #fffce1;
}

.first\:shadow-border-4-daisy-light:first-child{
  box-shadow: inset 0 0 0 4px #fffce1;
}

.first\:shadow-border-daisy-light:first-child{
  box-shadow: inset 0 0 0 1px #fffce1;
}

.first\:shadow-border-2-feedback-gumby:first-child{
  box-shadow: inset 0 0 0 2px #c8e6c9;
}

.first\:shadow-border-2-feedback-daisy:first-child{
  box-shadow: inset 0 0 0 2px #fff9c4;
}

.first\:shadow-border-2-feedback-pokey:first-child{
  box-shadow: inset 0 0 0 2px #ffcdd2;
}

.first\:shadow-border-2-feedback-aster:first-child{
  box-shadow: inset 0 0 0 2px #b3e5fc;
}

.first\:shadow-border-2-feedback-aster-dark:first-child{
  box-shadow: inset 0 0 0 2px #03567C;
}

.first\:shadow-border-2-feedback-roxo:first-child{
  box-shadow: inset 0 0 0 2px #d1c4e9;
}

.first\:shadow-border-2-feedback-error:first-child{
  box-shadow: inset 0 0 0 2px #f44336;
}

.first\:shadow-border-2-feedback-success:first-child{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.first\:shadow-border-4-feedback-gumby:first-child{
  box-shadow: inset 0 0 0 4px #c8e6c9;
}

.first\:shadow-border-4-feedback-daisy:first-child{
  box-shadow: inset 0 0 0 4px #fff9c4;
}

.first\:shadow-border-4-feedback-pokey:first-child{
  box-shadow: inset 0 0 0 4px #ffcdd2;
}

.first\:shadow-border-4-feedback-aster:first-child{
  box-shadow: inset 0 0 0 4px #b3e5fc;
}

.first\:shadow-border-4-feedback-aster-dark:first-child{
  box-shadow: inset 0 0 0 4px #03567C;
}

.first\:shadow-border-4-feedback-roxo:first-child{
  box-shadow: inset 0 0 0 4px #d1c4e9;
}

.first\:shadow-border-4-feedback-error:first-child{
  box-shadow: inset 0 0 0 4px #f44336;
}

.first\:shadow-border-4-feedback-success:first-child{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.first\:shadow-border-feedback-gumby:first-child{
  box-shadow: inset 0 0 0 1px #c8e6c9;
}

.first\:shadow-border-feedback-daisy:first-child{
  box-shadow: inset 0 0 0 1px #fff9c4;
}

.first\:shadow-border-feedback-pokey:first-child{
  box-shadow: inset 0 0 0 1px #ffcdd2;
}

.first\:shadow-border-feedback-aster:first-child{
  box-shadow: inset 0 0 0 1px #b3e5fc;
}

.first\:shadow-border-feedback-aster-dark:first-child{
  box-shadow: inset 0 0 0 1px #03567C;
}

.first\:shadow-border-feedback-roxo:first-child{
  box-shadow: inset 0 0 0 1px #d1c4e9;
}

.first\:shadow-border-feedback-error:first-child{
  box-shadow: inset 0 0 0 1px #f44336;
}

.first\:shadow-border-feedback-success:first-child{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.first\:shadow-border-2-functional-aoki:first-child{
  box-shadow: inset 0 0 0 2px #6f2ca0;
}

.first\:shadow-border-2-functional-aoki-dark:first-child{
  box-shadow: inset 0 0 0 2px #3e0071;
}

.first\:shadow-border-2-functional-aoki-hocus:first-child{
  box-shadow: inset 0 0 0 2px #9035af;
}

.first\:shadow-border-2-functional-aoki-active:first-child{
  box-shadow: inset 0 0 0 2px #a04fbc;
}

.first\:shadow-border-2-functional-aoki-light:first-child{
  box-shadow: inset 0 0 0 2px #a15ad2;
}

.first\:shadow-border-2-functional-kermit:first-child{
  box-shadow: inset 0 0 0 2px #5aa120;
}

.first\:shadow-border-4-functional-aoki:first-child{
  box-shadow: inset 0 0 0 4px #6f2ca0;
}

.first\:shadow-border-4-functional-aoki-dark:first-child{
  box-shadow: inset 0 0 0 4px #3e0071;
}

.first\:shadow-border-4-functional-aoki-hocus:first-child{
  box-shadow: inset 0 0 0 4px #9035af;
}

.first\:shadow-border-4-functional-aoki-active:first-child{
  box-shadow: inset 0 0 0 4px #a04fbc;
}

.first\:shadow-border-4-functional-aoki-light:first-child{
  box-shadow: inset 0 0 0 4px #a15ad2;
}

.first\:shadow-border-4-functional-kermit:first-child{
  box-shadow: inset 0 0 0 4px #5aa120;
}

.first\:shadow-border-functional-aoki:first-child{
  box-shadow: inset 0 0 0 1px #6f2ca0;
}

.first\:shadow-border-functional-aoki-dark:first-child{
  box-shadow: inset 0 0 0 1px #3e0071;
}

.first\:shadow-border-functional-aoki-hocus:first-child{
  box-shadow: inset 0 0 0 1px #9035af;
}

.first\:shadow-border-functional-aoki-active:first-child{
  box-shadow: inset 0 0 0 1px #a04fbc;
}

.first\:shadow-border-functional-aoki-light:first-child{
  box-shadow: inset 0 0 0 1px #a15ad2;
}

.first\:shadow-border-functional-kermit:first-child{
  box-shadow: inset 0 0 0 1px #5aa120;
}

.first\:shadow-border-2-mixlabPlus-light:first-child{
  box-shadow: inset 0 0 0 2px #FFFEF9;
}

.first\:shadow-border-4-mixlabPlus-light:first-child{
  box-shadow: inset 0 0 0 4px #FFFEF9;
}

.first\:shadow-border-mixlabPlus-light:first-child{
  box-shadow: inset 0 0 0 1px #FFFEF9;
}

.first\:shadow-border-2-primary-orange-light:first-child{
  box-shadow: inset 0 0 0 2px ;
}

.first\:shadow-border-4-primary-orange-light:first-child{
  box-shadow: inset 0 0 0 4px ;
}

.first\:shadow-border-primary-orange-light:first-child{
  box-shadow: inset 0 0 0 1px ;
}

.first\:shadow-border-2-off-white:first-child{
  box-shadow: inset 0 0 0 2px #FAF9F6;
}

.first\:shadow-border-4-off-white:first-child{
  box-shadow: inset 0 0 0 4px #FAF9F6;
}

.first\:shadow-border-off-white:first-child{
  box-shadow: inset 0 0 0 1px #FAF9F6;
}

.last\:shadow-border-2-black:last-child{
  box-shadow: inset 0 0 0 2px #000000;
}

.last\:shadow-border-4-black:last-child{
  box-shadow: inset 0 0 0 4px #000000;
}

.last\:shadow-border-black:last-child{
  box-shadow: inset 0 0 0 1px #000000;
}

.last\:shadow-border-2-transparent:last-child{
  box-shadow: inset 0 0 0 2px transparent;
}

.last\:shadow-border-4-transparent:last-child{
  box-shadow: inset 0 0 0 4px transparent;
}

.last\:shadow-border-transparent:last-child{
  box-shadow: inset 0 0 0 1px transparent;
}

.last\:shadow-border-2-error:last-child{
  box-shadow: inset 0 0 0 2px #f44336;
}

.last\:shadow-border-4-error:last-child{
  box-shadow: inset 0 0 0 4px #f44336;
}

.last\:shadow-border-error:last-child{
  box-shadow: inset 0 0 0 1px #f44336;
}

.last\:shadow-border-2-success:last-child{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.last\:shadow-border-4-success:last-child{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.last\:shadow-border-success:last-child{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.last\:shadow-border-2-white-10:last-child{
  box-shadow: inset 0 0 0 2px #FBFBFB;
}

.last\:shadow-border-2-white-20:last-child{
  box-shadow: inset 0 0 0 2px #ECECEC;
}

.last\:shadow-border-2-white:last-child{
  box-shadow: inset 0 0 0 2px #FFFFFF;
}

.last\:shadow-border-4-white-10:last-child{
  box-shadow: inset 0 0 0 4px #FBFBFB;
}

.last\:shadow-border-4-white-20:last-child{
  box-shadow: inset 0 0 0 4px #ECECEC;
}

.last\:shadow-border-4-white:last-child{
  box-shadow: inset 0 0 0 4px #FFFFFF;
}

.last\:shadow-border-white-10:last-child{
  box-shadow: inset 0 0 0 1px #FBFBFB;
}

.last\:shadow-border-white-20:last-child{
  box-shadow: inset 0 0 0 1px #ECECEC;
}

.last\:shadow-border-white:last-child{
  box-shadow: inset 0 0 0 1px #FFFFFF;
}

.last\:shadow-border-2-cheeto:last-child{
  box-shadow: inset 0 0 0 2px #f7a500;
}

.last\:shadow-border-2-cheeto-very-light:last-child{
  box-shadow: inset 0 0 0 2px #fffaf2;
}

.last\:shadow-border-2-cheeto-light:last-child{
  box-shadow: inset 0 0 0 2px #ffd649;
}

.last\:shadow-border-2-cheeto-dark:last-child{
  box-shadow: inset 0 0 0 2px #bf7600;
}

.last\:shadow-border-2-cheeto-hocus:last-child{
  box-shadow: inset 0 0 0 2px #f8bd0f;
}

.last\:shadow-border-2-cheeto-active:last-child{
  box-shadow: inset 0 0 0 2px #f8d61b;
}

.last\:shadow-border-2-cheeto-ml-plus:last-child{
  box-shadow: inset 0 0 0 2px #FBEFCA;
}

.last\:shadow-border-2-cheeto-banner:last-child{
  box-shadow: inset 0 0 0 2px #fef7e5;
}

.last\:shadow-border-4-cheeto:last-child{
  box-shadow: inset 0 0 0 4px #f7a500;
}

.last\:shadow-border-4-cheeto-very-light:last-child{
  box-shadow: inset 0 0 0 4px #fffaf2;
}

.last\:shadow-border-4-cheeto-light:last-child{
  box-shadow: inset 0 0 0 4px #ffd649;
}

.last\:shadow-border-4-cheeto-dark:last-child{
  box-shadow: inset 0 0 0 4px #bf7600;
}

.last\:shadow-border-4-cheeto-hocus:last-child{
  box-shadow: inset 0 0 0 4px #f8bd0f;
}

.last\:shadow-border-4-cheeto-active:last-child{
  box-shadow: inset 0 0 0 4px #f8d61b;
}

.last\:shadow-border-4-cheeto-ml-plus:last-child{
  box-shadow: inset 0 0 0 4px #FBEFCA;
}

.last\:shadow-border-4-cheeto-banner:last-child{
  box-shadow: inset 0 0 0 4px #fef7e5;
}

.last\:shadow-border-cheeto:last-child{
  box-shadow: inset 0 0 0 1px #f7a500;
}

.last\:shadow-border-cheeto-very-light:last-child{
  box-shadow: inset 0 0 0 1px #fffaf2;
}

.last\:shadow-border-cheeto-light:last-child{
  box-shadow: inset 0 0 0 1px #ffd649;
}

.last\:shadow-border-cheeto-dark:last-child{
  box-shadow: inset 0 0 0 1px #bf7600;
}

.last\:shadow-border-cheeto-hocus:last-child{
  box-shadow: inset 0 0 0 1px #f8bd0f;
}

.last\:shadow-border-cheeto-active:last-child{
  box-shadow: inset 0 0 0 1px #f8d61b;
}

.last\:shadow-border-cheeto-ml-plus:last-child{
  box-shadow: inset 0 0 0 1px #FBEFCA;
}

.last\:shadow-border-cheeto-banner:last-child{
  box-shadow: inset 0 0 0 1px #fef7e5;
}

.last\:shadow-border-2-gracy-1:last-child{
  box-shadow: inset 0 0 0 2px #f8f8fa;
}

.last\:shadow-border-2-gracy-10:last-child{
  box-shadow: inset 0 0 0 2px #faf7fd;
}

.last\:shadow-border-2-gracy-20:last-child{
  box-shadow: inset 0 0 0 2px #e0dde3;
}

.last\:shadow-border-2-gracy-30:last-child{
  box-shadow: inset 0 0 0 2px #c8c5ca;
}

.last\:shadow-border-2-gracy-40:last-child{
  box-shadow: inset 0 0 0 2px #aeacb0;
}

.last\:shadow-border-2-gracy-50:last-child{
  box-shadow: inset 0 0 0 2px #969497;
}

.last\:shadow-border-2-gracy-60:last-child{
  box-shadow: inset 0 0 0 2px #7c7b7e;
}

.last\:shadow-border-2-gracy-70:last-child{
  box-shadow: inset 0 0 0 2px #646265;
}

.last\:shadow-border-2-gracy-80:last-child{
  box-shadow: inset 0 0 0 2px #4a494b;
}

.last\:shadow-border-2-gracy-90:last-child{
  box-shadow: inset 0 0 0 2px #323132;
}

.last\:shadow-border-2-gracy-100:last-child{
  box-shadow: inset 0 0 0 2px #181818;
}

.last\:shadow-border-2-gracy:last-child{
  box-shadow: inset 0 0 0 2px #6F7878;
}

.last\:shadow-border-2-gracy-overlay-90:last-child{
  box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
}

.last\:shadow-border-4-gracy-1:last-child{
  box-shadow: inset 0 0 0 4px #f8f8fa;
}

.last\:shadow-border-4-gracy-10:last-child{
  box-shadow: inset 0 0 0 4px #faf7fd;
}

.last\:shadow-border-4-gracy-20:last-child{
  box-shadow: inset 0 0 0 4px #e0dde3;
}

.last\:shadow-border-4-gracy-30:last-child{
  box-shadow: inset 0 0 0 4px #c8c5ca;
}

.last\:shadow-border-4-gracy-40:last-child{
  box-shadow: inset 0 0 0 4px #aeacb0;
}

.last\:shadow-border-4-gracy-50:last-child{
  box-shadow: inset 0 0 0 4px #969497;
}

.last\:shadow-border-4-gracy-60:last-child{
  box-shadow: inset 0 0 0 4px #7c7b7e;
}

.last\:shadow-border-4-gracy-70:last-child{
  box-shadow: inset 0 0 0 4px #646265;
}

.last\:shadow-border-4-gracy-80:last-child{
  box-shadow: inset 0 0 0 4px #4a494b;
}

.last\:shadow-border-4-gracy-90:last-child{
  box-shadow: inset 0 0 0 4px #323132;
}

.last\:shadow-border-4-gracy-100:last-child{
  box-shadow: inset 0 0 0 4px #181818;
}

.last\:shadow-border-4-gracy:last-child{
  box-shadow: inset 0 0 0 4px #6F7878;
}

.last\:shadow-border-4-gracy-overlay-90:last-child{
  box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
}

.last\:shadow-border-gracy-1:last-child{
  box-shadow: inset 0 0 0 1px #f8f8fa;
}

.last\:shadow-border-gracy-10:last-child{
  box-shadow: inset 0 0 0 1px #faf7fd;
}

.last\:shadow-border-gracy-20:last-child{
  box-shadow: inset 0 0 0 1px #e0dde3;
}

.last\:shadow-border-gracy-30:last-child{
  box-shadow: inset 0 0 0 1px #c8c5ca;
}

.last\:shadow-border-gracy-40:last-child{
  box-shadow: inset 0 0 0 1px #aeacb0;
}

.last\:shadow-border-gracy-50:last-child{
  box-shadow: inset 0 0 0 1px #969497;
}

.last\:shadow-border-gracy-60:last-child{
  box-shadow: inset 0 0 0 1px #7c7b7e;
}

.last\:shadow-border-gracy-70:last-child{
  box-shadow: inset 0 0 0 1px #646265;
}

.last\:shadow-border-gracy-80:last-child{
  box-shadow: inset 0 0 0 1px #4a494b;
}

.last\:shadow-border-gracy-90:last-child{
  box-shadow: inset 0 0 0 1px #323132;
}

.last\:shadow-border-gracy-100:last-child{
  box-shadow: inset 0 0 0 1px #181818;
}

.last\:shadow-border-gracy:last-child{
  box-shadow: inset 0 0 0 1px #6F7878;
}

.last\:shadow-border-gracy-overlay-90:last-child{
  box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
}

.last\:shadow-border-2-login-0:last-child{
  box-shadow: inset 0 0 0 2px #;
}

.last\:shadow-border-2-login-1:last-child{
  box-shadow: inset 0 0 0 2px F;
}

.last\:shadow-border-2-login-2:last-child{
  box-shadow: inset 0 0 0 2px D;
}

.last\:shadow-border-2-login-3:last-child{
  box-shadow: inset 0 0 0 2px F;
}

.last\:shadow-border-2-login-4:last-child{
  box-shadow: inset 0 0 0 2px 7;
}

.last\:shadow-border-2-login-5:last-child{
  box-shadow: inset 0 0 0 2px E;
}

.last\:shadow-border-2-login-6:last-child{
  box-shadow: inset 0 0 0 2px 7;
}

.last\:shadow-border-2-login-bold:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-strip:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-stripColors:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-trap:last-child{
  box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
}

.last\:shadow-border-2-login-zalgo:last-child{
  box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
}

.last\:shadow-border-2-login-zebra:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-rainbow:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-random:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-america:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-reset:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-dim:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-italic:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-underline:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-inverse:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-hidden:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-strikethrough:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-black:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-red:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-green:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-yellow:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-blue:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-magenta:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-cyan:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-white:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-gray:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-grey:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-brightRed:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-brightGreen:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-brightYellow:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-brightBlue:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-brightMagenta:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-brightCyan:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-brightWhite:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgBlack:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgRed:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgGreen:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgYellow:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgBlue:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgMagenta:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgCyan:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgWhite:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgGray:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgGrey:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgBrightRed:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgBrightGreen:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgBrightYellow:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgBrightBlue:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgBrightMagenta:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgBrightCyan:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-bgBrightWhite:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-blackBG:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-redBG:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-greenBG:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-yellowBG:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-blueBG:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-magentaBG:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-cyanBG:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-2-login-whiteBG:last-child{
  box-shadow: inset 0 0 0 2px #FDF7E7;
}

.last\:shadow-border-4-login-0:last-child{
  box-shadow: inset 0 0 0 4px #;
}

.last\:shadow-border-4-login-1:last-child{
  box-shadow: inset 0 0 0 4px F;
}

.last\:shadow-border-4-login-2:last-child{
  box-shadow: inset 0 0 0 4px D;
}

.last\:shadow-border-4-login-3:last-child{
  box-shadow: inset 0 0 0 4px F;
}

.last\:shadow-border-4-login-4:last-child{
  box-shadow: inset 0 0 0 4px 7;
}

.last\:shadow-border-4-login-5:last-child{
  box-shadow: inset 0 0 0 4px E;
}

.last\:shadow-border-4-login-6:last-child{
  box-shadow: inset 0 0 0 4px 7;
}

.last\:shadow-border-4-login-bold:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-strip:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-stripColors:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-trap:last-child{
  box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
}

.last\:shadow-border-4-login-zalgo:last-child{
  box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
}

.last\:shadow-border-4-login-zebra:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-rainbow:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-random:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-america:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-reset:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-dim:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-italic:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-underline:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-inverse:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-hidden:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-strikethrough:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-black:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-red:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-green:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-yellow:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-blue:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-magenta:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-cyan:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-white:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-gray:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-grey:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-brightRed:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-brightGreen:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-brightYellow:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-brightBlue:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-brightMagenta:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-brightCyan:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-brightWhite:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgBlack:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgRed:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgGreen:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgYellow:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgBlue:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgMagenta:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgCyan:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgWhite:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgGray:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgGrey:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgBrightRed:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgBrightGreen:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgBrightYellow:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgBrightBlue:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgBrightMagenta:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgBrightCyan:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-bgBrightWhite:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-blackBG:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-redBG:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-greenBG:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-yellowBG:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-blueBG:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-magentaBG:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-cyanBG:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-4-login-whiteBG:last-child{
  box-shadow: inset 0 0 0 4px #FDF7E7;
}

.last\:shadow-border-login-0:last-child{
  box-shadow: inset 0 0 0 1px #;
}

.last\:shadow-border-login-1:last-child{
  box-shadow: inset 0 0 0 1px F;
}

.last\:shadow-border-login-2:last-child{
  box-shadow: inset 0 0 0 1px D;
}

.last\:shadow-border-login-3:last-child{
  box-shadow: inset 0 0 0 1px F;
}

.last\:shadow-border-login-4:last-child{
  box-shadow: inset 0 0 0 1px 7;
}

.last\:shadow-border-login-5:last-child{
  box-shadow: inset 0 0 0 1px E;
}

.last\:shadow-border-login-6:last-child{
  box-shadow: inset 0 0 0 1px 7;
}

.last\:shadow-border-login-bold:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-strip:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-stripColors:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-trap:last-child{
  box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
}

.last\:shadow-border-login-zalgo:last-child{
  box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
}

.last\:shadow-border-login-zebra:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-rainbow:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-random:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-america:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-reset:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-dim:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-italic:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-underline:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-inverse:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-hidden:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-strikethrough:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-black:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-red:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-green:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-yellow:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-blue:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-magenta:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-cyan:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-white:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-gray:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-grey:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-brightRed:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-brightGreen:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-brightYellow:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-brightBlue:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-brightMagenta:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-brightCyan:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-brightWhite:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgBlack:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgRed:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgGreen:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgYellow:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgBlue:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgMagenta:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgCyan:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgWhite:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgGray:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgGrey:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgBrightRed:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgBrightGreen:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgBrightYellow:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgBrightBlue:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgBrightMagenta:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgBrightCyan:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-bgBrightWhite:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-blackBG:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-redBG:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-greenBG:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-yellowBG:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-blueBG:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-magentaBG:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-cyanBG:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-login-whiteBG:last-child{
  box-shadow: inset 0 0 0 1px #FDF7E7;
}

.last\:shadow-border-2-olive-light:last-child{
  box-shadow: inset 0 0 0 2px #DFF5F6;
}

.last\:shadow-border-2-olive-drab:last-child{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.last\:shadow-border-2-olive-dark:last-child{
  box-shadow: inset 0 0 0 2px #096348;
}

.last\:shadow-border-4-olive-light:last-child{
  box-shadow: inset 0 0 0 4px #DFF5F6;
}

.last\:shadow-border-4-olive-drab:last-child{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.last\:shadow-border-4-olive-dark:last-child{
  box-shadow: inset 0 0 0 4px #096348;
}

.last\:shadow-border-olive-light:last-child{
  box-shadow: inset 0 0 0 1px #DFF5F6;
}

.last\:shadow-border-olive-drab:last-child{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.last\:shadow-border-olive-dark:last-child{
  box-shadow: inset 0 0 0 1px #096348;
}

.last\:shadow-border-2-daisy-light:last-child{
  box-shadow: inset 0 0 0 2px #fffce1;
}

.last\:shadow-border-4-daisy-light:last-child{
  box-shadow: inset 0 0 0 4px #fffce1;
}

.last\:shadow-border-daisy-light:last-child{
  box-shadow: inset 0 0 0 1px #fffce1;
}

.last\:shadow-border-2-feedback-gumby:last-child{
  box-shadow: inset 0 0 0 2px #c8e6c9;
}

.last\:shadow-border-2-feedback-daisy:last-child{
  box-shadow: inset 0 0 0 2px #fff9c4;
}

.last\:shadow-border-2-feedback-pokey:last-child{
  box-shadow: inset 0 0 0 2px #ffcdd2;
}

.last\:shadow-border-2-feedback-aster:last-child{
  box-shadow: inset 0 0 0 2px #b3e5fc;
}

.last\:shadow-border-2-feedback-aster-dark:last-child{
  box-shadow: inset 0 0 0 2px #03567C;
}

.last\:shadow-border-2-feedback-roxo:last-child{
  box-shadow: inset 0 0 0 2px #d1c4e9;
}

.last\:shadow-border-2-feedback-error:last-child{
  box-shadow: inset 0 0 0 2px #f44336;
}

.last\:shadow-border-2-feedback-success:last-child{
  box-shadow: inset 0 0 0 2px #5ca02c;
}

.last\:shadow-border-4-feedback-gumby:last-child{
  box-shadow: inset 0 0 0 4px #c8e6c9;
}

.last\:shadow-border-4-feedback-daisy:last-child{
  box-shadow: inset 0 0 0 4px #fff9c4;
}

.last\:shadow-border-4-feedback-pokey:last-child{
  box-shadow: inset 0 0 0 4px #ffcdd2;
}

.last\:shadow-border-4-feedback-aster:last-child{
  box-shadow: inset 0 0 0 4px #b3e5fc;
}

.last\:shadow-border-4-feedback-aster-dark:last-child{
  box-shadow: inset 0 0 0 4px #03567C;
}

.last\:shadow-border-4-feedback-roxo:last-child{
  box-shadow: inset 0 0 0 4px #d1c4e9;
}

.last\:shadow-border-4-feedback-error:last-child{
  box-shadow: inset 0 0 0 4px #f44336;
}

.last\:shadow-border-4-feedback-success:last-child{
  box-shadow: inset 0 0 0 4px #5ca02c;
}

.last\:shadow-border-feedback-gumby:last-child{
  box-shadow: inset 0 0 0 1px #c8e6c9;
}

.last\:shadow-border-feedback-daisy:last-child{
  box-shadow: inset 0 0 0 1px #fff9c4;
}

.last\:shadow-border-feedback-pokey:last-child{
  box-shadow: inset 0 0 0 1px #ffcdd2;
}

.last\:shadow-border-feedback-aster:last-child{
  box-shadow: inset 0 0 0 1px #b3e5fc;
}

.last\:shadow-border-feedback-aster-dark:last-child{
  box-shadow: inset 0 0 0 1px #03567C;
}

.last\:shadow-border-feedback-roxo:last-child{
  box-shadow: inset 0 0 0 1px #d1c4e9;
}

.last\:shadow-border-feedback-error:last-child{
  box-shadow: inset 0 0 0 1px #f44336;
}

.last\:shadow-border-feedback-success:last-child{
  box-shadow: inset 0 0 0 1px #5ca02c;
}

.last\:shadow-border-2-functional-aoki:last-child{
  box-shadow: inset 0 0 0 2px #6f2ca0;
}

.last\:shadow-border-2-functional-aoki-dark:last-child{
  box-shadow: inset 0 0 0 2px #3e0071;
}

.last\:shadow-border-2-functional-aoki-hocus:last-child{
  box-shadow: inset 0 0 0 2px #9035af;
}

.last\:shadow-border-2-functional-aoki-active:last-child{
  box-shadow: inset 0 0 0 2px #a04fbc;
}

.last\:shadow-border-2-functional-aoki-light:last-child{
  box-shadow: inset 0 0 0 2px #a15ad2;
}

.last\:shadow-border-2-functional-kermit:last-child{
  box-shadow: inset 0 0 0 2px #5aa120;
}

.last\:shadow-border-4-functional-aoki:last-child{
  box-shadow: inset 0 0 0 4px #6f2ca0;
}

.last\:shadow-border-4-functional-aoki-dark:last-child{
  box-shadow: inset 0 0 0 4px #3e0071;
}

.last\:shadow-border-4-functional-aoki-hocus:last-child{
  box-shadow: inset 0 0 0 4px #9035af;
}

.last\:shadow-border-4-functional-aoki-active:last-child{
  box-shadow: inset 0 0 0 4px #a04fbc;
}

.last\:shadow-border-4-functional-aoki-light:last-child{
  box-shadow: inset 0 0 0 4px #a15ad2;
}

.last\:shadow-border-4-functional-kermit:last-child{
  box-shadow: inset 0 0 0 4px #5aa120;
}

.last\:shadow-border-functional-aoki:last-child{
  box-shadow: inset 0 0 0 1px #6f2ca0;
}

.last\:shadow-border-functional-aoki-dark:last-child{
  box-shadow: inset 0 0 0 1px #3e0071;
}

.last\:shadow-border-functional-aoki-hocus:last-child{
  box-shadow: inset 0 0 0 1px #9035af;
}

.last\:shadow-border-functional-aoki-active:last-child{
  box-shadow: inset 0 0 0 1px #a04fbc;
}

.last\:shadow-border-functional-aoki-light:last-child{
  box-shadow: inset 0 0 0 1px #a15ad2;
}

.last\:shadow-border-functional-kermit:last-child{
  box-shadow: inset 0 0 0 1px #5aa120;
}

.last\:shadow-border-2-mixlabPlus-light:last-child{
  box-shadow: inset 0 0 0 2px #FFFEF9;
}

.last\:shadow-border-4-mixlabPlus-light:last-child{
  box-shadow: inset 0 0 0 4px #FFFEF9;
}

.last\:shadow-border-mixlabPlus-light:last-child{
  box-shadow: inset 0 0 0 1px #FFFEF9;
}

.last\:shadow-border-2-primary-orange-light:last-child{
  box-shadow: inset 0 0 0 2px ;
}

.last\:shadow-border-4-primary-orange-light:last-child{
  box-shadow: inset 0 0 0 4px ;
}

.last\:shadow-border-primary-orange-light:last-child{
  box-shadow: inset 0 0 0 1px ;
}

.last\:shadow-border-2-off-white:last-child{
  box-shadow: inset 0 0 0 2px #FAF9F6;
}

.last\:shadow-border-4-off-white:last-child{
  box-shadow: inset 0 0 0 4px #FAF9F6;
}

.last\:shadow-border-off-white:last-child{
  box-shadow: inset 0 0 0 1px #FAF9F6;
}

.transition-slow{
  transition: 0.25s;
}

.transition-medium{
  transition: 0.125s;
}

.border-l-black{
  border-left-color: #000000;
}

.border-r-black{
  border-right-color: #000000;
}

.border-b-black{
  border-bottom-color: #000000;
}

.border-t-black{
  border-top-color: #000000;
}

.border-l-transparent{
  border-left-color: transparent;
}

.border-r-transparent{
  border-right-color: transparent;
}

.border-b-transparent{
  border-bottom-color: transparent;
}

.border-t-transparent{
  border-top-color: transparent;
}

.border-l-error{
  border-left-color: #f44336;
}

.border-r-error{
  border-right-color: #f44336;
}

.border-b-error{
  border-bottom-color: #f44336;
}

.border-t-error{
  border-top-color: #f44336;
}

.border-l-success{
  border-left-color: #5ca02c;
}

.border-r-success{
  border-right-color: #5ca02c;
}

.border-b-success{
  border-bottom-color: #5ca02c;
}

.border-t-success{
  border-top-color: #5ca02c;
}

.border-l-white-10{
  border-left-color: #FBFBFB;
}

.border-r-white-10{
  border-right-color: #FBFBFB;
}

.border-b-white-10{
  border-bottom-color: #FBFBFB;
}

.border-t-white-10{
  border-top-color: #FBFBFB;
}

.border-l-white-20{
  border-left-color: #ECECEC;
}

.border-r-white-20{
  border-right-color: #ECECEC;
}

.border-b-white-20{
  border-bottom-color: #ECECEC;
}

.border-t-white-20{
  border-top-color: #ECECEC;
}

.border-l-white{
  border-left-color: #FFFFFF;
}

.border-r-white{
  border-right-color: #FFFFFF;
}

.border-b-white{
  border-bottom-color: #FFFFFF;
}

.border-t-white{
  border-top-color: #FFFFFF;
}

.border-l-cheeto{
  border-left-color: #f7a500;
}

.border-r-cheeto{
  border-right-color: #f7a500;
}

.border-b-cheeto{
  border-bottom-color: #f7a500;
}

.border-t-cheeto{
  border-top-color: #f7a500;
}

.border-l-cheeto-very-light{
  border-left-color: #fffaf2;
}

.border-r-cheeto-very-light{
  border-right-color: #fffaf2;
}

.border-b-cheeto-very-light{
  border-bottom-color: #fffaf2;
}

.border-t-cheeto-very-light{
  border-top-color: #fffaf2;
}

.border-l-cheeto-light{
  border-left-color: #ffd649;
}

.border-r-cheeto-light{
  border-right-color: #ffd649;
}

.border-b-cheeto-light{
  border-bottom-color: #ffd649;
}

.border-t-cheeto-light{
  border-top-color: #ffd649;
}

.border-l-cheeto-dark{
  border-left-color: #bf7600;
}

.border-r-cheeto-dark{
  border-right-color: #bf7600;
}

.border-b-cheeto-dark{
  border-bottom-color: #bf7600;
}

.border-t-cheeto-dark{
  border-top-color: #bf7600;
}

.border-l-cheeto-hocus{
  border-left-color: #f8bd0f;
}

.border-r-cheeto-hocus{
  border-right-color: #f8bd0f;
}

.border-b-cheeto-hocus{
  border-bottom-color: #f8bd0f;
}

.border-t-cheeto-hocus{
  border-top-color: #f8bd0f;
}

.border-l-cheeto-active{
  border-left-color: #f8d61b;
}

.border-r-cheeto-active{
  border-right-color: #f8d61b;
}

.border-b-cheeto-active{
  border-bottom-color: #f8d61b;
}

.border-t-cheeto-active{
  border-top-color: #f8d61b;
}

.border-l-cheeto-ml-plus{
  border-left-color: #FBEFCA;
}

.border-r-cheeto-ml-plus{
  border-right-color: #FBEFCA;
}

.border-b-cheeto-ml-plus{
  border-bottom-color: #FBEFCA;
}

.border-t-cheeto-ml-plus{
  border-top-color: #FBEFCA;
}

.border-l-cheeto-banner{
  border-left-color: #fef7e5;
}

.border-r-cheeto-banner{
  border-right-color: #fef7e5;
}

.border-b-cheeto-banner{
  border-bottom-color: #fef7e5;
}

.border-t-cheeto-banner{
  border-top-color: #fef7e5;
}

.border-l-gracy-1{
  border-left-color: #f8f8fa;
}

.border-r-gracy-1{
  border-right-color: #f8f8fa;
}

.border-b-gracy-1{
  border-bottom-color: #f8f8fa;
}

.border-t-gracy-1{
  border-top-color: #f8f8fa;
}

.border-l-gracy-10{
  border-left-color: #faf7fd;
}

.border-r-gracy-10{
  border-right-color: #faf7fd;
}

.border-b-gracy-10{
  border-bottom-color: #faf7fd;
}

.border-t-gracy-10{
  border-top-color: #faf7fd;
}

.border-l-gracy-20{
  border-left-color: #e0dde3;
}

.border-r-gracy-20{
  border-right-color: #e0dde3;
}

.border-b-gracy-20{
  border-bottom-color: #e0dde3;
}

.border-t-gracy-20{
  border-top-color: #e0dde3;
}

.border-l-gracy-30{
  border-left-color: #c8c5ca;
}

.border-r-gracy-30{
  border-right-color: #c8c5ca;
}

.border-b-gracy-30{
  border-bottom-color: #c8c5ca;
}

.border-t-gracy-30{
  border-top-color: #c8c5ca;
}

.border-l-gracy-40{
  border-left-color: #aeacb0;
}

.border-r-gracy-40{
  border-right-color: #aeacb0;
}

.border-b-gracy-40{
  border-bottom-color: #aeacb0;
}

.border-t-gracy-40{
  border-top-color: #aeacb0;
}

.border-l-gracy-50{
  border-left-color: #969497;
}

.border-r-gracy-50{
  border-right-color: #969497;
}

.border-b-gracy-50{
  border-bottom-color: #969497;
}

.border-t-gracy-50{
  border-top-color: #969497;
}

.border-l-gracy-60{
  border-left-color: #7c7b7e;
}

.border-r-gracy-60{
  border-right-color: #7c7b7e;
}

.border-b-gracy-60{
  border-bottom-color: #7c7b7e;
}

.border-t-gracy-60{
  border-top-color: #7c7b7e;
}

.border-l-gracy-70{
  border-left-color: #646265;
}

.border-r-gracy-70{
  border-right-color: #646265;
}

.border-b-gracy-70{
  border-bottom-color: #646265;
}

.border-t-gracy-70{
  border-top-color: #646265;
}

.border-l-gracy-80{
  border-left-color: #4a494b;
}

.border-r-gracy-80{
  border-right-color: #4a494b;
}

.border-b-gracy-80{
  border-bottom-color: #4a494b;
}

.border-t-gracy-80{
  border-top-color: #4a494b;
}

.border-l-gracy-90{
  border-left-color: #323132;
}

.border-r-gracy-90{
  border-right-color: #323132;
}

.border-b-gracy-90{
  border-bottom-color: #323132;
}

.border-t-gracy-90{
  border-top-color: #323132;
}

.border-l-gracy-100{
  border-left-color: #181818;
}

.border-r-gracy-100{
  border-right-color: #181818;
}

.border-b-gracy-100{
  border-bottom-color: #181818;
}

.border-t-gracy-100{
  border-top-color: #181818;
}

.border-l-gracy{
  border-left-color: #6F7878;
}

.border-r-gracy{
  border-right-color: #6F7878;
}

.border-b-gracy{
  border-bottom-color: #6F7878;
}

.border-t-gracy{
  border-top-color: #6F7878;
}

.border-l-gracy-overlay-90{
  border-left-color: rgba(50,49,50,0.5);
}

.border-r-gracy-overlay-90{
  border-right-color: rgba(50,49,50,0.5);
}

.border-b-gracy-overlay-90{
  border-bottom-color: rgba(50,49,50,0.5);
}

.border-t-gracy-overlay-90{
  border-top-color: rgba(50,49,50,0.5);
}

.border-l-login-0{
  border-left-color: #;
}

.border-r-login-0{
  border-right-color: #;
}

.border-b-login-0{
  border-bottom-color: #;
}

.border-t-login-0{
  border-top-color: #;
}

.border-l-login-1{
  border-left-color: F;
}

.border-r-login-1{
  border-right-color: F;
}

.border-b-login-1{
  border-bottom-color: F;
}

.border-t-login-1{
  border-top-color: F;
}

.border-l-login-2{
  border-left-color: D;
}

.border-r-login-2{
  border-right-color: D;
}

.border-b-login-2{
  border-bottom-color: D;
}

.border-t-login-2{
  border-top-color: D;
}

.border-l-login-3{
  border-left-color: F;
}

.border-r-login-3{
  border-right-color: F;
}

.border-b-login-3{
  border-bottom-color: F;
}

.border-t-login-3{
  border-top-color: F;
}

.border-l-login-4{
  border-left-color: 7;
}

.border-r-login-4{
  border-right-color: 7;
}

.border-b-login-4{
  border-bottom-color: 7;
}

.border-t-login-4{
  border-top-color: 7;
}

.border-l-login-5{
  border-left-color: E;
}

.border-r-login-5{
  border-right-color: E;
}

.border-b-login-5{
  border-bottom-color: E;
}

.border-t-login-5{
  border-top-color: E;
}

.border-l-login-6{
  border-left-color: 7;
}

.border-r-login-6{
  border-right-color: 7;
}

.border-b-login-6{
  border-bottom-color: 7;
}

.border-t-login-6{
  border-top-color: 7;
}

.border-l-login-bold{
  border-left-color: #FDF7E7;
}

.border-r-login-bold{
  border-right-color: #FDF7E7;
}

.border-b-login-bold{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bold{
  border-top-color: #FDF7E7;
}

.border-l-login-strip{
  border-left-color: #FDF7E7;
}

.border-r-login-strip{
  border-right-color: #FDF7E7;
}

.border-b-login-strip{
  border-bottom-color: #FDF7E7;
}

.border-t-login-strip{
  border-top-color: #FDF7E7;
}

.border-l-login-stripColors{
  border-left-color: #FDF7E7;
}

.border-r-login-stripColors{
  border-right-color: #FDF7E7;
}

.border-b-login-stripColors{
  border-bottom-color: #FDF7E7;
}

.border-t-login-stripColors{
  border-top-color: #FDF7E7;
}

.border-l-login-trap{
  border-left-color: #ӺƊӺ7ɘ7;
}

.border-r-login-trap{
  border-right-color: #ӺԂӺ7ɘ7;
}

.border-b-login-trap{
  border-bottom-color: #ӺÐӺ7੬7;
}

.border-t-login-trap{
  border-top-color: #ӺԂӺ7ξ7;
}

.border-l-login-zalgo{
  border-left-color: #̵̶̡̭͍̪̟̼͙̝̦͓̺̟̜͚̯̰͖̪͔̼̺̘͔̻͙̲̹̦̙̞̹̼͇͕̳̜̹̹͇͈̫̹̰̰̹̮͍̙͕͉͈̯̠̯̱ͫ̄ͯͩͤ̈͛́͆ͯ̇ͦͦ͋̓͘͢ͅͅͅF̋ͩͣ̾̒ͧ̔͒̀ͪ̉͆̓̇͒͋ͭ̌́̚͞ ҉̺̫͉̱̜̳̬͉D̢̤͈̱͔͖̠̹̗̝̩̪͉͍̲̳͓̺̣̤͔̙̳͓̤̥̟̳͙̫͕̬̐ͤ͌̑ͤ̾̐̂̄̎͋ͮͫ́̀̕F̸̢̢̞̟̲̩͙̗͔͎͇͖͔̳͉̯̱̘̹̝͓̭̝͔͔͈̓ͬ̓ͤ̄ͅͅ7̶̷̙̰̤͙͖̠̰͉̗̟̭͖̺̘̱̱̻͓͓̝̭̱̖͂͌̊̆̍̈ͤ͑́ͣ̇̆̊ͦ̂̏̉ͥ͜͡E̢̛̞͍̠͉̮̳͖̘̼̞͚̮͔̘͇̜̯̳̜̝̲̙͉̬͙̥̟̩̰̝̯̥͉͈͔͂͐̀̋̾̎̃͆̿̒ͤͩͅ7̨̣̺̞͖̦̤͍̝̏̋ͦ̎̇͗͛͊́ͦ̚͜ͅ;
}

.border-r-login-zalgo{
  border-right-color: #̷̧̖̹̙͔̟̺͍̺̠̹͔̦͉͎͍̗̝̬̪̜͚̝̙̼̫̻̬̥̩̯͔̩͎̦̰̭͓̱̥͗ͬ̔̈̽̏ͫ̔͆̌̕͢ͅͅF̸̵̠̥̰̭̠̮̬͎̹͓͙͉̗̦͎̠̺̻̩̋̅ͭͮͧ̆̄̂̑̉̽͂ͧ̅̔ͫ̚͘͟͞ͅͅͅĎ̶̷̗̬̱͔͚̦̩̜̘̠̻͖͕̣̫̠̭̺̦̜̮͙͉͓̱̜̳͈̹̗̭̲̺͍͍̤͎͔̭̗͔̲͕̻̤ͭ̒ͫ̽̂͢͡ͅF̢̟͉͙̫̯̼̪͙͎̤͓̹̼̪̪̝̙͉̹̱̠̘̯̻̘͖̖̻̣̼̈̍͋̋̂̒̃̐̆͛ͤ́ͅ7̶͕̲̩̘͉̺͕̬̩͕̭̩̬̙͔͇̫̻͙̻͇̝̜̞͍͖̳̝̠̱̬̱̭̼̱̮͕̃̒͂̑̈́̋ͭͤͨ́͌͑̂̎̓̂̚͞ͅĘ̶̜͖̘͓͙̰̙̠͋ͣ̍̂ͫ̂̅ͩ7͙̺̱̣̖̥͕̼͕͉̟͈͈͓͚̱̹͎͕͚͙̖̫͓̰͓̪̘̖̯̦̼̟̩̩̳̦̭̬͓̦̣͓͖̖̖̤̮̼̗͓̭̯͊ͧ̽̚̕͞ͅ;
}

.border-b-login-zalgo{
  border-bottom-color: #̛̳̟̥̬̦͈͈̯͖̝̜̑̓̆̓ͯ͐͗ͭ́͝͡F̷̸̹͖̥̳̝̳̘̼̤̜͓͕͓͉̜͔̺̯̪̜̠͍̪̗͎͎̘̲̥̘̥͇͓̱̣̣͎͖̜̻͙̪͍͕̼͕͙̲̦͉͉̪̗̅̆ͯͣ̒ͭ͛ͫ̋̂̇̇̓͗ͮ̉̂ͬ͆̕Ď̷̡͎̙͇̜̹̥̜̳̝̘͙͖̻̪͎͙̯̗̞̫̗͎̝̺͍̗͉̘̞͍̬̝̝͙̭̭͓̞͖̪̍̾̒͌͛͒ͪ̑͟ͅF̧̰͎̠̣͉̯͉͈̺͓̫̯̗̟̥̱͎͖̭̭̲̲̩̫̞̯̥̖̫̪̦̥̜͖̂̽̅̇́ͫ̈̈͗̈̈̈̐̀͜7͈̣̻̗̖͚̣̱̩̻̜͙̙̤̯̣̗̮͚͍̏̊̅̄̚͘͢͢E̸̡͖̹̦̪̘̮̘̮̜̘̱̫͔͚̮̹̬̼̯̦̫̯̱̹͓̙͙͍̣͈͙̟͙̮͈̭͓͉̣̞̓͋́ͥ̉̊ͥ͑͌̑̾ͭ̇͐̋ͪ͡͝͠ͅ7ͣ͊͆͑́ͧ̐̓͒̅͛̔ͥ̊ͧ͆̆̒ ҉̴̢͈̻̻̞͔̹̮̫̫̭͍̳̖̪͇̫̖̥̰̦͕̻͇̦͈͇̥̩̹̣͚͎̬̳̞̖͖̝̹̩͖̘͔̹̼͉̥̦̠̻̪̼̠͈̠̗̹̺̭̩̻͚̲͢ͅͅͅͅ;
}

.border-t-login-zalgo{
  border-top-color: #̢̨̼̹̲̞̫̤͖̱̬͖̞̠̰̦̿̆̑̚F̖̫̭̝̮̭̦͖̟̥̩̞͚͇͉͖̝̥͍̱̼͇̻͔̣͚̤̪͈̣͍̖̩͕̳̪̻͓͎̞̗̤̠̥̬̘̺̰͔̱̫͉͍̫͕̜̫͇̤̬ͮ͒ͫ̃̃̈̑̋͐ͦ̕͠ͅD̛͍͍̙̻̖͓̤͔̣̲̝͍̼̯͖̠̱̫͍̗̼̞̼͍̼͖̠̰̱͉̱͕̜̹͉͕̲̤̙͍͕̟̲͓͔͍͓̮͕̦̗̥̒ͥ̃ͤͭ̇͆́͞͠ͅF̷̥̯̹̙̣̜̖̹̼̪͉̱͙͔̠̺͕͖̫̩̉̏̒͐ͩ̏͑ͫ͊͐͂ͩ̀̾ͬ̚͘͢͠7̴̔̏̒̔̇̍͐͗̇̀̊ͮ͋̋͆̽̃́͡͞ ҉̰͚̘͍̻̰̦͇͔͚̠͖̩̯̞͎͓̗̬̭̗̦̦͚̘̣̘̣̜̖̟̪̼͇̗͚̙̭̗͚ͅE̛̟̯̦͎͕͙͖̦͉̺̦̤͚̪̠̠̩̼̥̝̞ͫ͆͐͐̽̑͒͊ͦͣ̒̉ͥͪ̈ͨ̅̚͜ͅ7̡̤͔̳̘̯͖͉̬̘̱̰̗̖̥͖̻̗̫̩̮͈͚̺̠͔̺̖̮̺̳̲̬̱͓̪̞̠̬̫̤͓̬͚͓͔͇̟̩͕̫͗̌̓̉ͮͮ̓ͤ̎͗̕͝ͅͅ;
}

.border-l-login-zebra{
  border-left-color: #FDF7E7;
}

.border-r-login-zebra{
  border-right-color: #FDF7E7;
}

.border-b-login-zebra{
  border-bottom-color: #FDF7E7;
}

.border-t-login-zebra{
  border-top-color: #FDF7E7;
}

.border-l-login-rainbow{
  border-left-color: #FDF7E7;
}

.border-r-login-rainbow{
  border-right-color: #FDF7E7;
}

.border-b-login-rainbow{
  border-bottom-color: #FDF7E7;
}

.border-t-login-rainbow{
  border-top-color: #FDF7E7;
}

.border-l-login-random{
  border-left-color: #FDF7E7;
}

.border-r-login-random{
  border-right-color: #FDF7E7;
}

.border-b-login-random{
  border-bottom-color: #FDF7E7;
}

.border-t-login-random{
  border-top-color: #FDF7E7;
}

.border-l-login-america{
  border-left-color: #FDF7E7;
}

.border-r-login-america{
  border-right-color: #FDF7E7;
}

.border-b-login-america{
  border-bottom-color: #FDF7E7;
}

.border-t-login-america{
  border-top-color: #FDF7E7;
}

.border-l-login-reset{
  border-left-color: #FDF7E7;
}

.border-r-login-reset{
  border-right-color: #FDF7E7;
}

.border-b-login-reset{
  border-bottom-color: #FDF7E7;
}

.border-t-login-reset{
  border-top-color: #FDF7E7;
}

.border-l-login-dim{
  border-left-color: #FDF7E7;
}

.border-r-login-dim{
  border-right-color: #FDF7E7;
}

.border-b-login-dim{
  border-bottom-color: #FDF7E7;
}

.border-t-login-dim{
  border-top-color: #FDF7E7;
}

.border-l-login-italic{
  border-left-color: #FDF7E7;
}

.border-r-login-italic{
  border-right-color: #FDF7E7;
}

.border-b-login-italic{
  border-bottom-color: #FDF7E7;
}

.border-t-login-italic{
  border-top-color: #FDF7E7;
}

.border-l-login-underline{
  border-left-color: #FDF7E7;
}

.border-r-login-underline{
  border-right-color: #FDF7E7;
}

.border-b-login-underline{
  border-bottom-color: #FDF7E7;
}

.border-t-login-underline{
  border-top-color: #FDF7E7;
}

.border-l-login-inverse{
  border-left-color: #FDF7E7;
}

.border-r-login-inverse{
  border-right-color: #FDF7E7;
}

.border-b-login-inverse{
  border-bottom-color: #FDF7E7;
}

.border-t-login-inverse{
  border-top-color: #FDF7E7;
}

.border-l-login-hidden{
  border-left-color: #FDF7E7;
}

.border-r-login-hidden{
  border-right-color: #FDF7E7;
}

.border-b-login-hidden{
  border-bottom-color: #FDF7E7;
}

.border-t-login-hidden{
  border-top-color: #FDF7E7;
}

.border-l-login-strikethrough{
  border-left-color: #FDF7E7;
}

.border-r-login-strikethrough{
  border-right-color: #FDF7E7;
}

.border-b-login-strikethrough{
  border-bottom-color: #FDF7E7;
}

.border-t-login-strikethrough{
  border-top-color: #FDF7E7;
}

.border-l-login-black{
  border-left-color: #FDF7E7;
}

.border-r-login-black{
  border-right-color: #FDF7E7;
}

.border-b-login-black{
  border-bottom-color: #FDF7E7;
}

.border-t-login-black{
  border-top-color: #FDF7E7;
}

.border-l-login-red{
  border-left-color: #FDF7E7;
}

.border-r-login-red{
  border-right-color: #FDF7E7;
}

.border-b-login-red{
  border-bottom-color: #FDF7E7;
}

.border-t-login-red{
  border-top-color: #FDF7E7;
}

.border-l-login-green{
  border-left-color: #FDF7E7;
}

.border-r-login-green{
  border-right-color: #FDF7E7;
}

.border-b-login-green{
  border-bottom-color: #FDF7E7;
}

.border-t-login-green{
  border-top-color: #FDF7E7;
}

.border-l-login-yellow{
  border-left-color: #FDF7E7;
}

.border-r-login-yellow{
  border-right-color: #FDF7E7;
}

.border-b-login-yellow{
  border-bottom-color: #FDF7E7;
}

.border-t-login-yellow{
  border-top-color: #FDF7E7;
}

.border-l-login-blue{
  border-left-color: #FDF7E7;
}

.border-r-login-blue{
  border-right-color: #FDF7E7;
}

.border-b-login-blue{
  border-bottom-color: #FDF7E7;
}

.border-t-login-blue{
  border-top-color: #FDF7E7;
}

.border-l-login-magenta{
  border-left-color: #FDF7E7;
}

.border-r-login-magenta{
  border-right-color: #FDF7E7;
}

.border-b-login-magenta{
  border-bottom-color: #FDF7E7;
}

.border-t-login-magenta{
  border-top-color: #FDF7E7;
}

.border-l-login-cyan{
  border-left-color: #FDF7E7;
}

.border-r-login-cyan{
  border-right-color: #FDF7E7;
}

.border-b-login-cyan{
  border-bottom-color: #FDF7E7;
}

.border-t-login-cyan{
  border-top-color: #FDF7E7;
}

.border-l-login-white{
  border-left-color: #FDF7E7;
}

.border-r-login-white{
  border-right-color: #FDF7E7;
}

.border-b-login-white{
  border-bottom-color: #FDF7E7;
}

.border-t-login-white{
  border-top-color: #FDF7E7;
}

.border-l-login-gray{
  border-left-color: #FDF7E7;
}

.border-r-login-gray{
  border-right-color: #FDF7E7;
}

.border-b-login-gray{
  border-bottom-color: #FDF7E7;
}

.border-t-login-gray{
  border-top-color: #FDF7E7;
}

.border-l-login-grey{
  border-left-color: #FDF7E7;
}

.border-r-login-grey{
  border-right-color: #FDF7E7;
}

.border-b-login-grey{
  border-bottom-color: #FDF7E7;
}

.border-t-login-grey{
  border-top-color: #FDF7E7;
}

.border-l-login-brightRed{
  border-left-color: #FDF7E7;
}

.border-r-login-brightRed{
  border-right-color: #FDF7E7;
}

.border-b-login-brightRed{
  border-bottom-color: #FDF7E7;
}

.border-t-login-brightRed{
  border-top-color: #FDF7E7;
}

.border-l-login-brightGreen{
  border-left-color: #FDF7E7;
}

.border-r-login-brightGreen{
  border-right-color: #FDF7E7;
}

.border-b-login-brightGreen{
  border-bottom-color: #FDF7E7;
}

.border-t-login-brightGreen{
  border-top-color: #FDF7E7;
}

.border-l-login-brightYellow{
  border-left-color: #FDF7E7;
}

.border-r-login-brightYellow{
  border-right-color: #FDF7E7;
}

.border-b-login-brightYellow{
  border-bottom-color: #FDF7E7;
}

.border-t-login-brightYellow{
  border-top-color: #FDF7E7;
}

.border-l-login-brightBlue{
  border-left-color: #FDF7E7;
}

.border-r-login-brightBlue{
  border-right-color: #FDF7E7;
}

.border-b-login-brightBlue{
  border-bottom-color: #FDF7E7;
}

.border-t-login-brightBlue{
  border-top-color: #FDF7E7;
}

.border-l-login-brightMagenta{
  border-left-color: #FDF7E7;
}

.border-r-login-brightMagenta{
  border-right-color: #FDF7E7;
}

.border-b-login-brightMagenta{
  border-bottom-color: #FDF7E7;
}

.border-t-login-brightMagenta{
  border-top-color: #FDF7E7;
}

.border-l-login-brightCyan{
  border-left-color: #FDF7E7;
}

.border-r-login-brightCyan{
  border-right-color: #FDF7E7;
}

.border-b-login-brightCyan{
  border-bottom-color: #FDF7E7;
}

.border-t-login-brightCyan{
  border-top-color: #FDF7E7;
}

.border-l-login-brightWhite{
  border-left-color: #FDF7E7;
}

.border-r-login-brightWhite{
  border-right-color: #FDF7E7;
}

.border-b-login-brightWhite{
  border-bottom-color: #FDF7E7;
}

.border-t-login-brightWhite{
  border-top-color: #FDF7E7;
}

.border-l-login-bgBlack{
  border-left-color: #FDF7E7;
}

.border-r-login-bgBlack{
  border-right-color: #FDF7E7;
}

.border-b-login-bgBlack{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgBlack{
  border-top-color: #FDF7E7;
}

.border-l-login-bgRed{
  border-left-color: #FDF7E7;
}

.border-r-login-bgRed{
  border-right-color: #FDF7E7;
}

.border-b-login-bgRed{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgRed{
  border-top-color: #FDF7E7;
}

.border-l-login-bgGreen{
  border-left-color: #FDF7E7;
}

.border-r-login-bgGreen{
  border-right-color: #FDF7E7;
}

.border-b-login-bgGreen{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgGreen{
  border-top-color: #FDF7E7;
}

.border-l-login-bgYellow{
  border-left-color: #FDF7E7;
}

.border-r-login-bgYellow{
  border-right-color: #FDF7E7;
}

.border-b-login-bgYellow{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgYellow{
  border-top-color: #FDF7E7;
}

.border-l-login-bgBlue{
  border-left-color: #FDF7E7;
}

.border-r-login-bgBlue{
  border-right-color: #FDF7E7;
}

.border-b-login-bgBlue{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgBlue{
  border-top-color: #FDF7E7;
}

.border-l-login-bgMagenta{
  border-left-color: #FDF7E7;
}

.border-r-login-bgMagenta{
  border-right-color: #FDF7E7;
}

.border-b-login-bgMagenta{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgMagenta{
  border-top-color: #FDF7E7;
}

.border-l-login-bgCyan{
  border-left-color: #FDF7E7;
}

.border-r-login-bgCyan{
  border-right-color: #FDF7E7;
}

.border-b-login-bgCyan{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgCyan{
  border-top-color: #FDF7E7;
}

.border-l-login-bgWhite{
  border-left-color: #FDF7E7;
}

.border-r-login-bgWhite{
  border-right-color: #FDF7E7;
}

.border-b-login-bgWhite{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgWhite{
  border-top-color: #FDF7E7;
}

.border-l-login-bgGray{
  border-left-color: #FDF7E7;
}

.border-r-login-bgGray{
  border-right-color: #FDF7E7;
}

.border-b-login-bgGray{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgGray{
  border-top-color: #FDF7E7;
}

.border-l-login-bgGrey{
  border-left-color: #FDF7E7;
}

.border-r-login-bgGrey{
  border-right-color: #FDF7E7;
}

.border-b-login-bgGrey{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgGrey{
  border-top-color: #FDF7E7;
}

.border-l-login-bgBrightRed{
  border-left-color: #FDF7E7;
}

.border-r-login-bgBrightRed{
  border-right-color: #FDF7E7;
}

.border-b-login-bgBrightRed{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgBrightRed{
  border-top-color: #FDF7E7;
}

.border-l-login-bgBrightGreen{
  border-left-color: #FDF7E7;
}

.border-r-login-bgBrightGreen{
  border-right-color: #FDF7E7;
}

.border-b-login-bgBrightGreen{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgBrightGreen{
  border-top-color: #FDF7E7;
}

.border-l-login-bgBrightYellow{
  border-left-color: #FDF7E7;
}

.border-r-login-bgBrightYellow{
  border-right-color: #FDF7E7;
}

.border-b-login-bgBrightYellow{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgBrightYellow{
  border-top-color: #FDF7E7;
}

.border-l-login-bgBrightBlue{
  border-left-color: #FDF7E7;
}

.border-r-login-bgBrightBlue{
  border-right-color: #FDF7E7;
}

.border-b-login-bgBrightBlue{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgBrightBlue{
  border-top-color: #FDF7E7;
}

.border-l-login-bgBrightMagenta{
  border-left-color: #FDF7E7;
}

.border-r-login-bgBrightMagenta{
  border-right-color: #FDF7E7;
}

.border-b-login-bgBrightMagenta{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgBrightMagenta{
  border-top-color: #FDF7E7;
}

.border-l-login-bgBrightCyan{
  border-left-color: #FDF7E7;
}

.border-r-login-bgBrightCyan{
  border-right-color: #FDF7E7;
}

.border-b-login-bgBrightCyan{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgBrightCyan{
  border-top-color: #FDF7E7;
}

.border-l-login-bgBrightWhite{
  border-left-color: #FDF7E7;
}

.border-r-login-bgBrightWhite{
  border-right-color: #FDF7E7;
}

.border-b-login-bgBrightWhite{
  border-bottom-color: #FDF7E7;
}

.border-t-login-bgBrightWhite{
  border-top-color: #FDF7E7;
}

.border-l-login-blackBG{
  border-left-color: #FDF7E7;
}

.border-r-login-blackBG{
  border-right-color: #FDF7E7;
}

.border-b-login-blackBG{
  border-bottom-color: #FDF7E7;
}

.border-t-login-blackBG{
  border-top-color: #FDF7E7;
}

.border-l-login-redBG{
  border-left-color: #FDF7E7;
}

.border-r-login-redBG{
  border-right-color: #FDF7E7;
}

.border-b-login-redBG{
  border-bottom-color: #FDF7E7;
}

.border-t-login-redBG{
  border-top-color: #FDF7E7;
}

.border-l-login-greenBG{
  border-left-color: #FDF7E7;
}

.border-r-login-greenBG{
  border-right-color: #FDF7E7;
}

.border-b-login-greenBG{
  border-bottom-color: #FDF7E7;
}

.border-t-login-greenBG{
  border-top-color: #FDF7E7;
}

.border-l-login-yellowBG{
  border-left-color: #FDF7E7;
}

.border-r-login-yellowBG{
  border-right-color: #FDF7E7;
}

.border-b-login-yellowBG{
  border-bottom-color: #FDF7E7;
}

.border-t-login-yellowBG{
  border-top-color: #FDF7E7;
}

.border-l-login-blueBG{
  border-left-color: #FDF7E7;
}

.border-r-login-blueBG{
  border-right-color: #FDF7E7;
}

.border-b-login-blueBG{
  border-bottom-color: #FDF7E7;
}

.border-t-login-blueBG{
  border-top-color: #FDF7E7;
}

.border-l-login-magentaBG{
  border-left-color: #FDF7E7;
}

.border-r-login-magentaBG{
  border-right-color: #FDF7E7;
}

.border-b-login-magentaBG{
  border-bottom-color: #FDF7E7;
}

.border-t-login-magentaBG{
  border-top-color: #FDF7E7;
}

.border-l-login-cyanBG{
  border-left-color: #FDF7E7;
}

.border-r-login-cyanBG{
  border-right-color: #FDF7E7;
}

.border-b-login-cyanBG{
  border-bottom-color: #FDF7E7;
}

.border-t-login-cyanBG{
  border-top-color: #FDF7E7;
}

.border-l-login-whiteBG{
  border-left-color: #FDF7E7;
}

.border-r-login-whiteBG{
  border-right-color: #FDF7E7;
}

.border-b-login-whiteBG{
  border-bottom-color: #FDF7E7;
}

.border-t-login-whiteBG{
  border-top-color: #FDF7E7;
}

.border-l-olive-light{
  border-left-color: #DFF5F6;
}

.border-r-olive-light{
  border-right-color: #DFF5F6;
}

.border-b-olive-light{
  border-bottom-color: #DFF5F6;
}

.border-t-olive-light{
  border-top-color: #DFF5F6;
}

.border-l-olive-drab{
  border-left-color: #5ca02c;
}

.border-r-olive-drab{
  border-right-color: #5ca02c;
}

.border-b-olive-drab{
  border-bottom-color: #5ca02c;
}

.border-t-olive-drab{
  border-top-color: #5ca02c;
}

.border-l-olive-dark{
  border-left-color: #096348;
}

.border-r-olive-dark{
  border-right-color: #096348;
}

.border-b-olive-dark{
  border-bottom-color: #096348;
}

.border-t-olive-dark{
  border-top-color: #096348;
}

.border-l-daisy-light{
  border-left-color: #fffce1;
}

.border-r-daisy-light{
  border-right-color: #fffce1;
}

.border-b-daisy-light{
  border-bottom-color: #fffce1;
}

.border-t-daisy-light{
  border-top-color: #fffce1;
}

.border-l-feedback-gumby{
  border-left-color: #c8e6c9;
}

.border-r-feedback-gumby{
  border-right-color: #c8e6c9;
}

.border-b-feedback-gumby{
  border-bottom-color: #c8e6c9;
}

.border-t-feedback-gumby{
  border-top-color: #c8e6c9;
}

.border-l-feedback-daisy{
  border-left-color: #fff9c4;
}

.border-r-feedback-daisy{
  border-right-color: #fff9c4;
}

.border-b-feedback-daisy{
  border-bottom-color: #fff9c4;
}

.border-t-feedback-daisy{
  border-top-color: #fff9c4;
}

.border-l-feedback-pokey{
  border-left-color: #ffcdd2;
}

.border-r-feedback-pokey{
  border-right-color: #ffcdd2;
}

.border-b-feedback-pokey{
  border-bottom-color: #ffcdd2;
}

.border-t-feedback-pokey{
  border-top-color: #ffcdd2;
}

.border-l-feedback-aster{
  border-left-color: #b3e5fc;
}

.border-r-feedback-aster{
  border-right-color: #b3e5fc;
}

.border-b-feedback-aster{
  border-bottom-color: #b3e5fc;
}

.border-t-feedback-aster{
  border-top-color: #b3e5fc;
}

.border-l-feedback-aster-dark{
  border-left-color: #03567C;
}

.border-r-feedback-aster-dark{
  border-right-color: #03567C;
}

.border-b-feedback-aster-dark{
  border-bottom-color: #03567C;
}

.border-t-feedback-aster-dark{
  border-top-color: #03567C;
}

.border-l-feedback-roxo{
  border-left-color: #d1c4e9;
}

.border-r-feedback-roxo{
  border-right-color: #d1c4e9;
}

.border-b-feedback-roxo{
  border-bottom-color: #d1c4e9;
}

.border-t-feedback-roxo{
  border-top-color: #d1c4e9;
}

.border-l-feedback-error{
  border-left-color: #f44336;
}

.border-r-feedback-error{
  border-right-color: #f44336;
}

.border-b-feedback-error{
  border-bottom-color: #f44336;
}

.border-t-feedback-error{
  border-top-color: #f44336;
}

.border-l-feedback-success{
  border-left-color: #5ca02c;
}

.border-r-feedback-success{
  border-right-color: #5ca02c;
}

.border-b-feedback-success{
  border-bottom-color: #5ca02c;
}

.border-t-feedback-success{
  border-top-color: #5ca02c;
}

.border-l-functional-aoki{
  border-left-color: #6f2ca0;
}

.border-r-functional-aoki{
  border-right-color: #6f2ca0;
}

.border-b-functional-aoki{
  border-bottom-color: #6f2ca0;
}

.border-t-functional-aoki{
  border-top-color: #6f2ca0;
}

.border-l-functional-aoki-dark{
  border-left-color: #3e0071;
}

.border-r-functional-aoki-dark{
  border-right-color: #3e0071;
}

.border-b-functional-aoki-dark{
  border-bottom-color: #3e0071;
}

.border-t-functional-aoki-dark{
  border-top-color: #3e0071;
}

.border-l-functional-aoki-hocus{
  border-left-color: #9035af;
}

.border-r-functional-aoki-hocus{
  border-right-color: #9035af;
}

.border-b-functional-aoki-hocus{
  border-bottom-color: #9035af;
}

.border-t-functional-aoki-hocus{
  border-top-color: #9035af;
}

.border-l-functional-aoki-active{
  border-left-color: #a04fbc;
}

.border-r-functional-aoki-active{
  border-right-color: #a04fbc;
}

.border-b-functional-aoki-active{
  border-bottom-color: #a04fbc;
}

.border-t-functional-aoki-active{
  border-top-color: #a04fbc;
}

.border-l-functional-aoki-light{
  border-left-color: #a15ad2;
}

.border-r-functional-aoki-light{
  border-right-color: #a15ad2;
}

.border-b-functional-aoki-light{
  border-bottom-color: #a15ad2;
}

.border-t-functional-aoki-light{
  border-top-color: #a15ad2;
}

.border-l-functional-kermit{
  border-left-color: #5aa120;
}

.border-r-functional-kermit{
  border-right-color: #5aa120;
}

.border-b-functional-kermit{
  border-bottom-color: #5aa120;
}

.border-t-functional-kermit{
  border-top-color: #5aa120;
}

.border-l-mixlabPlus-light{
  border-left-color: #FFFEF9;
}

.border-r-mixlabPlus-light{
  border-right-color: #FFFEF9;
}

.border-b-mixlabPlus-light{
  border-bottom-color: #FFFEF9;
}

.border-t-mixlabPlus-light{
  border-top-color: #FFFEF9;
}

.border-l-primary-orange-light{
  border-left-color: ;
}

.border-r-primary-orange-light{
  border-right-color: ;
}

.border-b-primary-orange-light{
  border-bottom-color: ;
}

.border-t-primary-orange-light{
  border-top-color: ;
}

.border-l-off-white{
  border-left-color: #FAF9F6;
}

.border-r-off-white{
  border-right-color: #FAF9F6;
}

.border-b-off-white{
  border-bottom-color: #FAF9F6;
}

.border-t-off-white{
  border-top-color: #FAF9F6;
}

.outline-offset-2{
  outline-offset: 0.5rem;
}

.outline-offset-none{
  outline-offset: 0;
}

.outline-black{
  outline-color: #000000;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-transparent{
  outline-color: transparent;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-error{
  outline-color: #f44336;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-success{
  outline-color: #5ca02c;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-white-10{
  outline-color: #FBFBFB;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-white-20{
  outline-color: #ECECEC;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-white{
  outline-color: #FFFFFF;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-cheeto{
  outline-color: #f7a500;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-cheeto-very-light{
  outline-color: #fffaf2;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-cheeto-light{
  outline-color: #ffd649;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-cheeto-dark{
  outline-color: #bf7600;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-cheeto-hocus{
  outline-color: #f8bd0f;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-cheeto-active{
  outline-color: #f8d61b;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-cheeto-ml-plus{
  outline-color: #FBEFCA;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-cheeto-banner{
  outline-color: #fef7e5;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-1{
  outline-color: #f8f8fa;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-10{
  outline-color: #faf7fd;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-20{
  outline-color: #e0dde3;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-30{
  outline-color: #c8c5ca;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-40{
  outline-color: #aeacb0;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-50{
  outline-color: #969497;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-60{
  outline-color: #7c7b7e;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-70{
  outline-color: #646265;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-80{
  outline-color: #4a494b;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-90{
  outline-color: #323132;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-100{
  outline-color: #181818;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy{
  outline-color: #6F7878;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-gracy-overlay-90{
  outline-color: rgba(50,49,50,0.5);
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-0{
  outline-color: #;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-1{
  outline-color: F;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-2{
  outline-color: D;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-3{
  outline-color: F;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-4{
  outline-color: 7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-5{
  outline-color: E;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-6{
  outline-color: 7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bold{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-strip{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-stripColors{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-trap{
  outline-color: #ӺԁӺ7Ҽ7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-zalgo{
  outline-color: #͇̱̭̠͚̗͖̥̻̱̲̠̦̝̘̗͚̞͚̲̼̗̮̬͍̗̳̗͎̳̲͖̰̭̥̮͈̳͇͙͙̘͎̥͒ͤ̏̃̓͐̓͛̒͑ͧ̌̃ͦ̈͛̀͞F̶̧̓͌̎ͬ̂ͤ̈ͩͦ̅̚ ҉͓̟̪̹̤͍̻̣̞͉̻̫̠̝͙̱͎͈̩̦͚̺͈̣̲̜̞̱̖̭̹̠̺̹̭̤͕̦̙̙̺̬̟͙̱̤̖̲̬̭͎̣̫̜̣͇̰̫̀͞ͅḐ̵͇̲̻͎͙̞͉̙̗̮̥͇̰̟̦̤̘͙̫̞̞̗͔͇̜̦̱̝̗̞̬͓̳̤̼̮̗̻̻̱̱̙̱̤͒͌̇̏̐͐ͨ̇ͦ͜ͅͅͅF̸̴̴̢̱̦͔̖͎̗͎̪̪̲̺͙̥̖̖̥̲̮̲̻̙͙͈̮̱̬͍̀͗͒̆͐̃͗͐̓͛̾̾ͯ͊ͣ͌̓ͯͅͅͅ7̸̷̡̲̰͉̱̒͋ͭ͒̿̇͑̋̊̎̌̓̑̉ͩͨͯ̆̚͡ͅE̡̡̛̹͇̼̝̫͕̪̙͚̜͍̗̖͓͍͉̦̺̦̱͙̘̗͔̲̦̫͓̭ͫ͊͒̈̏͂̿͑̈̓͝7̢̨̣͍̭̹͔͔̤͛̌ͥ̌̈̄ͥ͜͞ͅ;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-zebra{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-rainbow{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-random{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-america{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-reset{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-dim{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-italic{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-underline{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-inverse{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-hidden{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-strikethrough{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-black{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-red{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-green{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-yellow{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-blue{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-magenta{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-cyan{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-white{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-gray{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-grey{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-brightRed{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-brightGreen{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-brightYellow{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-brightBlue{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-brightMagenta{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-brightCyan{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-brightWhite{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgBlack{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgRed{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgGreen{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgYellow{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgBlue{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgMagenta{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgCyan{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgWhite{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgGray{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgGrey{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgBrightRed{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgBrightGreen{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgBrightYellow{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgBrightBlue{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgBrightMagenta{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgBrightCyan{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-bgBrightWhite{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-blackBG{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-redBG{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-greenBG{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-yellowBG{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-blueBG{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-magentaBG{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-cyanBG{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-login-whiteBG{
  outline-color: #FDF7E7;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-olive-light{
  outline-color: #DFF5F6;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-olive-drab{
  outline-color: #5ca02c;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-olive-dark{
  outline-color: #096348;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-daisy-light{
  outline-color: #fffce1;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-feedback-gumby{
  outline-color: #c8e6c9;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-feedback-daisy{
  outline-color: #fff9c4;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-feedback-pokey{
  outline-color: #ffcdd2;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-feedback-aster{
  outline-color: #b3e5fc;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-feedback-aster-dark{
  outline-color: #03567C;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-feedback-roxo{
  outline-color: #d1c4e9;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-feedback-error{
  outline-color: #f44336;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-feedback-success{
  outline-color: #5ca02c;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-functional-aoki{
  outline-color: #6f2ca0;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-functional-aoki-dark{
  outline-color: #3e0071;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-functional-aoki-hocus{
  outline-color: #9035af;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-functional-aoki-active{
  outline-color: #a04fbc;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-functional-aoki-light{
  outline-color: #a15ad2;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-functional-kermit{
  outline-color: #5aa120;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-mixlabPlus-light{
  outline-color: #FFFEF9;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-primary-orange-light{
  outline-color: ;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.outline-off-white{
  outline-color: #FAF9F6;
  outline-width: 0.0625rem;
  outline-style: solid;
}

.scroll-functional-aoki::-webkit-scrollbar{
  width: 6px;
}

.scroll-functional-aoki::-webkit-scrollbar-track{
  background: transparent;
  width: 6px;
}

.scroll-functional-aoki::-webkit-scrollbar-thumb{
  border-radius: 0;
  background-color: #6f2ca0;
}

.scroll-functional-aoki{
  scrollbar-width: thin;
  scrollbar-color: #6f2ca0 transparent;
}

.scroll-cheeto-default::-webkit-scrollbar{
  width: 6px;
}

.scroll-cheeto-default::-webkit-scrollbar-track{
  background: transparent;
  width: 6px;
}

.scroll-cheeto-default::-webkit-scrollbar-thumb{
  border-radius: 0;
  background-color: #f7a500;
}

.scroll-cheeto-default{
  scrollbar-width: thin;
  scrollbar-color: #f7a500 transparent;
}

.line-clamp-0{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 0;
  -webkit-box-orient: vertical;
}

.line-clamp-1{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line-clamp-2{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp-3{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.line-clamp-4{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.line-clamp-5{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.line-clamp-6{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.line-clamp-7{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.line-clamp-8{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.line-clamp-9{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
}

@font-face {
  font-family: 'Moderat';

  src: url(/3fe88e2ea16eccd05f2e6a33840672aa.eot);

  src: url(/3fe88e2ea16eccd05f2e6a33840672aa.eot?#iefix) format('embedded-opentype'),
    url(/74ae0af4fe59544172341824ead76cf6.woff2) format('woff2'), url(/f12fbf09732b96b62954fa299e5ea736.woff) format('woff');

  font-style: normal;

  font-weight: normal;
}

@font-face {
  font-family: 'Moderat';

  src: url(/1ac42ee5c427deb9482576546afdc70e.eot);

  src: url(/1ac42ee5c427deb9482576546afdc70e.eot?#iefix) format('embedded-opentype'),
    url(/0990367fe19579b68c6e04ad30db8edf.woff2) format('woff2'), url(/2c2529ac7035b7d3275faa2d257d078e.woff) format('woff');

  font-style: normal;

  font-weight: bold;
}

@font-face {
  font-family: 'Brown';

  src: url(/f2a6dd153a7b9f1d6482aa8100972eae.eot);

  src: url(/f2a6dd153a7b9f1d6482aa8100972eae.eot?#iefix) format('embedded-opentype'),
    url(/e7919db29fe7e2d6477d47e9366e0164.woff2) format('woff2'),
    url(/4aca14bb1ce8d367bd577a2e89d21b46.woff) format('woff');

  font-style: normal;

  font-weight: normal;
}

@font-face {
  font-family: 'Brown';

  src: url(/b2bb417d1fad370466ad585cc8ca74ff.eot);

  src: url(/b2bb417d1fad370466ad585cc8ca74ff.eot?#iefix) format('embedded-opentype'),
    url(/e166668d57fa9021032ea2689e5179f9.woff2) format('woff2'),
    url(/2714766f18fab559204c42c446ea2200.woff) format('woff');

  font-style: normal;

  font-weight: bold;
}

h1 {
  font-size: 6rem;
  font-family: Moderat, Helvetica, sans-serif;
  line-height: 1.5;
}

h2 {
  font-size: 3.75rem;
  font-family: Moderat, Helvetica, sans-serif;
  line-height: 1.5;
}

h3 {
  font-size: 3rem;
  font-family: Brown, Helvetica, sans-serif;
  line-height: 1.5;
}

.break-word {
  word-break: break-word;
}

/* TAKEN from https://css-tricks.com/the-trick-to-viewport-units-on-mobile/ */

.h-screen {
  height: calc(var(--vh, 1vh) * 100);
}

@media (min-width: 640px){
  .sm\:container{
    width: 100%;
  }

  @media (min-width: 640px){
    .sm\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .sm\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .sm\:container{
      max-width: 1910px;
    }
  }

  .sm\:hover\:container:hover{
    width: 100%;
  }

  @media (min-width: 640px){
    .sm\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .sm\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .sm\:container{
      max-width: 1910px;
    }
  }

  .sm\:focus\:container:focus{
    width: 100%;
  }

  @media (min-width: 640px){
    .sm\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .sm\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .sm\:container{
      max-width: 1910px;
    }
  }

  .sm\:active\:container:active{
    width: 100%;
  }

  @media (min-width: 640px){
    .sm\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .sm\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .sm\:container{
      max-width: 1910px;
    }
  }

  .sm\:first\:container:first-child{
    width: 100%;
  }

  @media (min-width: 640px){
    .sm\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .sm\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .sm\:container{
      max-width: 1910px;
    }
  }

  .sm\:last\:container:last-child{
    width: 100%;
  }

  @media (min-width: 640px){
    .sm\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .sm\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .sm\:container{
      max-width: 1910px;
    }
  }

  .sm\:space-y-0 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .sm\:space-x-0 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-1 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .sm\:space-x-1 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-2 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .sm\:space-x-2 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-3 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .sm\:space-x-3 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-4 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .sm\:space-x-4 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-5 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .sm\:space-x-5 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-6 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .sm\:space-x-6 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-8 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .sm\:space-x-8 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-10 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .sm\:space-x-10 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-12 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .sm\:space-x-12 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-14 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .sm\:space-x-14 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-16 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .sm\:space-x-16 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-20 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .sm\:space-x-20 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-24 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .sm\:space-x-24 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-32 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .sm\:space-x-32 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-40 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .sm\:space-x-40 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-48 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .sm\:space-x-48 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-56 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .sm\:space-x-56 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-64 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .sm\:space-x-64 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-px > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .sm\:space-x-px > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-1 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .sm\:-space-x-1 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-2 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .sm\:-space-x-2 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-3 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .sm\:-space-x-3 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-4 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .sm\:-space-x-4 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-5 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .sm\:-space-x-5 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-6 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .sm\:-space-x-6 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-8 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .sm\:-space-x-8 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-10 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .sm\:-space-x-10 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-12 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .sm\:-space-x-12 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-14 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .sm\:-space-x-14 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-16 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .sm\:-space-x-16 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-20 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .sm\:-space-x-20 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-24 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .sm\:-space-x-24 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-32 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .sm\:-space-x-32 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-40 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .sm\:-space-x-40 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-48 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .sm\:-space-x-48 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-56 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .sm\:-space-x-56 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-64 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .sm\:-space-x-64 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:-space-y-px > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .sm\:-space-x-px > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-y-reverse > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .sm\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .sm\:hover\:space-y-0:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-0:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-1:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-1:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-2:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-2:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-3:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-3:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-4:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-4:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-5:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-5:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-6:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-6:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-8:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-8:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-10:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-10:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-12:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-12:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-14:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-14:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-16:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-16:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-20:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-20:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-24:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-24:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-32:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-32:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-40:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-40:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-48:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-48:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-56:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-56:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-64:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-64:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-px:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .sm\:hover\:space-x-px:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-1:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-1:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-2:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-2:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-3:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-3:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-4:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-4:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-5:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-5:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-6:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-6:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-8:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-8:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-10:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-10:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-12:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-12:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-14:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-14:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-16:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-16:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-20:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-20:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-24:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-24:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-32:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-32:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-40:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-40:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-48:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-48:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-56:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-56:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-64:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-64:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:-space-y-px:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .sm\:hover\:-space-x-px:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:hover\:space-y-reverse:hover > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .sm\:hover\:space-x-reverse:hover > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .sm\:focus\:space-y-0:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-0:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-1:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-1:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-2:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-2:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-3:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-3:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-4:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-4:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-5:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-5:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-6:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-6:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-8:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-8:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-10:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-10:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-12:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-12:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-14:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-14:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-16:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-16:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-20:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-20:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-24:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-24:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-32:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-32:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-40:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-40:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-48:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-48:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-56:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-56:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-64:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-64:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-px:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .sm\:focus\:space-x-px:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-1:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-1:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-2:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-2:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-3:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-3:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-4:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-4:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-5:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-5:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-6:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-6:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-8:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-8:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-10:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-10:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-12:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-12:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-14:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-14:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-16:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-16:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-20:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-20:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-24:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-24:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-32:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-32:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-40:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-40:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-48:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-48:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-56:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-56:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-64:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-64:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:-space-y-px:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .sm\:focus\:-space-x-px:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:focus\:space-y-reverse:focus > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .sm\:focus\:space-x-reverse:focus > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .sm\:active\:space-y-0:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .sm\:active\:space-x-0:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-1:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-1:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-2:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-2:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-3:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-3:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-4:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-4:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-5:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-5:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-6:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-6:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-8:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-8:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-10:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-10:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-12:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-12:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-14:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-14:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-16:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-16:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-20:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-20:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-24:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-24:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-32:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-32:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-40:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-40:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-48:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-48:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-56:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-56:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-64:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .sm\:active\:space-x-64:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-px:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .sm\:active\:space-x-px:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-1:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-1:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-2:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-2:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-3:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-3:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-4:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-4:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-5:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-5:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-6:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-6:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-8:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-8:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-10:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-10:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-12:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-12:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-14:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-14:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-16:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-16:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-20:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-20:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-24:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-24:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-32:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-32:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-40:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-40:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-48:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-48:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-56:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-56:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-64:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-64:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:-space-y-px:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .sm\:active\:-space-x-px:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:active\:space-y-reverse:active > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .sm\:active\:space-x-reverse:active > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .sm\:first\:space-y-0:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .sm\:first\:space-x-0:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-1:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-1:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-2:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-2:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-3:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-3:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-4:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-4:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-5:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-5:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-6:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-6:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-8:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-8:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-10:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-10:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-12:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-12:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-14:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-14:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-16:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-16:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-20:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-20:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-24:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-24:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-32:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-32:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-40:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-40:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-48:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-48:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-56:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-56:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-64:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .sm\:first\:space-x-64:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-px:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .sm\:first\:space-x-px:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-1:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-1:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-2:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-2:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-3:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-3:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-4:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-4:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-5:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-5:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-6:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-6:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-8:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-8:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-10:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-10:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-12:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-12:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-14:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-14:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-16:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-16:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-20:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-20:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-24:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-24:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-32:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-32:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-40:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-40:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-48:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-48:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-56:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-56:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-64:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-64:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:-space-y-px:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .sm\:first\:-space-x-px:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:first\:space-y-reverse:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .sm\:first\:space-x-reverse:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .sm\:last\:space-y-0:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .sm\:last\:space-x-0:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-1:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-1:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-2:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-2:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-3:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-3:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-4:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-4:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-5:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-5:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-6:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-6:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-8:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-8:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-10:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-10:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-12:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-12:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-14:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-14:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-16:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-16:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-20:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-20:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-24:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-24:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-32:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-32:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-40:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-40:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-48:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-48:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-56:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-56:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-64:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .sm\:last\:space-x-64:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-px:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .sm\:last\:space-x-px:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-1:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-1:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-2:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-2:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-3:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-3:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-4:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-4:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-5:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-5:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-6:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-6:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-8:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-8:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-10:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-10:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-12:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-12:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-14:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-14:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-16:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-16:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-20:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-20:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-24:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-24:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-32:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-32:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-40:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-40:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-48:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-48:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-56:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-56:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-64:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-64:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:-space-y-px:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .sm\:last\:-space-x-px:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .sm\:last\:space-y-reverse:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .sm\:last\:space-x-reverse:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .sm\:divide-y-0 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .sm\:divide-x-0 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:divide-y-2 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .sm\:divide-x-2 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:divide-y-4 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .sm\:divide-x-4 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:divide-y-8 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .sm\:divide-x-8 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:divide-y > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .sm\:divide-x > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .sm\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .sm\:hover\:divide-y-0:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .sm\:hover\:divide-x-0:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:hover\:divide-y-2:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .sm\:hover\:divide-x-2:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:hover\:divide-y-4:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .sm\:hover\:divide-x-4:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:hover\:divide-y-8:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .sm\:hover\:divide-x-8:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:hover\:divide-y:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .sm\:hover\:divide-x:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:hover\:divide-y-reverse:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .sm\:hover\:divide-x-reverse:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .sm\:focus\:divide-y-0:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .sm\:focus\:divide-x-0:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:focus\:divide-y-2:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .sm\:focus\:divide-x-2:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:focus\:divide-y-4:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .sm\:focus\:divide-x-4:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:focus\:divide-y-8:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .sm\:focus\:divide-x-8:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:focus\:divide-y:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .sm\:focus\:divide-x:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:focus\:divide-y-reverse:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .sm\:focus\:divide-x-reverse:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .sm\:active\:divide-y-0:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .sm\:active\:divide-x-0:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:active\:divide-y-2:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .sm\:active\:divide-x-2:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:active\:divide-y-4:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .sm\:active\:divide-x-4:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:active\:divide-y-8:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .sm\:active\:divide-x-8:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:active\:divide-y:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .sm\:active\:divide-x:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:active\:divide-y-reverse:active > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .sm\:active\:divide-x-reverse:active > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .sm\:first\:divide-y-0:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .sm\:first\:divide-x-0:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:first\:divide-y-2:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .sm\:first\:divide-x-2:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:first\:divide-y-4:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .sm\:first\:divide-x-4:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:first\:divide-y-8:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .sm\:first\:divide-x-8:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:first\:divide-y:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .sm\:first\:divide-x:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:first\:divide-y-reverse:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .sm\:first\:divide-x-reverse:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .sm\:last\:divide-y-0:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .sm\:last\:divide-x-0:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:last\:divide-y-2:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .sm\:last\:divide-x-2:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:last\:divide-y-4:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .sm\:last\:divide-x-4:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:last\:divide-y-8:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .sm\:last\:divide-x-8:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:last\:divide-y:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .sm\:last\:divide-x:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:last\:divide-y-reverse:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .sm\:last\:divide-x-reverse:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .sm\:divide-black > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .sm\:divide-transparent > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .sm\:divide-error > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:divide-success > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:divide-white-10 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .sm\:divide-white-20 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .sm\:divide-white > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .sm\:divide-cheeto > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .sm\:divide-cheeto-very-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .sm\:divide-cheeto-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .sm\:divide-cheeto-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .sm\:divide-cheeto-hocus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .sm\:divide-cheeto-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .sm\:divide-cheeto-ml-plus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .sm\:divide-cheeto-banner > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .sm\:divide-gracy-1 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .sm\:divide-gracy-10 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .sm\:divide-gracy-20 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .sm\:divide-gracy-30 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .sm\:divide-gracy-40 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .sm\:divide-gracy-50 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .sm\:divide-gracy-60 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .sm\:divide-gracy-70 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .sm\:divide-gracy-80 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .sm\:divide-gracy-90 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .sm\:divide-gracy-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .sm\:divide-gracy > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .sm\:divide-gracy-overlay-90 > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:divide-login > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .sm\:divide-olive-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .sm\:divide-olive-drab > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:divide-olive-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .sm\:divide-daisy-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .sm\:divide-feedback-gumby > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .sm\:divide-feedback-daisy > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .sm\:divide-feedback-pokey > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .sm\:divide-feedback-aster > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .sm\:divide-feedback-aster-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .sm\:divide-feedback-roxo > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .sm\:divide-feedback-error > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:divide-feedback-success > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:divide-functional-aoki > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .sm\:divide-functional-aoki-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .sm\:divide-functional-aoki-hocus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .sm\:divide-functional-aoki-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .sm\:divide-functional-aoki-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .sm\:divide-functional-kermit > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .sm\:divide-mixlabPlus-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .sm\:divide-primary-orange-light > :not(template) ~ :not(template){
    border-color: ;
  }

  .sm\:divide-off-white > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .sm\:hover\:divide-black:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .sm\:hover\:divide-transparent:hover > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .sm\:hover\:divide-error:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:hover\:divide-success:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:hover\:divide-white-10:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .sm\:hover\:divide-white-20:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .sm\:hover\:divide-white:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .sm\:hover\:divide-cheeto:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .sm\:hover\:divide-cheeto-very-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .sm\:hover\:divide-cheeto-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .sm\:hover\:divide-cheeto-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .sm\:hover\:divide-cheeto-hocus:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .sm\:hover\:divide-cheeto-active:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .sm\:hover\:divide-cheeto-ml-plus:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .sm\:hover\:divide-cheeto-banner:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-1:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-10:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-20:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-30:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-40:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-50:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-60:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-70:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-80:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-90:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-100:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .sm\:hover\:divide-gracy-overlay-90:hover > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:hover\:divide-login:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .sm\:hover\:divide-olive-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .sm\:hover\:divide-olive-drab:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:hover\:divide-olive-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .sm\:hover\:divide-daisy-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .sm\:hover\:divide-feedback-gumby:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .sm\:hover\:divide-feedback-daisy:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .sm\:hover\:divide-feedback-pokey:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .sm\:hover\:divide-feedback-aster:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .sm\:hover\:divide-feedback-aster-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .sm\:hover\:divide-feedback-roxo:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .sm\:hover\:divide-feedback-error:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:hover\:divide-feedback-success:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:hover\:divide-functional-aoki:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .sm\:hover\:divide-functional-aoki-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .sm\:hover\:divide-functional-aoki-hocus:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .sm\:hover\:divide-functional-aoki-active:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .sm\:hover\:divide-functional-aoki-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .sm\:hover\:divide-functional-kermit:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .sm\:hover\:divide-mixlabPlus-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .sm\:hover\:divide-primary-orange-light:hover > :not(template) ~ :not(template){
    border-color: ;
  }

  .sm\:hover\:divide-off-white:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .sm\:focus\:divide-black:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .sm\:focus\:divide-transparent:focus > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .sm\:focus\:divide-error:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:focus\:divide-success:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:focus\:divide-white-10:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .sm\:focus\:divide-white-20:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .sm\:focus\:divide-white:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .sm\:focus\:divide-cheeto:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .sm\:focus\:divide-cheeto-very-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .sm\:focus\:divide-cheeto-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .sm\:focus\:divide-cheeto-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .sm\:focus\:divide-cheeto-hocus:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .sm\:focus\:divide-cheeto-active:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .sm\:focus\:divide-cheeto-ml-plus:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .sm\:focus\:divide-cheeto-banner:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-1:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-10:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-20:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-30:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-40:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-50:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-60:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-70:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-80:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-90:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-100:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .sm\:focus\:divide-gracy-overlay-90:focus > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:focus\:divide-login:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .sm\:focus\:divide-olive-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .sm\:focus\:divide-olive-drab:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:focus\:divide-olive-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .sm\:focus\:divide-daisy-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .sm\:focus\:divide-feedback-gumby:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .sm\:focus\:divide-feedback-daisy:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .sm\:focus\:divide-feedback-pokey:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .sm\:focus\:divide-feedback-aster:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .sm\:focus\:divide-feedback-aster-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .sm\:focus\:divide-feedback-roxo:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .sm\:focus\:divide-feedback-error:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:focus\:divide-feedback-success:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:focus\:divide-functional-aoki:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .sm\:focus\:divide-functional-aoki-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .sm\:focus\:divide-functional-aoki-hocus:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .sm\:focus\:divide-functional-aoki-active:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .sm\:focus\:divide-functional-aoki-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .sm\:focus\:divide-functional-kermit:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .sm\:focus\:divide-mixlabPlus-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .sm\:focus\:divide-primary-orange-light:focus > :not(template) ~ :not(template){
    border-color: ;
  }

  .sm\:focus\:divide-off-white:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .sm\:active\:divide-black:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .sm\:active\:divide-transparent:active > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .sm\:active\:divide-error:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:active\:divide-success:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:active\:divide-white-10:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .sm\:active\:divide-white-20:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .sm\:active\:divide-white:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .sm\:active\:divide-cheeto:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .sm\:active\:divide-cheeto-very-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .sm\:active\:divide-cheeto-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .sm\:active\:divide-cheeto-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .sm\:active\:divide-cheeto-hocus:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .sm\:active\:divide-cheeto-active:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .sm\:active\:divide-cheeto-ml-plus:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .sm\:active\:divide-cheeto-banner:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-1:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-10:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-20:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-30:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-40:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-50:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-60:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-70:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-80:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-90:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-100:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .sm\:active\:divide-gracy-overlay-90:active > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:active\:divide-login:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .sm\:active\:divide-olive-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .sm\:active\:divide-olive-drab:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:active\:divide-olive-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .sm\:active\:divide-daisy-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .sm\:active\:divide-feedback-gumby:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .sm\:active\:divide-feedback-daisy:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .sm\:active\:divide-feedback-pokey:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .sm\:active\:divide-feedback-aster:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .sm\:active\:divide-feedback-aster-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .sm\:active\:divide-feedback-roxo:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .sm\:active\:divide-feedback-error:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:active\:divide-feedback-success:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:active\:divide-functional-aoki:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .sm\:active\:divide-functional-aoki-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .sm\:active\:divide-functional-aoki-hocus:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .sm\:active\:divide-functional-aoki-active:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .sm\:active\:divide-functional-aoki-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .sm\:active\:divide-functional-kermit:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .sm\:active\:divide-mixlabPlus-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .sm\:active\:divide-primary-orange-light:active > :not(template) ~ :not(template){
    border-color: ;
  }

  .sm\:active\:divide-off-white:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .sm\:first\:divide-black:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .sm\:first\:divide-transparent:first-child > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .sm\:first\:divide-error:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:first\:divide-success:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:first\:divide-white-10:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .sm\:first\:divide-white-20:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .sm\:first\:divide-white:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .sm\:first\:divide-cheeto:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .sm\:first\:divide-cheeto-very-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .sm\:first\:divide-cheeto-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .sm\:first\:divide-cheeto-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .sm\:first\:divide-cheeto-hocus:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .sm\:first\:divide-cheeto-active:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .sm\:first\:divide-cheeto-ml-plus:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .sm\:first\:divide-cheeto-banner:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-1:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-10:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-20:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-30:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-40:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-50:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-60:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-70:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-80:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-90:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-100:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .sm\:first\:divide-gracy-overlay-90:first-child > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:first\:divide-login:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .sm\:first\:divide-olive-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .sm\:first\:divide-olive-drab:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:first\:divide-olive-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .sm\:first\:divide-daisy-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .sm\:first\:divide-feedback-gumby:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .sm\:first\:divide-feedback-daisy:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .sm\:first\:divide-feedback-pokey:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .sm\:first\:divide-feedback-aster:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .sm\:first\:divide-feedback-aster-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .sm\:first\:divide-feedback-roxo:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .sm\:first\:divide-feedback-error:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:first\:divide-feedback-success:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:first\:divide-functional-aoki:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .sm\:first\:divide-functional-aoki-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .sm\:first\:divide-functional-aoki-hocus:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .sm\:first\:divide-functional-aoki-active:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .sm\:first\:divide-functional-aoki-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .sm\:first\:divide-functional-kermit:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .sm\:first\:divide-mixlabPlus-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .sm\:first\:divide-primary-orange-light:first-child > :not(template) ~ :not(template){
    border-color: ;
  }

  .sm\:first\:divide-off-white:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .sm\:last\:divide-black:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .sm\:last\:divide-transparent:last-child > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .sm\:last\:divide-error:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:last\:divide-success:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:last\:divide-white-10:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .sm\:last\:divide-white-20:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .sm\:last\:divide-white:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .sm\:last\:divide-cheeto:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .sm\:last\:divide-cheeto-very-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .sm\:last\:divide-cheeto-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .sm\:last\:divide-cheeto-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .sm\:last\:divide-cheeto-hocus:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .sm\:last\:divide-cheeto-active:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .sm\:last\:divide-cheeto-ml-plus:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .sm\:last\:divide-cheeto-banner:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-1:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-10:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-20:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-30:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-40:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-50:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-60:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-70:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-80:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-90:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-100:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .sm\:last\:divide-gracy-overlay-90:last-child > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:last\:divide-login:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .sm\:last\:divide-olive-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .sm\:last\:divide-olive-drab:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:last\:divide-olive-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .sm\:last\:divide-daisy-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .sm\:last\:divide-feedback-gumby:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .sm\:last\:divide-feedback-daisy:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .sm\:last\:divide-feedback-pokey:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .sm\:last\:divide-feedback-aster:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .sm\:last\:divide-feedback-aster-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .sm\:last\:divide-feedback-roxo:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .sm\:last\:divide-feedback-error:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .sm\:last\:divide-feedback-success:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .sm\:last\:divide-functional-aoki:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .sm\:last\:divide-functional-aoki-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .sm\:last\:divide-functional-aoki-hocus:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .sm\:last\:divide-functional-aoki-active:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .sm\:last\:divide-functional-aoki-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .sm\:last\:divide-functional-kermit:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .sm\:last\:divide-mixlabPlus-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .sm\:last\:divide-primary-orange-light:last-child > :not(template) ~ :not(template){
    border-color: ;
  }

  .sm\:last\:divide-off-white:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .sm\:divide-solid > :not(template) ~ :not(template){
    border-style: solid;
  }

  .sm\:divide-dashed > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .sm\:divide-dotted > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .sm\:divide-double > :not(template) ~ :not(template){
    border-style: double;
  }

  .sm\:divide-none > :not(template) ~ :not(template){
    border-style: none;
  }

  .sm\:hover\:divide-solid:hover > :not(template) ~ :not(template){
    border-style: solid;
  }

  .sm\:hover\:divide-dashed:hover > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .sm\:hover\:divide-dotted:hover > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .sm\:hover\:divide-double:hover > :not(template) ~ :not(template){
    border-style: double;
  }

  .sm\:hover\:divide-none:hover > :not(template) ~ :not(template){
    border-style: none;
  }

  .sm\:focus\:divide-solid:focus > :not(template) ~ :not(template){
    border-style: solid;
  }

  .sm\:focus\:divide-dashed:focus > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .sm\:focus\:divide-dotted:focus > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .sm\:focus\:divide-double:focus > :not(template) ~ :not(template){
    border-style: double;
  }

  .sm\:focus\:divide-none:focus > :not(template) ~ :not(template){
    border-style: none;
  }

  .sm\:active\:divide-solid:active > :not(template) ~ :not(template){
    border-style: solid;
  }

  .sm\:active\:divide-dashed:active > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .sm\:active\:divide-dotted:active > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .sm\:active\:divide-double:active > :not(template) ~ :not(template){
    border-style: double;
  }

  .sm\:active\:divide-none:active > :not(template) ~ :not(template){
    border-style: none;
  }

  .sm\:first\:divide-solid:first-child > :not(template) ~ :not(template){
    border-style: solid;
  }

  .sm\:first\:divide-dashed:first-child > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .sm\:first\:divide-dotted:first-child > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .sm\:first\:divide-double:first-child > :not(template) ~ :not(template){
    border-style: double;
  }

  .sm\:first\:divide-none:first-child > :not(template) ~ :not(template){
    border-style: none;
  }

  .sm\:last\:divide-solid:last-child > :not(template) ~ :not(template){
    border-style: solid;
  }

  .sm\:last\:divide-dashed:last-child > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .sm\:last\:divide-dotted:last-child > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .sm\:last\:divide-double:last-child > :not(template) ~ :not(template){
    border-style: double;
  }

  .sm\:last\:divide-none:last-child > :not(template) ~ :not(template){
    border-style: none;
  }

  .sm\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .sm\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .sm\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .sm\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .sm\:divide-opacity-80 > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .sm\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .sm\:hover\:divide-opacity-0:hover > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .sm\:hover\:divide-opacity-25:hover > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .sm\:hover\:divide-opacity-50:hover > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .sm\:hover\:divide-opacity-75:hover > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .sm\:hover\:divide-opacity-80:hover > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .sm\:hover\:divide-opacity-100:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .sm\:focus\:divide-opacity-0:focus > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .sm\:focus\:divide-opacity-25:focus > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .sm\:focus\:divide-opacity-50:focus > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .sm\:focus\:divide-opacity-75:focus > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .sm\:focus\:divide-opacity-80:focus > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .sm\:focus\:divide-opacity-100:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .sm\:active\:divide-opacity-0:active > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .sm\:active\:divide-opacity-25:active > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .sm\:active\:divide-opacity-50:active > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .sm\:active\:divide-opacity-75:active > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .sm\:active\:divide-opacity-80:active > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .sm\:active\:divide-opacity-100:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .sm\:first\:divide-opacity-0:first-child > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .sm\:first\:divide-opacity-25:first-child > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .sm\:first\:divide-opacity-50:first-child > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .sm\:first\:divide-opacity-75:first-child > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .sm\:first\:divide-opacity-80:first-child > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .sm\:first\:divide-opacity-100:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .sm\:last\:divide-opacity-0:last-child > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .sm\:last\:divide-opacity-25:last-child > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .sm\:last\:divide-opacity-50:last-child > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .sm\:last\:divide-opacity-75:last-child > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .sm\:last\:divide-opacity-80:last-child > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .sm\:last\:divide-opacity-100:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .sm\: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;
  }

  .sm\:not-sr-only{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .sm\:hover\:sr-only:hover{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .sm\:hover\:not-sr-only:hover{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .sm\: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;
  }

  .sm\:focus\:not-sr-only:focus{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .sm\:active\:sr-only:active{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .sm\:active\:not-sr-only:active{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .sm\:first\:sr-only:first-child{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .sm\:first\:not-sr-only:first-child{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .sm\:last\:sr-only:last-child{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .sm\:last\:not-sr-only:last-child{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .sm\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .sm\:hover\:appearance-none:hover{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .sm\:focus\:appearance-none:focus{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .sm\:active\:appearance-none:active{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .sm\:first\:appearance-none:first-child{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .sm\:last\:appearance-none:last-child{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .sm\:bg-fixed{
    background-attachment: fixed;
  }

  .sm\:bg-local{
    background-attachment: local;
  }

  .sm\:bg-scroll{
    background-attachment: scroll;
  }

  .sm\:hover\:bg-fixed:hover{
    background-attachment: fixed;
  }

  .sm\:hover\:bg-local:hover{
    background-attachment: local;
  }

  .sm\:hover\:bg-scroll:hover{
    background-attachment: scroll;
  }

  .sm\:focus\:bg-fixed:focus{
    background-attachment: fixed;
  }

  .sm\:focus\:bg-local:focus{
    background-attachment: local;
  }

  .sm\:focus\:bg-scroll:focus{
    background-attachment: scroll;
  }

  .sm\:active\:bg-fixed:active{
    background-attachment: fixed;
  }

  .sm\:active\:bg-local:active{
    background-attachment: local;
  }

  .sm\:active\:bg-scroll:active{
    background-attachment: scroll;
  }

  .sm\:first\:bg-fixed:first-child{
    background-attachment: fixed;
  }

  .sm\:first\:bg-local:first-child{
    background-attachment: local;
  }

  .sm\:first\:bg-scroll:first-child{
    background-attachment: scroll;
  }

  .sm\:last\:bg-fixed:last-child{
    background-attachment: fixed;
  }

  .sm\:last\:bg-local:last-child{
    background-attachment: local;
  }

  .sm\:last\:bg-scroll:last-child{
    background-attachment: scroll;
  }

  .sm\:bg-clip-border{
    background-clip: border-box;
  }

  .sm\:bg-clip-padding{
    background-clip: padding-box;
  }

  .sm\:bg-clip-content{
    background-clip: content-box;
  }

  .sm\:bg-clip-text{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .sm\:hover\:bg-clip-border:hover{
    background-clip: border-box;
  }

  .sm\:hover\:bg-clip-padding:hover{
    background-clip: padding-box;
  }

  .sm\:hover\:bg-clip-content:hover{
    background-clip: content-box;
  }

  .sm\:hover\:bg-clip-text:hover{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .sm\:focus\:bg-clip-border:focus{
    background-clip: border-box;
  }

  .sm\:focus\:bg-clip-padding:focus{
    background-clip: padding-box;
  }

  .sm\:focus\:bg-clip-content:focus{
    background-clip: content-box;
  }

  .sm\:focus\:bg-clip-text:focus{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .sm\:active\:bg-clip-border:active{
    background-clip: border-box;
  }

  .sm\:active\:bg-clip-padding:active{
    background-clip: padding-box;
  }

  .sm\:active\:bg-clip-content:active{
    background-clip: content-box;
  }

  .sm\:active\:bg-clip-text:active{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .sm\:first\:bg-clip-border:first-child{
    background-clip: border-box;
  }

  .sm\:first\:bg-clip-padding:first-child{
    background-clip: padding-box;
  }

  .sm\:first\:bg-clip-content:first-child{
    background-clip: content-box;
  }

  .sm\:first\:bg-clip-text:first-child{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .sm\:last\:bg-clip-border:last-child{
    background-clip: border-box;
  }

  .sm\:last\:bg-clip-padding:last-child{
    background-clip: padding-box;
  }

  .sm\:last\:bg-clip-content:last-child{
    background-clip: content-box;
  }

  .sm\:last\:bg-clip-text:last-child{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .sm\:bg-black{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .sm\:bg-transparent{
    background-color: transparent;
  }

  .sm\:bg-error{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:bg-success{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:bg-white-10{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .sm\:bg-white-20{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .sm\:bg-white{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .sm\:bg-cheeto{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .sm\:bg-cheeto-very-light{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .sm\:bg-cheeto-light{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .sm\:bg-cheeto-dark{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .sm\:bg-cheeto-hocus{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .sm\:bg-cheeto-active{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .sm\:bg-cheeto-ml-plus{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .sm\:bg-cheeto-banner{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .sm\:bg-gracy-1{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .sm\:bg-gracy-10{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .sm\:bg-gracy-20{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .sm\:bg-gracy-30{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .sm\:bg-gracy-40{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .sm\:bg-gracy-50{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .sm\:bg-gracy-60{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .sm\:bg-gracy-70{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .sm\:bg-gracy-80{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .sm\:bg-gracy-90{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .sm\:bg-gracy-100{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .sm\:bg-gracy{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .sm\:bg-gracy-overlay-90{
    background-color: rgba(50,49,50,0.5);
  }

  .sm\:bg-login{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .sm\:bg-olive-light{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .sm\:bg-olive-drab{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:bg-olive-dark{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .sm\:bg-daisy-light{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .sm\:bg-feedback-gumby{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .sm\:bg-feedback-daisy{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .sm\:bg-feedback-pokey{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .sm\:bg-feedback-aster{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .sm\:bg-feedback-aster-dark{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .sm\:bg-feedback-roxo{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .sm\:bg-feedback-error{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:bg-feedback-success{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:bg-functional-aoki{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .sm\:bg-functional-aoki-dark{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .sm\:bg-functional-aoki-hocus{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .sm\:bg-functional-aoki-active{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .sm\:bg-functional-aoki-light{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .sm\:bg-functional-kermit{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .sm\:bg-mixlabPlus-light{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .sm\:bg-primary-orange-light{
    background-color: ;
  }

  .sm\:bg-off-white{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .sm\:hover\:bg-black:hover{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .sm\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .sm\:hover\:bg-error:hover{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:hover\:bg-success:hover{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:hover\:bg-white-10:hover{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .sm\:hover\:bg-white-20:hover{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .sm\:hover\:bg-white:hover{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .sm\:hover\:bg-cheeto:hover{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .sm\:hover\:bg-cheeto-very-light:hover{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .sm\:hover\:bg-cheeto-light:hover{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .sm\:hover\:bg-cheeto-dark:hover{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .sm\:hover\:bg-cheeto-hocus:hover{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .sm\:hover\:bg-cheeto-active:hover{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .sm\:hover\:bg-cheeto-ml-plus:hover{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .sm\:hover\:bg-cheeto-banner:hover{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-1:hover{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-10:hover{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-20:hover{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-30:hover{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-40:hover{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-50:hover{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-60:hover{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-70:hover{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-80:hover{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-90:hover{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-100:hover{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy:hover{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .sm\:hover\:bg-gracy-overlay-90:hover{
    background-color: rgba(50,49,50,0.5);
  }

  .sm\:hover\:bg-login:hover{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .sm\:hover\:bg-olive-light:hover{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .sm\:hover\:bg-olive-drab:hover{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:hover\:bg-olive-dark:hover{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .sm\:hover\:bg-daisy-light:hover{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .sm\:hover\:bg-feedback-gumby:hover{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .sm\:hover\:bg-feedback-daisy:hover{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .sm\:hover\:bg-feedback-pokey:hover{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .sm\:hover\:bg-feedback-aster:hover{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .sm\:hover\:bg-feedback-aster-dark:hover{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .sm\:hover\:bg-feedback-roxo:hover{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .sm\:hover\:bg-feedback-error:hover{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:hover\:bg-feedback-success:hover{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:hover\:bg-functional-aoki:hover{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .sm\:hover\:bg-functional-aoki-dark:hover{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .sm\:hover\:bg-functional-aoki-hocus:hover{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .sm\:hover\:bg-functional-aoki-active:hover{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .sm\:hover\:bg-functional-aoki-light:hover{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .sm\:hover\:bg-functional-kermit:hover{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .sm\:hover\:bg-mixlabPlus-light:hover{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .sm\:hover\:bg-primary-orange-light:hover{
    background-color: ;
  }

  .sm\:hover\:bg-off-white:hover{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .sm\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .sm\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .sm\:focus\:bg-error:focus{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:focus\:bg-success:focus{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:focus\:bg-white-10:focus{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .sm\:focus\:bg-white-20:focus{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .sm\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .sm\:focus\:bg-cheeto:focus{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .sm\:focus\:bg-cheeto-very-light:focus{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .sm\:focus\:bg-cheeto-light:focus{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .sm\:focus\:bg-cheeto-dark:focus{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .sm\:focus\:bg-cheeto-hocus:focus{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .sm\:focus\:bg-cheeto-active:focus{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .sm\:focus\:bg-cheeto-ml-plus:focus{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .sm\:focus\:bg-cheeto-banner:focus{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-1:focus{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-10:focus{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-20:focus{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-30:focus{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-40:focus{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-50:focus{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-60:focus{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-70:focus{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-80:focus{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-90:focus{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-100:focus{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy:focus{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .sm\:focus\:bg-gracy-overlay-90:focus{
    background-color: rgba(50,49,50,0.5);
  }

  .sm\:focus\:bg-login:focus{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .sm\:focus\:bg-olive-light:focus{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .sm\:focus\:bg-olive-drab:focus{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:focus\:bg-olive-dark:focus{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .sm\:focus\:bg-daisy-light:focus{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .sm\:focus\:bg-feedback-gumby:focus{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .sm\:focus\:bg-feedback-daisy:focus{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .sm\:focus\:bg-feedback-pokey:focus{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .sm\:focus\:bg-feedback-aster:focus{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .sm\:focus\:bg-feedback-aster-dark:focus{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .sm\:focus\:bg-feedback-roxo:focus{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .sm\:focus\:bg-feedback-error:focus{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:focus\:bg-feedback-success:focus{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:focus\:bg-functional-aoki:focus{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .sm\:focus\:bg-functional-aoki-dark:focus{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .sm\:focus\:bg-functional-aoki-hocus:focus{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .sm\:focus\:bg-functional-aoki-active:focus{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .sm\:focus\:bg-functional-aoki-light:focus{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .sm\:focus\:bg-functional-kermit:focus{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .sm\:focus\:bg-mixlabPlus-light:focus{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-orange-light:focus{
    background-color: ;
  }

  .sm\:focus\:bg-off-white:focus{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .sm\:active\:bg-black:active{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .sm\:active\:bg-transparent:active{
    background-color: transparent;
  }

  .sm\:active\:bg-error:active{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:active\:bg-success:active{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:active\:bg-white-10:active{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .sm\:active\:bg-white-20:active{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .sm\:active\:bg-white:active{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .sm\:active\:bg-cheeto:active{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .sm\:active\:bg-cheeto-very-light:active{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .sm\:active\:bg-cheeto-light:active{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .sm\:active\:bg-cheeto-dark:active{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .sm\:active\:bg-cheeto-hocus:active{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .sm\:active\:bg-cheeto-active:active{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .sm\:active\:bg-cheeto-ml-plus:active{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .sm\:active\:bg-cheeto-banner:active{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-1:active{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-10:active{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-20:active{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-30:active{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-40:active{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-50:active{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-60:active{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-70:active{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-80:active{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-90:active{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-100:active{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy:active{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .sm\:active\:bg-gracy-overlay-90:active{
    background-color: rgba(50,49,50,0.5);
  }

  .sm\:active\:bg-login:active{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .sm\:active\:bg-olive-light:active{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .sm\:active\:bg-olive-drab:active{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:active\:bg-olive-dark:active{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .sm\:active\:bg-daisy-light:active{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .sm\:active\:bg-feedback-gumby:active{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .sm\:active\:bg-feedback-daisy:active{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .sm\:active\:bg-feedback-pokey:active{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .sm\:active\:bg-feedback-aster:active{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .sm\:active\:bg-feedback-aster-dark:active{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .sm\:active\:bg-feedback-roxo:active{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .sm\:active\:bg-feedback-error:active{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:active\:bg-feedback-success:active{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:active\:bg-functional-aoki:active{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .sm\:active\:bg-functional-aoki-dark:active{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .sm\:active\:bg-functional-aoki-hocus:active{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .sm\:active\:bg-functional-aoki-active:active{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .sm\:active\:bg-functional-aoki-light:active{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .sm\:active\:bg-functional-kermit:active{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .sm\:active\:bg-mixlabPlus-light:active{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .sm\:active\:bg-primary-orange-light:active{
    background-color: ;
  }

  .sm\:active\:bg-off-white:active{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .sm\:first\:bg-black:first-child{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .sm\:first\:bg-transparent:first-child{
    background-color: transparent;
  }

  .sm\:first\:bg-error:first-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:first\:bg-success:first-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:first\:bg-white-10:first-child{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .sm\:first\:bg-white-20:first-child{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .sm\:first\:bg-white:first-child{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .sm\:first\:bg-cheeto:first-child{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .sm\:first\:bg-cheeto-very-light:first-child{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .sm\:first\:bg-cheeto-light:first-child{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .sm\:first\:bg-cheeto-dark:first-child{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .sm\:first\:bg-cheeto-hocus:first-child{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .sm\:first\:bg-cheeto-active:first-child{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .sm\:first\:bg-cheeto-ml-plus:first-child{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .sm\:first\:bg-cheeto-banner:first-child{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-1:first-child{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-10:first-child{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-20:first-child{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-30:first-child{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-40:first-child{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-50:first-child{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-60:first-child{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-70:first-child{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-80:first-child{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-90:first-child{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-100:first-child{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy:first-child{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .sm\:first\:bg-gracy-overlay-90:first-child{
    background-color: rgba(50,49,50,0.5);
  }

  .sm\:first\:bg-login:first-child{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .sm\:first\:bg-olive-light:first-child{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .sm\:first\:bg-olive-drab:first-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:first\:bg-olive-dark:first-child{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .sm\:first\:bg-daisy-light:first-child{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .sm\:first\:bg-feedback-gumby:first-child{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .sm\:first\:bg-feedback-daisy:first-child{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .sm\:first\:bg-feedback-pokey:first-child{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .sm\:first\:bg-feedback-aster:first-child{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .sm\:first\:bg-feedback-aster-dark:first-child{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .sm\:first\:bg-feedback-roxo:first-child{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .sm\:first\:bg-feedback-error:first-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:first\:bg-feedback-success:first-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:first\:bg-functional-aoki:first-child{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .sm\:first\:bg-functional-aoki-dark:first-child{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .sm\:first\:bg-functional-aoki-hocus:first-child{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .sm\:first\:bg-functional-aoki-active:first-child{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .sm\:first\:bg-functional-aoki-light:first-child{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .sm\:first\:bg-functional-kermit:first-child{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .sm\:first\:bg-mixlabPlus-light:first-child{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .sm\:first\:bg-primary-orange-light:first-child{
    background-color: ;
  }

  .sm\:first\:bg-off-white:first-child{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .sm\:last\:bg-black:last-child{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .sm\:last\:bg-transparent:last-child{
    background-color: transparent;
  }

  .sm\:last\:bg-error:last-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:last\:bg-success:last-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:last\:bg-white-10:last-child{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .sm\:last\:bg-white-20:last-child{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .sm\:last\:bg-white:last-child{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .sm\:last\:bg-cheeto:last-child{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .sm\:last\:bg-cheeto-very-light:last-child{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .sm\:last\:bg-cheeto-light:last-child{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .sm\:last\:bg-cheeto-dark:last-child{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .sm\:last\:bg-cheeto-hocus:last-child{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .sm\:last\:bg-cheeto-active:last-child{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .sm\:last\:bg-cheeto-ml-plus:last-child{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .sm\:last\:bg-cheeto-banner:last-child{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-1:last-child{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-10:last-child{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-20:last-child{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-30:last-child{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-40:last-child{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-50:last-child{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-60:last-child{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-70:last-child{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-80:last-child{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-90:last-child{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-100:last-child{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy:last-child{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .sm\:last\:bg-gracy-overlay-90:last-child{
    background-color: rgba(50,49,50,0.5);
  }

  .sm\:last\:bg-login:last-child{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .sm\:last\:bg-olive-light:last-child{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .sm\:last\:bg-olive-drab:last-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:last\:bg-olive-dark:last-child{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .sm\:last\:bg-daisy-light:last-child{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .sm\:last\:bg-feedback-gumby:last-child{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .sm\:last\:bg-feedback-daisy:last-child{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .sm\:last\:bg-feedback-pokey:last-child{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .sm\:last\:bg-feedback-aster:last-child{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .sm\:last\:bg-feedback-aster-dark:last-child{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .sm\:last\:bg-feedback-roxo:last-child{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .sm\:last\:bg-feedback-error:last-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .sm\:last\:bg-feedback-success:last-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .sm\:last\:bg-functional-aoki:last-child{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .sm\:last\:bg-functional-aoki-dark:last-child{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .sm\:last\:bg-functional-aoki-hocus:last-child{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .sm\:last\:bg-functional-aoki-active:last-child{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .sm\:last\:bg-functional-aoki-light:last-child{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .sm\:last\:bg-functional-kermit:last-child{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .sm\:last\:bg-mixlabPlus-light:last-child{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .sm\:last\:bg-primary-orange-light:last-child{
    background-color: ;
  }

  .sm\:last\:bg-off-white:last-child{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .sm\:bg-none{
    background-image: none;
  }

  .sm\:bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .sm\:hover\:bg-none:hover{
    background-image: none;
  }

  .sm\:hover\:bg-gradient-to-t:hover{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .sm\:hover\:bg-gradient-to-tr:hover{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .sm\:hover\:bg-gradient-to-r:hover{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .sm\:hover\:bg-gradient-to-br:hover{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .sm\:hover\:bg-gradient-to-b:hover{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .sm\:hover\:bg-gradient-to-bl:hover{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .sm\:hover\:bg-gradient-to-l:hover{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .sm\:hover\:bg-gradient-to-tl:hover{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .sm\:focus\:bg-none:focus{
    background-image: none;
  }

  .sm\:focus\:bg-gradient-to-t:focus{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .sm\:focus\:bg-gradient-to-tr:focus{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .sm\:focus\:bg-gradient-to-r:focus{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .sm\:focus\:bg-gradient-to-br:focus{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .sm\:focus\:bg-gradient-to-b:focus{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .sm\:focus\:bg-gradient-to-bl:focus{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .sm\:focus\:bg-gradient-to-l:focus{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .sm\:focus\:bg-gradient-to-tl:focus{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .sm\:active\:bg-none:active{
    background-image: none;
  }

  .sm\:active\:bg-gradient-to-t:active{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .sm\:active\:bg-gradient-to-tr:active{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .sm\:active\:bg-gradient-to-r:active{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .sm\:active\:bg-gradient-to-br:active{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .sm\:active\:bg-gradient-to-b:active{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .sm\:active\:bg-gradient-to-bl:active{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .sm\:active\:bg-gradient-to-l:active{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .sm\:active\:bg-gradient-to-tl:active{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .sm\:first\:bg-none:first-child{
    background-image: none;
  }

  .sm\:first\:bg-gradient-to-t:first-child{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .sm\:first\:bg-gradient-to-tr:first-child{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .sm\:first\:bg-gradient-to-r:first-child{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .sm\:first\:bg-gradient-to-br:first-child{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .sm\:first\:bg-gradient-to-b:first-child{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .sm\:first\:bg-gradient-to-bl:first-child{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .sm\:first\:bg-gradient-to-l:first-child{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .sm\:first\:bg-gradient-to-tl:first-child{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .sm\:last\:bg-none:last-child{
    background-image: none;
  }

  .sm\:last\:bg-gradient-to-t:last-child{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .sm\:last\:bg-gradient-to-tr:last-child{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .sm\:last\:bg-gradient-to-r:last-child{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .sm\:last\:bg-gradient-to-br:last-child{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .sm\:last\:bg-gradient-to-b:last-child{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .sm\:last\:bg-gradient-to-bl:last-child{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .sm\:last\:bg-gradient-to-l:last-child{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .sm\:last\:bg-gradient-to-tl:last-child{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .sm\:from-black{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:from-transparent{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:from-error{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:from-success{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:from-white-10{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:from-white-20{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:from-white{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:from-cheeto{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:from-cheeto-very-light{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:from-cheeto-light{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:from-cheeto-dark{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:from-cheeto-hocus{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:from-cheeto-active{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:from-cheeto-ml-plus{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:from-cheeto-banner{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:from-gracy-1{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:from-gracy-10{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:from-gracy-20{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:from-gracy-30{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:from-gracy-40{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:from-gracy-50{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:from-gracy-60{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:from-gracy-70{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:from-gracy-80{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:from-gracy-90{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:from-gracy-100{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:from-gracy{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:from-gracy-overlay-90{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:from-login{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:from-olive-light{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:from-olive-drab{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:from-olive-dark{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:from-daisy-light{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:from-feedback-gumby{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:from-feedback-daisy{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:from-feedback-pokey{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:from-feedback-aster{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:from-feedback-aster-dark{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:from-feedback-roxo{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:from-feedback-error{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:from-feedback-success{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:from-functional-aoki{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:from-functional-aoki-dark{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:from-functional-aoki-hocus{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:from-functional-aoki-active{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:from-functional-aoki-light{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:from-functional-kermit{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:from-mixlabPlus-light{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:from-primary-orange-light{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:from-off-white{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:via-black{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:via-transparent{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:via-error{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:via-success{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:via-white-10{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:via-white-20{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:via-white{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:via-cheeto{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:via-cheeto-very-light{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:via-cheeto-light{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:via-cheeto-dark{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:via-cheeto-hocus{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:via-cheeto-active{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:via-cheeto-ml-plus{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:via-cheeto-banner{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:via-gracy-1{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:via-gracy-10{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:via-gracy-20{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:via-gracy-30{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:via-gracy-40{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:via-gracy-50{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:via-gracy-60{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:via-gracy-70{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:via-gracy-80{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:via-gracy-90{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:via-gracy-100{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:via-gracy{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:via-gracy-overlay-90{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:via-login{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:via-olive-light{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:via-olive-drab{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:via-olive-dark{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:via-daisy-light{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:via-feedback-gumby{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:via-feedback-daisy{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:via-feedback-pokey{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:via-feedback-aster{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:via-feedback-aster-dark{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:via-feedback-roxo{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:via-feedback-error{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:via-feedback-success{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:via-functional-aoki{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:via-functional-aoki-dark{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:via-functional-aoki-hocus{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:via-functional-aoki-active{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:via-functional-aoki-light{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:via-functional-kermit{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:via-mixlabPlus-light{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:via-primary-orange-light{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:via-off-white{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:to-black{
    --gradient-to-color: #000000;
  }

  .sm\:to-transparent{
    --gradient-to-color: transparent;
  }

  .sm\:to-error{
    --gradient-to-color: #f44336;
  }

  .sm\:to-success{
    --gradient-to-color: #5ca02c;
  }

  .sm\:to-white-10{
    --gradient-to-color: #FBFBFB;
  }

  .sm\:to-white-20{
    --gradient-to-color: #ECECEC;
  }

  .sm\:to-white{
    --gradient-to-color: #FFFFFF;
  }

  .sm\:to-cheeto{
    --gradient-to-color: #f7a500;
  }

  .sm\:to-cheeto-very-light{
    --gradient-to-color: #fffaf2;
  }

  .sm\:to-cheeto-light{
    --gradient-to-color: #ffd649;
  }

  .sm\:to-cheeto-dark{
    --gradient-to-color: #bf7600;
  }

  .sm\:to-cheeto-hocus{
    --gradient-to-color: #f8bd0f;
  }

  .sm\:to-cheeto-active{
    --gradient-to-color: #f8d61b;
  }

  .sm\:to-cheeto-ml-plus{
    --gradient-to-color: #FBEFCA;
  }

  .sm\:to-cheeto-banner{
    --gradient-to-color: #fef7e5;
  }

  .sm\:to-gracy-1{
    --gradient-to-color: #f8f8fa;
  }

  .sm\:to-gracy-10{
    --gradient-to-color: #faf7fd;
  }

  .sm\:to-gracy-20{
    --gradient-to-color: #e0dde3;
  }

  .sm\:to-gracy-30{
    --gradient-to-color: #c8c5ca;
  }

  .sm\:to-gracy-40{
    --gradient-to-color: #aeacb0;
  }

  .sm\:to-gracy-50{
    --gradient-to-color: #969497;
  }

  .sm\:to-gracy-60{
    --gradient-to-color: #7c7b7e;
  }

  .sm\:to-gracy-70{
    --gradient-to-color: #646265;
  }

  .sm\:to-gracy-80{
    --gradient-to-color: #4a494b;
  }

  .sm\:to-gracy-90{
    --gradient-to-color: #323132;
  }

  .sm\:to-gracy-100{
    --gradient-to-color: #181818;
  }

  .sm\:to-gracy{
    --gradient-to-color: #6F7878;
  }

  .sm\:to-gracy-overlay-90{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .sm\:to-login{
    --gradient-to-color: #FDF7E7;
  }

  .sm\:to-olive-light{
    --gradient-to-color: #DFF5F6;
  }

  .sm\:to-olive-drab{
    --gradient-to-color: #5ca02c;
  }

  .sm\:to-olive-dark{
    --gradient-to-color: #096348;
  }

  .sm\:to-daisy-light{
    --gradient-to-color: #fffce1;
  }

  .sm\:to-feedback-gumby{
    --gradient-to-color: #c8e6c9;
  }

  .sm\:to-feedback-daisy{
    --gradient-to-color: #fff9c4;
  }

  .sm\:to-feedback-pokey{
    --gradient-to-color: #ffcdd2;
  }

  .sm\:to-feedback-aster{
    --gradient-to-color: #b3e5fc;
  }

  .sm\:to-feedback-aster-dark{
    --gradient-to-color: #03567C;
  }

  .sm\:to-feedback-roxo{
    --gradient-to-color: #d1c4e9;
  }

  .sm\:to-feedback-error{
    --gradient-to-color: #f44336;
  }

  .sm\:to-feedback-success{
    --gradient-to-color: #5ca02c;
  }

  .sm\:to-functional-aoki{
    --gradient-to-color: #6f2ca0;
  }

  .sm\:to-functional-aoki-dark{
    --gradient-to-color: #3e0071;
  }

  .sm\:to-functional-aoki-hocus{
    --gradient-to-color: #9035af;
  }

  .sm\:to-functional-aoki-active{
    --gradient-to-color: #a04fbc;
  }

  .sm\:to-functional-aoki-light{
    --gradient-to-color: #a15ad2;
  }

  .sm\:to-functional-kermit{
    --gradient-to-color: #5aa120;
  }

  .sm\:to-mixlabPlus-light{
    --gradient-to-color: #FFFEF9;
  }

  .sm\:to-primary-orange-light{
    --gradient-to-color: ;
  }

  .sm\:to-off-white{
    --gradient-to-color: #FAF9F6;
  }

  .sm\:hover\:from-black:hover{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:hover\:from-transparent:hover{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:hover\:from-error:hover{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:hover\:from-success:hover{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:hover\:from-white-10:hover{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:hover\:from-white-20:hover{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:hover\:from-white:hover{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:hover\:from-cheeto:hover{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:hover\:from-cheeto-very-light:hover{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:hover\:from-cheeto-light:hover{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:hover\:from-cheeto-dark:hover{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:hover\:from-cheeto-hocus:hover{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:hover\:from-cheeto-active:hover{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:hover\:from-cheeto-ml-plus:hover{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:hover\:from-cheeto-banner:hover{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:hover\:from-gracy-1:hover{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:hover\:from-gracy-10:hover{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:hover\:from-gracy-20:hover{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:hover\:from-gracy-30:hover{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:hover\:from-gracy-40:hover{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:hover\:from-gracy-50:hover{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:hover\:from-gracy-60:hover{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:hover\:from-gracy-70:hover{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:hover\:from-gracy-80:hover{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:hover\:from-gracy-90:hover{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:hover\:from-gracy-100:hover{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:hover\:from-gracy:hover{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:hover\:from-gracy-overlay-90:hover{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:hover\:from-login:hover{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:hover\:from-olive-light:hover{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:hover\:from-olive-drab:hover{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:hover\:from-olive-dark:hover{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:hover\:from-daisy-light:hover{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:hover\:from-feedback-gumby:hover{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:hover\:from-feedback-daisy:hover{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:hover\:from-feedback-pokey:hover{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:hover\:from-feedback-aster:hover{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:hover\:from-feedback-aster-dark:hover{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:hover\:from-feedback-roxo:hover{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:hover\:from-feedback-error:hover{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:hover\:from-feedback-success:hover{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:hover\:from-functional-aoki:hover{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:hover\:from-functional-aoki-dark:hover{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:hover\:from-functional-aoki-hocus:hover{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:hover\:from-functional-aoki-active:hover{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:hover\:from-functional-aoki-light:hover{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:hover\:from-functional-kermit:hover{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:hover\:from-mixlabPlus-light:hover{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:hover\:from-primary-orange-light:hover{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:hover\:from-off-white:hover{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:hover\:via-black:hover{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:hover\:via-transparent:hover{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:hover\:via-error:hover{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:hover\:via-success:hover{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:hover\:via-white-10:hover{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:hover\:via-white-20:hover{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:hover\:via-white:hover{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:hover\:via-cheeto:hover{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:hover\:via-cheeto-very-light:hover{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:hover\:via-cheeto-light:hover{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:hover\:via-cheeto-dark:hover{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:hover\:via-cheeto-hocus:hover{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:hover\:via-cheeto-active:hover{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:hover\:via-cheeto-ml-plus:hover{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:hover\:via-cheeto-banner:hover{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:hover\:via-gracy-1:hover{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:hover\:via-gracy-10:hover{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:hover\:via-gracy-20:hover{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:hover\:via-gracy-30:hover{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:hover\:via-gracy-40:hover{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:hover\:via-gracy-50:hover{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:hover\:via-gracy-60:hover{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:hover\:via-gracy-70:hover{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:hover\:via-gracy-80:hover{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:hover\:via-gracy-90:hover{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:hover\:via-gracy-100:hover{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:hover\:via-gracy:hover{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:hover\:via-gracy-overlay-90:hover{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:hover\:via-login:hover{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:hover\:via-olive-light:hover{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:hover\:via-olive-drab:hover{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:hover\:via-olive-dark:hover{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:hover\:via-daisy-light:hover{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:hover\:via-feedback-gumby:hover{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:hover\:via-feedback-daisy:hover{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:hover\:via-feedback-pokey:hover{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:hover\:via-feedback-aster:hover{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:hover\:via-feedback-aster-dark:hover{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:hover\:via-feedback-roxo:hover{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:hover\:via-feedback-error:hover{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:hover\:via-feedback-success:hover{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:hover\:via-functional-aoki:hover{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:hover\:via-functional-aoki-dark:hover{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:hover\:via-functional-aoki-hocus:hover{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:hover\:via-functional-aoki-active:hover{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:hover\:via-functional-aoki-light:hover{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:hover\:via-functional-kermit:hover{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:hover\:via-mixlabPlus-light:hover{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:hover\:via-primary-orange-light:hover{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:hover\:via-off-white:hover{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:hover\:to-black:hover{
    --gradient-to-color: #000000;
  }

  .sm\:hover\:to-transparent:hover{
    --gradient-to-color: transparent;
  }

  .sm\:hover\:to-error:hover{
    --gradient-to-color: #f44336;
  }

  .sm\:hover\:to-success:hover{
    --gradient-to-color: #5ca02c;
  }

  .sm\:hover\:to-white-10:hover{
    --gradient-to-color: #FBFBFB;
  }

  .sm\:hover\:to-white-20:hover{
    --gradient-to-color: #ECECEC;
  }

  .sm\:hover\:to-white:hover{
    --gradient-to-color: #FFFFFF;
  }

  .sm\:hover\:to-cheeto:hover{
    --gradient-to-color: #f7a500;
  }

  .sm\:hover\:to-cheeto-very-light:hover{
    --gradient-to-color: #fffaf2;
  }

  .sm\:hover\:to-cheeto-light:hover{
    --gradient-to-color: #ffd649;
  }

  .sm\:hover\:to-cheeto-dark:hover{
    --gradient-to-color: #bf7600;
  }

  .sm\:hover\:to-cheeto-hocus:hover{
    --gradient-to-color: #f8bd0f;
  }

  .sm\:hover\:to-cheeto-active:hover{
    --gradient-to-color: #f8d61b;
  }

  .sm\:hover\:to-cheeto-ml-plus:hover{
    --gradient-to-color: #FBEFCA;
  }

  .sm\:hover\:to-cheeto-banner:hover{
    --gradient-to-color: #fef7e5;
  }

  .sm\:hover\:to-gracy-1:hover{
    --gradient-to-color: #f8f8fa;
  }

  .sm\:hover\:to-gracy-10:hover{
    --gradient-to-color: #faf7fd;
  }

  .sm\:hover\:to-gracy-20:hover{
    --gradient-to-color: #e0dde3;
  }

  .sm\:hover\:to-gracy-30:hover{
    --gradient-to-color: #c8c5ca;
  }

  .sm\:hover\:to-gracy-40:hover{
    --gradient-to-color: #aeacb0;
  }

  .sm\:hover\:to-gracy-50:hover{
    --gradient-to-color: #969497;
  }

  .sm\:hover\:to-gracy-60:hover{
    --gradient-to-color: #7c7b7e;
  }

  .sm\:hover\:to-gracy-70:hover{
    --gradient-to-color: #646265;
  }

  .sm\:hover\:to-gracy-80:hover{
    --gradient-to-color: #4a494b;
  }

  .sm\:hover\:to-gracy-90:hover{
    --gradient-to-color: #323132;
  }

  .sm\:hover\:to-gracy-100:hover{
    --gradient-to-color: #181818;
  }

  .sm\:hover\:to-gracy:hover{
    --gradient-to-color: #6F7878;
  }

  .sm\:hover\:to-gracy-overlay-90:hover{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .sm\:hover\:to-login:hover{
    --gradient-to-color: #FDF7E7;
  }

  .sm\:hover\:to-olive-light:hover{
    --gradient-to-color: #DFF5F6;
  }

  .sm\:hover\:to-olive-drab:hover{
    --gradient-to-color: #5ca02c;
  }

  .sm\:hover\:to-olive-dark:hover{
    --gradient-to-color: #096348;
  }

  .sm\:hover\:to-daisy-light:hover{
    --gradient-to-color: #fffce1;
  }

  .sm\:hover\:to-feedback-gumby:hover{
    --gradient-to-color: #c8e6c9;
  }

  .sm\:hover\:to-feedback-daisy:hover{
    --gradient-to-color: #fff9c4;
  }

  .sm\:hover\:to-feedback-pokey:hover{
    --gradient-to-color: #ffcdd2;
  }

  .sm\:hover\:to-feedback-aster:hover{
    --gradient-to-color: #b3e5fc;
  }

  .sm\:hover\:to-feedback-aster-dark:hover{
    --gradient-to-color: #03567C;
  }

  .sm\:hover\:to-feedback-roxo:hover{
    --gradient-to-color: #d1c4e9;
  }

  .sm\:hover\:to-feedback-error:hover{
    --gradient-to-color: #f44336;
  }

  .sm\:hover\:to-feedback-success:hover{
    --gradient-to-color: #5ca02c;
  }

  .sm\:hover\:to-functional-aoki:hover{
    --gradient-to-color: #6f2ca0;
  }

  .sm\:hover\:to-functional-aoki-dark:hover{
    --gradient-to-color: #3e0071;
  }

  .sm\:hover\:to-functional-aoki-hocus:hover{
    --gradient-to-color: #9035af;
  }

  .sm\:hover\:to-functional-aoki-active:hover{
    --gradient-to-color: #a04fbc;
  }

  .sm\:hover\:to-functional-aoki-light:hover{
    --gradient-to-color: #a15ad2;
  }

  .sm\:hover\:to-functional-kermit:hover{
    --gradient-to-color: #5aa120;
  }

  .sm\:hover\:to-mixlabPlus-light:hover{
    --gradient-to-color: #FFFEF9;
  }

  .sm\:hover\:to-primary-orange-light:hover{
    --gradient-to-color: ;
  }

  .sm\:hover\:to-off-white:hover{
    --gradient-to-color: #FAF9F6;
  }

  .sm\:focus\:from-black:focus{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:focus\:from-transparent:focus{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:focus\:from-error:focus{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:focus\:from-success:focus{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:focus\:from-white-10:focus{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:focus\:from-white-20:focus{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:focus\:from-white:focus{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:focus\:from-cheeto:focus{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:focus\:from-cheeto-very-light:focus{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:focus\:from-cheeto-light:focus{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:focus\:from-cheeto-dark:focus{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:focus\:from-cheeto-hocus:focus{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:focus\:from-cheeto-active:focus{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:focus\:from-cheeto-ml-plus:focus{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:focus\:from-cheeto-banner:focus{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:focus\:from-gracy-1:focus{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:focus\:from-gracy-10:focus{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:focus\:from-gracy-20:focus{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:focus\:from-gracy-30:focus{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:focus\:from-gracy-40:focus{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:focus\:from-gracy-50:focus{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:focus\:from-gracy-60:focus{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:focus\:from-gracy-70:focus{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:focus\:from-gracy-80:focus{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:focus\:from-gracy-90:focus{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:focus\:from-gracy-100:focus{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:focus\:from-gracy:focus{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:focus\:from-gracy-overlay-90:focus{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:focus\:from-login:focus{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:focus\:from-olive-light:focus{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:focus\:from-olive-drab:focus{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:focus\:from-olive-dark:focus{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:focus\:from-daisy-light:focus{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:focus\:from-feedback-gumby:focus{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:focus\:from-feedback-daisy:focus{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:focus\:from-feedback-pokey:focus{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:focus\:from-feedback-aster:focus{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:focus\:from-feedback-aster-dark:focus{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:focus\:from-feedback-roxo:focus{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:focus\:from-feedback-error:focus{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:focus\:from-feedback-success:focus{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:focus\:from-functional-aoki:focus{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:focus\:from-functional-aoki-dark:focus{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:focus\:from-functional-aoki-hocus:focus{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:focus\:from-functional-aoki-active:focus{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:focus\:from-functional-aoki-light:focus{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:focus\:from-functional-kermit:focus{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:focus\:from-mixlabPlus-light:focus{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:focus\:from-primary-orange-light:focus{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:focus\:from-off-white:focus{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:focus\:via-black:focus{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:focus\:via-transparent:focus{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:focus\:via-error:focus{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:focus\:via-success:focus{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:focus\:via-white-10:focus{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:focus\:via-white-20:focus{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:focus\:via-white:focus{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:focus\:via-cheeto:focus{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:focus\:via-cheeto-very-light:focus{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:focus\:via-cheeto-light:focus{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:focus\:via-cheeto-dark:focus{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:focus\:via-cheeto-hocus:focus{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:focus\:via-cheeto-active:focus{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:focus\:via-cheeto-ml-plus:focus{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:focus\:via-cheeto-banner:focus{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:focus\:via-gracy-1:focus{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:focus\:via-gracy-10:focus{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:focus\:via-gracy-20:focus{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:focus\:via-gracy-30:focus{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:focus\:via-gracy-40:focus{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:focus\:via-gracy-50:focus{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:focus\:via-gracy-60:focus{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:focus\:via-gracy-70:focus{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:focus\:via-gracy-80:focus{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:focus\:via-gracy-90:focus{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:focus\:via-gracy-100:focus{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:focus\:via-gracy:focus{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:focus\:via-gracy-overlay-90:focus{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:focus\:via-login:focus{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:focus\:via-olive-light:focus{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:focus\:via-olive-drab:focus{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:focus\:via-olive-dark:focus{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:focus\:via-daisy-light:focus{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:focus\:via-feedback-gumby:focus{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:focus\:via-feedback-daisy:focus{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:focus\:via-feedback-pokey:focus{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:focus\:via-feedback-aster:focus{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:focus\:via-feedback-aster-dark:focus{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:focus\:via-feedback-roxo:focus{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:focus\:via-feedback-error:focus{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:focus\:via-feedback-success:focus{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:focus\:via-functional-aoki:focus{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:focus\:via-functional-aoki-dark:focus{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:focus\:via-functional-aoki-hocus:focus{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:focus\:via-functional-aoki-active:focus{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:focus\:via-functional-aoki-light:focus{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:focus\:via-functional-kermit:focus{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:focus\:via-mixlabPlus-light:focus{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:focus\:via-primary-orange-light:focus{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:focus\:via-off-white:focus{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:focus\:to-black:focus{
    --gradient-to-color: #000000;
  }

  .sm\:focus\:to-transparent:focus{
    --gradient-to-color: transparent;
  }

  .sm\:focus\:to-error:focus{
    --gradient-to-color: #f44336;
  }

  .sm\:focus\:to-success:focus{
    --gradient-to-color: #5ca02c;
  }

  .sm\:focus\:to-white-10:focus{
    --gradient-to-color: #FBFBFB;
  }

  .sm\:focus\:to-white-20:focus{
    --gradient-to-color: #ECECEC;
  }

  .sm\:focus\:to-white:focus{
    --gradient-to-color: #FFFFFF;
  }

  .sm\:focus\:to-cheeto:focus{
    --gradient-to-color: #f7a500;
  }

  .sm\:focus\:to-cheeto-very-light:focus{
    --gradient-to-color: #fffaf2;
  }

  .sm\:focus\:to-cheeto-light:focus{
    --gradient-to-color: #ffd649;
  }

  .sm\:focus\:to-cheeto-dark:focus{
    --gradient-to-color: #bf7600;
  }

  .sm\:focus\:to-cheeto-hocus:focus{
    --gradient-to-color: #f8bd0f;
  }

  .sm\:focus\:to-cheeto-active:focus{
    --gradient-to-color: #f8d61b;
  }

  .sm\:focus\:to-cheeto-ml-plus:focus{
    --gradient-to-color: #FBEFCA;
  }

  .sm\:focus\:to-cheeto-banner:focus{
    --gradient-to-color: #fef7e5;
  }

  .sm\:focus\:to-gracy-1:focus{
    --gradient-to-color: #f8f8fa;
  }

  .sm\:focus\:to-gracy-10:focus{
    --gradient-to-color: #faf7fd;
  }

  .sm\:focus\:to-gracy-20:focus{
    --gradient-to-color: #e0dde3;
  }

  .sm\:focus\:to-gracy-30:focus{
    --gradient-to-color: #c8c5ca;
  }

  .sm\:focus\:to-gracy-40:focus{
    --gradient-to-color: #aeacb0;
  }

  .sm\:focus\:to-gracy-50:focus{
    --gradient-to-color: #969497;
  }

  .sm\:focus\:to-gracy-60:focus{
    --gradient-to-color: #7c7b7e;
  }

  .sm\:focus\:to-gracy-70:focus{
    --gradient-to-color: #646265;
  }

  .sm\:focus\:to-gracy-80:focus{
    --gradient-to-color: #4a494b;
  }

  .sm\:focus\:to-gracy-90:focus{
    --gradient-to-color: #323132;
  }

  .sm\:focus\:to-gracy-100:focus{
    --gradient-to-color: #181818;
  }

  .sm\:focus\:to-gracy:focus{
    --gradient-to-color: #6F7878;
  }

  .sm\:focus\:to-gracy-overlay-90:focus{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .sm\:focus\:to-login:focus{
    --gradient-to-color: #FDF7E7;
  }

  .sm\:focus\:to-olive-light:focus{
    --gradient-to-color: #DFF5F6;
  }

  .sm\:focus\:to-olive-drab:focus{
    --gradient-to-color: #5ca02c;
  }

  .sm\:focus\:to-olive-dark:focus{
    --gradient-to-color: #096348;
  }

  .sm\:focus\:to-daisy-light:focus{
    --gradient-to-color: #fffce1;
  }

  .sm\:focus\:to-feedback-gumby:focus{
    --gradient-to-color: #c8e6c9;
  }

  .sm\:focus\:to-feedback-daisy:focus{
    --gradient-to-color: #fff9c4;
  }

  .sm\:focus\:to-feedback-pokey:focus{
    --gradient-to-color: #ffcdd2;
  }

  .sm\:focus\:to-feedback-aster:focus{
    --gradient-to-color: #b3e5fc;
  }

  .sm\:focus\:to-feedback-aster-dark:focus{
    --gradient-to-color: #03567C;
  }

  .sm\:focus\:to-feedback-roxo:focus{
    --gradient-to-color: #d1c4e9;
  }

  .sm\:focus\:to-feedback-error:focus{
    --gradient-to-color: #f44336;
  }

  .sm\:focus\:to-feedback-success:focus{
    --gradient-to-color: #5ca02c;
  }

  .sm\:focus\:to-functional-aoki:focus{
    --gradient-to-color: #6f2ca0;
  }

  .sm\:focus\:to-functional-aoki-dark:focus{
    --gradient-to-color: #3e0071;
  }

  .sm\:focus\:to-functional-aoki-hocus:focus{
    --gradient-to-color: #9035af;
  }

  .sm\:focus\:to-functional-aoki-active:focus{
    --gradient-to-color: #a04fbc;
  }

  .sm\:focus\:to-functional-aoki-light:focus{
    --gradient-to-color: #a15ad2;
  }

  .sm\:focus\:to-functional-kermit:focus{
    --gradient-to-color: #5aa120;
  }

  .sm\:focus\:to-mixlabPlus-light:focus{
    --gradient-to-color: #FFFEF9;
  }

  .sm\:focus\:to-primary-orange-light:focus{
    --gradient-to-color: ;
  }

  .sm\:focus\:to-off-white:focus{
    --gradient-to-color: #FAF9F6;
  }

  .sm\:active\:from-black:active{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:active\:from-transparent:active{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:active\:from-error:active{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:active\:from-success:active{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:active\:from-white-10:active{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:active\:from-white-20:active{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:active\:from-white:active{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:active\:from-cheeto:active{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:active\:from-cheeto-very-light:active{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:active\:from-cheeto-light:active{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:active\:from-cheeto-dark:active{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:active\:from-cheeto-hocus:active{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:active\:from-cheeto-active:active{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:active\:from-cheeto-ml-plus:active{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:active\:from-cheeto-banner:active{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:active\:from-gracy-1:active{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:active\:from-gracy-10:active{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:active\:from-gracy-20:active{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:active\:from-gracy-30:active{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:active\:from-gracy-40:active{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:active\:from-gracy-50:active{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:active\:from-gracy-60:active{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:active\:from-gracy-70:active{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:active\:from-gracy-80:active{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:active\:from-gracy-90:active{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:active\:from-gracy-100:active{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:active\:from-gracy:active{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:active\:from-gracy-overlay-90:active{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:active\:from-login:active{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:active\:from-olive-light:active{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:active\:from-olive-drab:active{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:active\:from-olive-dark:active{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:active\:from-daisy-light:active{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:active\:from-feedback-gumby:active{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:active\:from-feedback-daisy:active{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:active\:from-feedback-pokey:active{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:active\:from-feedback-aster:active{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:active\:from-feedback-aster-dark:active{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:active\:from-feedback-roxo:active{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:active\:from-feedback-error:active{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:active\:from-feedback-success:active{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:active\:from-functional-aoki:active{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:active\:from-functional-aoki-dark:active{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:active\:from-functional-aoki-hocus:active{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:active\:from-functional-aoki-active:active{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:active\:from-functional-aoki-light:active{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:active\:from-functional-kermit:active{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:active\:from-mixlabPlus-light:active{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:active\:from-primary-orange-light:active{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:active\:from-off-white:active{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:active\:via-black:active{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:active\:via-transparent:active{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:active\:via-error:active{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:active\:via-success:active{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:active\:via-white-10:active{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:active\:via-white-20:active{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:active\:via-white:active{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:active\:via-cheeto:active{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:active\:via-cheeto-very-light:active{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:active\:via-cheeto-light:active{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:active\:via-cheeto-dark:active{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:active\:via-cheeto-hocus:active{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:active\:via-cheeto-active:active{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:active\:via-cheeto-ml-plus:active{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:active\:via-cheeto-banner:active{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:active\:via-gracy-1:active{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:active\:via-gracy-10:active{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:active\:via-gracy-20:active{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:active\:via-gracy-30:active{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:active\:via-gracy-40:active{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:active\:via-gracy-50:active{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:active\:via-gracy-60:active{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:active\:via-gracy-70:active{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:active\:via-gracy-80:active{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:active\:via-gracy-90:active{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:active\:via-gracy-100:active{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:active\:via-gracy:active{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:active\:via-gracy-overlay-90:active{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:active\:via-login:active{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:active\:via-olive-light:active{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:active\:via-olive-drab:active{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:active\:via-olive-dark:active{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:active\:via-daisy-light:active{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:active\:via-feedback-gumby:active{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:active\:via-feedback-daisy:active{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:active\:via-feedback-pokey:active{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:active\:via-feedback-aster:active{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:active\:via-feedback-aster-dark:active{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:active\:via-feedback-roxo:active{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:active\:via-feedback-error:active{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:active\:via-feedback-success:active{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:active\:via-functional-aoki:active{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:active\:via-functional-aoki-dark:active{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:active\:via-functional-aoki-hocus:active{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:active\:via-functional-aoki-active:active{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:active\:via-functional-aoki-light:active{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:active\:via-functional-kermit:active{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:active\:via-mixlabPlus-light:active{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:active\:via-primary-orange-light:active{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:active\:via-off-white:active{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:active\:to-black:active{
    --gradient-to-color: #000000;
  }

  .sm\:active\:to-transparent:active{
    --gradient-to-color: transparent;
  }

  .sm\:active\:to-error:active{
    --gradient-to-color: #f44336;
  }

  .sm\:active\:to-success:active{
    --gradient-to-color: #5ca02c;
  }

  .sm\:active\:to-white-10:active{
    --gradient-to-color: #FBFBFB;
  }

  .sm\:active\:to-white-20:active{
    --gradient-to-color: #ECECEC;
  }

  .sm\:active\:to-white:active{
    --gradient-to-color: #FFFFFF;
  }

  .sm\:active\:to-cheeto:active{
    --gradient-to-color: #f7a500;
  }

  .sm\:active\:to-cheeto-very-light:active{
    --gradient-to-color: #fffaf2;
  }

  .sm\:active\:to-cheeto-light:active{
    --gradient-to-color: #ffd649;
  }

  .sm\:active\:to-cheeto-dark:active{
    --gradient-to-color: #bf7600;
  }

  .sm\:active\:to-cheeto-hocus:active{
    --gradient-to-color: #f8bd0f;
  }

  .sm\:active\:to-cheeto-active:active{
    --gradient-to-color: #f8d61b;
  }

  .sm\:active\:to-cheeto-ml-plus:active{
    --gradient-to-color: #FBEFCA;
  }

  .sm\:active\:to-cheeto-banner:active{
    --gradient-to-color: #fef7e5;
  }

  .sm\:active\:to-gracy-1:active{
    --gradient-to-color: #f8f8fa;
  }

  .sm\:active\:to-gracy-10:active{
    --gradient-to-color: #faf7fd;
  }

  .sm\:active\:to-gracy-20:active{
    --gradient-to-color: #e0dde3;
  }

  .sm\:active\:to-gracy-30:active{
    --gradient-to-color: #c8c5ca;
  }

  .sm\:active\:to-gracy-40:active{
    --gradient-to-color: #aeacb0;
  }

  .sm\:active\:to-gracy-50:active{
    --gradient-to-color: #969497;
  }

  .sm\:active\:to-gracy-60:active{
    --gradient-to-color: #7c7b7e;
  }

  .sm\:active\:to-gracy-70:active{
    --gradient-to-color: #646265;
  }

  .sm\:active\:to-gracy-80:active{
    --gradient-to-color: #4a494b;
  }

  .sm\:active\:to-gracy-90:active{
    --gradient-to-color: #323132;
  }

  .sm\:active\:to-gracy-100:active{
    --gradient-to-color: #181818;
  }

  .sm\:active\:to-gracy:active{
    --gradient-to-color: #6F7878;
  }

  .sm\:active\:to-gracy-overlay-90:active{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .sm\:active\:to-login:active{
    --gradient-to-color: #FDF7E7;
  }

  .sm\:active\:to-olive-light:active{
    --gradient-to-color: #DFF5F6;
  }

  .sm\:active\:to-olive-drab:active{
    --gradient-to-color: #5ca02c;
  }

  .sm\:active\:to-olive-dark:active{
    --gradient-to-color: #096348;
  }

  .sm\:active\:to-daisy-light:active{
    --gradient-to-color: #fffce1;
  }

  .sm\:active\:to-feedback-gumby:active{
    --gradient-to-color: #c8e6c9;
  }

  .sm\:active\:to-feedback-daisy:active{
    --gradient-to-color: #fff9c4;
  }

  .sm\:active\:to-feedback-pokey:active{
    --gradient-to-color: #ffcdd2;
  }

  .sm\:active\:to-feedback-aster:active{
    --gradient-to-color: #b3e5fc;
  }

  .sm\:active\:to-feedback-aster-dark:active{
    --gradient-to-color: #03567C;
  }

  .sm\:active\:to-feedback-roxo:active{
    --gradient-to-color: #d1c4e9;
  }

  .sm\:active\:to-feedback-error:active{
    --gradient-to-color: #f44336;
  }

  .sm\:active\:to-feedback-success:active{
    --gradient-to-color: #5ca02c;
  }

  .sm\:active\:to-functional-aoki:active{
    --gradient-to-color: #6f2ca0;
  }

  .sm\:active\:to-functional-aoki-dark:active{
    --gradient-to-color: #3e0071;
  }

  .sm\:active\:to-functional-aoki-hocus:active{
    --gradient-to-color: #9035af;
  }

  .sm\:active\:to-functional-aoki-active:active{
    --gradient-to-color: #a04fbc;
  }

  .sm\:active\:to-functional-aoki-light:active{
    --gradient-to-color: #a15ad2;
  }

  .sm\:active\:to-functional-kermit:active{
    --gradient-to-color: #5aa120;
  }

  .sm\:active\:to-mixlabPlus-light:active{
    --gradient-to-color: #FFFEF9;
  }

  .sm\:active\:to-primary-orange-light:active{
    --gradient-to-color: ;
  }

  .sm\:active\:to-off-white:active{
    --gradient-to-color: #FAF9F6;
  }

  .sm\:first\:from-black:first-child{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:first\:from-transparent:first-child{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:first\:from-error:first-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:first\:from-success:first-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:first\:from-white-10:first-child{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:first\:from-white-20:first-child{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:first\:from-white:first-child{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:first\:from-cheeto:first-child{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:first\:from-cheeto-very-light:first-child{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:first\:from-cheeto-light:first-child{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:first\:from-cheeto-dark:first-child{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:first\:from-cheeto-hocus:first-child{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:first\:from-cheeto-active:first-child{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:first\:from-cheeto-ml-plus:first-child{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:first\:from-cheeto-banner:first-child{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:first\:from-gracy-1:first-child{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:first\:from-gracy-10:first-child{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:first\:from-gracy-20:first-child{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:first\:from-gracy-30:first-child{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:first\:from-gracy-40:first-child{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:first\:from-gracy-50:first-child{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:first\:from-gracy-60:first-child{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:first\:from-gracy-70:first-child{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:first\:from-gracy-80:first-child{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:first\:from-gracy-90:first-child{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:first\:from-gracy-100:first-child{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:first\:from-gracy:first-child{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:first\:from-gracy-overlay-90:first-child{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:first\:from-login:first-child{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:first\:from-olive-light:first-child{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:first\:from-olive-drab:first-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:first\:from-olive-dark:first-child{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:first\:from-daisy-light:first-child{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:first\:from-feedback-gumby:first-child{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:first\:from-feedback-daisy:first-child{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:first\:from-feedback-pokey:first-child{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:first\:from-feedback-aster:first-child{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:first\:from-feedback-aster-dark:first-child{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:first\:from-feedback-roxo:first-child{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:first\:from-feedback-error:first-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:first\:from-feedback-success:first-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:first\:from-functional-aoki:first-child{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:first\:from-functional-aoki-dark:first-child{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:first\:from-functional-aoki-hocus:first-child{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:first\:from-functional-aoki-active:first-child{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:first\:from-functional-aoki-light:first-child{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:first\:from-functional-kermit:first-child{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:first\:from-mixlabPlus-light:first-child{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:first\:from-primary-orange-light:first-child{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:first\:from-off-white:first-child{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:first\:via-black:first-child{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:first\:via-transparent:first-child{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:first\:via-error:first-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:first\:via-success:first-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:first\:via-white-10:first-child{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:first\:via-white-20:first-child{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:first\:via-white:first-child{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:first\:via-cheeto:first-child{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:first\:via-cheeto-very-light:first-child{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:first\:via-cheeto-light:first-child{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:first\:via-cheeto-dark:first-child{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:first\:via-cheeto-hocus:first-child{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:first\:via-cheeto-active:first-child{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:first\:via-cheeto-ml-plus:first-child{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:first\:via-cheeto-banner:first-child{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:first\:via-gracy-1:first-child{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:first\:via-gracy-10:first-child{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:first\:via-gracy-20:first-child{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:first\:via-gracy-30:first-child{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:first\:via-gracy-40:first-child{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:first\:via-gracy-50:first-child{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:first\:via-gracy-60:first-child{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:first\:via-gracy-70:first-child{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:first\:via-gracy-80:first-child{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:first\:via-gracy-90:first-child{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:first\:via-gracy-100:first-child{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:first\:via-gracy:first-child{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:first\:via-gracy-overlay-90:first-child{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:first\:via-login:first-child{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:first\:via-olive-light:first-child{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:first\:via-olive-drab:first-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:first\:via-olive-dark:first-child{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:first\:via-daisy-light:first-child{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:first\:via-feedback-gumby:first-child{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:first\:via-feedback-daisy:first-child{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:first\:via-feedback-pokey:first-child{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:first\:via-feedback-aster:first-child{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:first\:via-feedback-aster-dark:first-child{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:first\:via-feedback-roxo:first-child{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:first\:via-feedback-error:first-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:first\:via-feedback-success:first-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:first\:via-functional-aoki:first-child{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:first\:via-functional-aoki-dark:first-child{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:first\:via-functional-aoki-hocus:first-child{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:first\:via-functional-aoki-active:first-child{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:first\:via-functional-aoki-light:first-child{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:first\:via-functional-kermit:first-child{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:first\:via-mixlabPlus-light:first-child{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:first\:via-primary-orange-light:first-child{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:first\:via-off-white:first-child{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:first\:to-black:first-child{
    --gradient-to-color: #000000;
  }

  .sm\:first\:to-transparent:first-child{
    --gradient-to-color: transparent;
  }

  .sm\:first\:to-error:first-child{
    --gradient-to-color: #f44336;
  }

  .sm\:first\:to-success:first-child{
    --gradient-to-color: #5ca02c;
  }

  .sm\:first\:to-white-10:first-child{
    --gradient-to-color: #FBFBFB;
  }

  .sm\:first\:to-white-20:first-child{
    --gradient-to-color: #ECECEC;
  }

  .sm\:first\:to-white:first-child{
    --gradient-to-color: #FFFFFF;
  }

  .sm\:first\:to-cheeto:first-child{
    --gradient-to-color: #f7a500;
  }

  .sm\:first\:to-cheeto-very-light:first-child{
    --gradient-to-color: #fffaf2;
  }

  .sm\:first\:to-cheeto-light:first-child{
    --gradient-to-color: #ffd649;
  }

  .sm\:first\:to-cheeto-dark:first-child{
    --gradient-to-color: #bf7600;
  }

  .sm\:first\:to-cheeto-hocus:first-child{
    --gradient-to-color: #f8bd0f;
  }

  .sm\:first\:to-cheeto-active:first-child{
    --gradient-to-color: #f8d61b;
  }

  .sm\:first\:to-cheeto-ml-plus:first-child{
    --gradient-to-color: #FBEFCA;
  }

  .sm\:first\:to-cheeto-banner:first-child{
    --gradient-to-color: #fef7e5;
  }

  .sm\:first\:to-gracy-1:first-child{
    --gradient-to-color: #f8f8fa;
  }

  .sm\:first\:to-gracy-10:first-child{
    --gradient-to-color: #faf7fd;
  }

  .sm\:first\:to-gracy-20:first-child{
    --gradient-to-color: #e0dde3;
  }

  .sm\:first\:to-gracy-30:first-child{
    --gradient-to-color: #c8c5ca;
  }

  .sm\:first\:to-gracy-40:first-child{
    --gradient-to-color: #aeacb0;
  }

  .sm\:first\:to-gracy-50:first-child{
    --gradient-to-color: #969497;
  }

  .sm\:first\:to-gracy-60:first-child{
    --gradient-to-color: #7c7b7e;
  }

  .sm\:first\:to-gracy-70:first-child{
    --gradient-to-color: #646265;
  }

  .sm\:first\:to-gracy-80:first-child{
    --gradient-to-color: #4a494b;
  }

  .sm\:first\:to-gracy-90:first-child{
    --gradient-to-color: #323132;
  }

  .sm\:first\:to-gracy-100:first-child{
    --gradient-to-color: #181818;
  }

  .sm\:first\:to-gracy:first-child{
    --gradient-to-color: #6F7878;
  }

  .sm\:first\:to-gracy-overlay-90:first-child{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .sm\:first\:to-login:first-child{
    --gradient-to-color: #FDF7E7;
  }

  .sm\:first\:to-olive-light:first-child{
    --gradient-to-color: #DFF5F6;
  }

  .sm\:first\:to-olive-drab:first-child{
    --gradient-to-color: #5ca02c;
  }

  .sm\:first\:to-olive-dark:first-child{
    --gradient-to-color: #096348;
  }

  .sm\:first\:to-daisy-light:first-child{
    --gradient-to-color: #fffce1;
  }

  .sm\:first\:to-feedback-gumby:first-child{
    --gradient-to-color: #c8e6c9;
  }

  .sm\:first\:to-feedback-daisy:first-child{
    --gradient-to-color: #fff9c4;
  }

  .sm\:first\:to-feedback-pokey:first-child{
    --gradient-to-color: #ffcdd2;
  }

  .sm\:first\:to-feedback-aster:first-child{
    --gradient-to-color: #b3e5fc;
  }

  .sm\:first\:to-feedback-aster-dark:first-child{
    --gradient-to-color: #03567C;
  }

  .sm\:first\:to-feedback-roxo:first-child{
    --gradient-to-color: #d1c4e9;
  }

  .sm\:first\:to-feedback-error:first-child{
    --gradient-to-color: #f44336;
  }

  .sm\:first\:to-feedback-success:first-child{
    --gradient-to-color: #5ca02c;
  }

  .sm\:first\:to-functional-aoki:first-child{
    --gradient-to-color: #6f2ca0;
  }

  .sm\:first\:to-functional-aoki-dark:first-child{
    --gradient-to-color: #3e0071;
  }

  .sm\:first\:to-functional-aoki-hocus:first-child{
    --gradient-to-color: #9035af;
  }

  .sm\:first\:to-functional-aoki-active:first-child{
    --gradient-to-color: #a04fbc;
  }

  .sm\:first\:to-functional-aoki-light:first-child{
    --gradient-to-color: #a15ad2;
  }

  .sm\:first\:to-functional-kermit:first-child{
    --gradient-to-color: #5aa120;
  }

  .sm\:first\:to-mixlabPlus-light:first-child{
    --gradient-to-color: #FFFEF9;
  }

  .sm\:first\:to-primary-orange-light:first-child{
    --gradient-to-color: ;
  }

  .sm\:first\:to-off-white:first-child{
    --gradient-to-color: #FAF9F6;
  }

  .sm\:last\:from-black:last-child{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:last\:from-transparent:last-child{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:last\:from-error:last-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:last\:from-success:last-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:last\:from-white-10:last-child{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:last\:from-white-20:last-child{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:last\:from-white:last-child{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:last\:from-cheeto:last-child{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:last\:from-cheeto-very-light:last-child{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:last\:from-cheeto-light:last-child{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:last\:from-cheeto-dark:last-child{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:last\:from-cheeto-hocus:last-child{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:last\:from-cheeto-active:last-child{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:last\:from-cheeto-ml-plus:last-child{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:last\:from-cheeto-banner:last-child{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:last\:from-gracy-1:last-child{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:last\:from-gracy-10:last-child{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:last\:from-gracy-20:last-child{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:last\:from-gracy-30:last-child{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:last\:from-gracy-40:last-child{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:last\:from-gracy-50:last-child{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:last\:from-gracy-60:last-child{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:last\:from-gracy-70:last-child{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:last\:from-gracy-80:last-child{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:last\:from-gracy-90:last-child{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:last\:from-gracy-100:last-child{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:last\:from-gracy:last-child{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:last\:from-gracy-overlay-90:last-child{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:last\:from-login:last-child{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:last\:from-olive-light:last-child{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:last\:from-olive-drab:last-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:last\:from-olive-dark:last-child{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:last\:from-daisy-light:last-child{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:last\:from-feedback-gumby:last-child{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:last\:from-feedback-daisy:last-child{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:last\:from-feedback-pokey:last-child{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:last\:from-feedback-aster:last-child{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:last\:from-feedback-aster-dark:last-child{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:last\:from-feedback-roxo:last-child{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:last\:from-feedback-error:last-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:last\:from-feedback-success:last-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:last\:from-functional-aoki:last-child{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:last\:from-functional-aoki-dark:last-child{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:last\:from-functional-aoki-hocus:last-child{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:last\:from-functional-aoki-active:last-child{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:last\:from-functional-aoki-light:last-child{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:last\:from-functional-kermit:last-child{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:last\:from-mixlabPlus-light:last-child{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:last\:from-primary-orange-light:last-child{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:last\:from-off-white:last-child{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:last\:via-black:last-child{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:last\:via-transparent:last-child{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .sm\:last\:via-error:last-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:last\:via-success:last-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:last\:via-white-10:last-child{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .sm\:last\:via-white-20:last-child{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .sm\:last\:via-white:last-child{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:last\:via-cheeto:last-child{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .sm\:last\:via-cheeto-very-light:last-child{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .sm\:last\:via-cheeto-light:last-child{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .sm\:last\:via-cheeto-dark:last-child{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .sm\:last\:via-cheeto-hocus:last-child{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .sm\:last\:via-cheeto-active:last-child{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .sm\:last\:via-cheeto-ml-plus:last-child{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .sm\:last\:via-cheeto-banner:last-child{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .sm\:last\:via-gracy-1:last-child{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .sm\:last\:via-gracy-10:last-child{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .sm\:last\:via-gracy-20:last-child{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .sm\:last\:via-gracy-30:last-child{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .sm\:last\:via-gracy-40:last-child{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .sm\:last\:via-gracy-50:last-child{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .sm\:last\:via-gracy-60:last-child{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .sm\:last\:via-gracy-70:last-child{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .sm\:last\:via-gracy-80:last-child{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .sm\:last\:via-gracy-90:last-child{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:last\:via-gracy-100:last-child{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .sm\:last\:via-gracy:last-child{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .sm\:last\:via-gracy-overlay-90:last-child{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .sm\:last\:via-login:last-child{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .sm\:last\:via-olive-light:last-child{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .sm\:last\:via-olive-drab:last-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:last\:via-olive-dark:last-child{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .sm\:last\:via-daisy-light:last-child{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .sm\:last\:via-feedback-gumby:last-child{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .sm\:last\:via-feedback-daisy:last-child{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .sm\:last\:via-feedback-pokey:last-child{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .sm\:last\:via-feedback-aster:last-child{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .sm\:last\:via-feedback-aster-dark:last-child{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .sm\:last\:via-feedback-roxo:last-child{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .sm\:last\:via-feedback-error:last-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .sm\:last\:via-feedback-success:last-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .sm\:last\:via-functional-aoki:last-child{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .sm\:last\:via-functional-aoki-dark:last-child{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .sm\:last\:via-functional-aoki-hocus:last-child{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .sm\:last\:via-functional-aoki-active:last-child{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .sm\:last\:via-functional-aoki-light:last-child{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .sm\:last\:via-functional-kermit:last-child{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .sm\:last\:via-mixlabPlus-light:last-child{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .sm\:last\:via-primary-orange-light:last-child{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .sm\:last\:via-off-white:last-child{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .sm\:last\:to-black:last-child{
    --gradient-to-color: #000000;
  }

  .sm\:last\:to-transparent:last-child{
    --gradient-to-color: transparent;
  }

  .sm\:last\:to-error:last-child{
    --gradient-to-color: #f44336;
  }

  .sm\:last\:to-success:last-child{
    --gradient-to-color: #5ca02c;
  }

  .sm\:last\:to-white-10:last-child{
    --gradient-to-color: #FBFBFB;
  }

  .sm\:last\:to-white-20:last-child{
    --gradient-to-color: #ECECEC;
  }

  .sm\:last\:to-white:last-child{
    --gradient-to-color: #FFFFFF;
  }

  .sm\:last\:to-cheeto:last-child{
    --gradient-to-color: #f7a500;
  }

  .sm\:last\:to-cheeto-very-light:last-child{
    --gradient-to-color: #fffaf2;
  }

  .sm\:last\:to-cheeto-light:last-child{
    --gradient-to-color: #ffd649;
  }

  .sm\:last\:to-cheeto-dark:last-child{
    --gradient-to-color: #bf7600;
  }

  .sm\:last\:to-cheeto-hocus:last-child{
    --gradient-to-color: #f8bd0f;
  }

  .sm\:last\:to-cheeto-active:last-child{
    --gradient-to-color: #f8d61b;
  }

  .sm\:last\:to-cheeto-ml-plus:last-child{
    --gradient-to-color: #FBEFCA;
  }

  .sm\:last\:to-cheeto-banner:last-child{
    --gradient-to-color: #fef7e5;
  }

  .sm\:last\:to-gracy-1:last-child{
    --gradient-to-color: #f8f8fa;
  }

  .sm\:last\:to-gracy-10:last-child{
    --gradient-to-color: #faf7fd;
  }

  .sm\:last\:to-gracy-20:last-child{
    --gradient-to-color: #e0dde3;
  }

  .sm\:last\:to-gracy-30:last-child{
    --gradient-to-color: #c8c5ca;
  }

  .sm\:last\:to-gracy-40:last-child{
    --gradient-to-color: #aeacb0;
  }

  .sm\:last\:to-gracy-50:last-child{
    --gradient-to-color: #969497;
  }

  .sm\:last\:to-gracy-60:last-child{
    --gradient-to-color: #7c7b7e;
  }

  .sm\:last\:to-gracy-70:last-child{
    --gradient-to-color: #646265;
  }

  .sm\:last\:to-gracy-80:last-child{
    --gradient-to-color: #4a494b;
  }

  .sm\:last\:to-gracy-90:last-child{
    --gradient-to-color: #323132;
  }

  .sm\:last\:to-gracy-100:last-child{
    --gradient-to-color: #181818;
  }

  .sm\:last\:to-gracy:last-child{
    --gradient-to-color: #6F7878;
  }

  .sm\:last\:to-gracy-overlay-90:last-child{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .sm\:last\:to-login:last-child{
    --gradient-to-color: #FDF7E7;
  }

  .sm\:last\:to-olive-light:last-child{
    --gradient-to-color: #DFF5F6;
  }

  .sm\:last\:to-olive-drab:last-child{
    --gradient-to-color: #5ca02c;
  }

  .sm\:last\:to-olive-dark:last-child{
    --gradient-to-color: #096348;
  }

  .sm\:last\:to-daisy-light:last-child{
    --gradient-to-color: #fffce1;
  }

  .sm\:last\:to-feedback-gumby:last-child{
    --gradient-to-color: #c8e6c9;
  }

  .sm\:last\:to-feedback-daisy:last-child{
    --gradient-to-color: #fff9c4;
  }

  .sm\:last\:to-feedback-pokey:last-child{
    --gradient-to-color: #ffcdd2;
  }

  .sm\:last\:to-feedback-aster:last-child{
    --gradient-to-color: #b3e5fc;
  }

  .sm\:last\:to-feedback-aster-dark:last-child{
    --gradient-to-color: #03567C;
  }

  .sm\:last\:to-feedback-roxo:last-child{
    --gradient-to-color: #d1c4e9;
  }

  .sm\:last\:to-feedback-error:last-child{
    --gradient-to-color: #f44336;
  }

  .sm\:last\:to-feedback-success:last-child{
    --gradient-to-color: #5ca02c;
  }

  .sm\:last\:to-functional-aoki:last-child{
    --gradient-to-color: #6f2ca0;
  }

  .sm\:last\:to-functional-aoki-dark:last-child{
    --gradient-to-color: #3e0071;
  }

  .sm\:last\:to-functional-aoki-hocus:last-child{
    --gradient-to-color: #9035af;
  }

  .sm\:last\:to-functional-aoki-active:last-child{
    --gradient-to-color: #a04fbc;
  }

  .sm\:last\:to-functional-aoki-light:last-child{
    --gradient-to-color: #a15ad2;
  }

  .sm\:last\:to-functional-kermit:last-child{
    --gradient-to-color: #5aa120;
  }

  .sm\:last\:to-mixlabPlus-light:last-child{
    --gradient-to-color: #FFFEF9;
  }

  .sm\:last\:to-primary-orange-light:last-child{
    --gradient-to-color: ;
  }

  .sm\:last\:to-off-white:last-child{
    --gradient-to-color: #FAF9F6;
  }

  .sm\:bg-opacity-0{
    --bg-opacity: 0;
  }

  .sm\:bg-opacity-25{
    --bg-opacity: 0.25;
  }

  .sm\:bg-opacity-50{
    --bg-opacity: .5;
  }

  .sm\:bg-opacity-75{
    --bg-opacity: 0.75;
  }

  .sm\:bg-opacity-80{
    --bg-opacity: .8;
  }

  .sm\:bg-opacity-100{
    --bg-opacity: 1;
  }

  .sm\:hover\:bg-opacity-0:hover{
    --bg-opacity: 0;
  }

  .sm\:hover\:bg-opacity-25:hover{
    --bg-opacity: 0.25;
  }

  .sm\:hover\:bg-opacity-50:hover{
    --bg-opacity: .5;
  }

  .sm\:hover\:bg-opacity-75:hover{
    --bg-opacity: 0.75;
  }

  .sm\:hover\:bg-opacity-80:hover{
    --bg-opacity: .8;
  }

  .sm\:hover\:bg-opacity-100:hover{
    --bg-opacity: 1;
  }

  .sm\:focus\:bg-opacity-0:focus{
    --bg-opacity: 0;
  }

  .sm\:focus\:bg-opacity-25:focus{
    --bg-opacity: 0.25;
  }

  .sm\:focus\:bg-opacity-50:focus{
    --bg-opacity: .5;
  }

  .sm\:focus\:bg-opacity-75:focus{
    --bg-opacity: 0.75;
  }

  .sm\:focus\:bg-opacity-80:focus{
    --bg-opacity: .8;
  }

  .sm\:focus\:bg-opacity-100:focus{
    --bg-opacity: 1;
  }

  .sm\:active\:bg-opacity-0:active{
    --bg-opacity: 0;
  }

  .sm\:active\:bg-opacity-25:active{
    --bg-opacity: 0.25;
  }

  .sm\:active\:bg-opacity-50:active{
    --bg-opacity: .5;
  }

  .sm\:active\:bg-opacity-75:active{
    --bg-opacity: 0.75;
  }

  .sm\:active\:bg-opacity-80:active{
    --bg-opacity: .8;
  }

  .sm\:active\:bg-opacity-100:active{
    --bg-opacity: 1;
  }

  .sm\:first\:bg-opacity-0:first-child{
    --bg-opacity: 0;
  }

  .sm\:first\:bg-opacity-25:first-child{
    --bg-opacity: 0.25;
  }

  .sm\:first\:bg-opacity-50:first-child{
    --bg-opacity: .5;
  }

  .sm\:first\:bg-opacity-75:first-child{
    --bg-opacity: 0.75;
  }

  .sm\:first\:bg-opacity-80:first-child{
    --bg-opacity: .8;
  }

  .sm\:first\:bg-opacity-100:first-child{
    --bg-opacity: 1;
  }

  .sm\:last\:bg-opacity-0:last-child{
    --bg-opacity: 0;
  }

  .sm\:last\:bg-opacity-25:last-child{
    --bg-opacity: 0.25;
  }

  .sm\:last\:bg-opacity-50:last-child{
    --bg-opacity: .5;
  }

  .sm\:last\:bg-opacity-75:last-child{
    --bg-opacity: 0.75;
  }

  .sm\:last\:bg-opacity-80:last-child{
    --bg-opacity: .8;
  }

  .sm\:last\:bg-opacity-100:last-child{
    --bg-opacity: 1;
  }

  .sm\:bg-bottom{
    background-position: bottom;
  }

  .sm\:bg-center{
    background-position: center;
  }

  .sm\:bg-left{
    background-position: left;
  }

  .sm\:bg-left-bottom{
    background-position: left bottom;
  }

  .sm\:bg-left-top{
    background-position: left top;
  }

  .sm\:bg-right{
    background-position: right;
  }

  .sm\:bg-right-bottom{
    background-position: right bottom;
  }

  .sm\:bg-right-top{
    background-position: right top;
  }

  .sm\:bg-top{
    background-position: top;
  }

  .sm\:hover\:bg-bottom:hover{
    background-position: bottom;
  }

  .sm\:hover\:bg-center:hover{
    background-position: center;
  }

  .sm\:hover\:bg-left:hover{
    background-position: left;
  }

  .sm\:hover\:bg-left-bottom:hover{
    background-position: left bottom;
  }

  .sm\:hover\:bg-left-top:hover{
    background-position: left top;
  }

  .sm\:hover\:bg-right:hover{
    background-position: right;
  }

  .sm\:hover\:bg-right-bottom:hover{
    background-position: right bottom;
  }

  .sm\:hover\:bg-right-top:hover{
    background-position: right top;
  }

  .sm\:hover\:bg-top:hover{
    background-position: top;
  }

  .sm\:focus\:bg-bottom:focus{
    background-position: bottom;
  }

  .sm\:focus\:bg-center:focus{
    background-position: center;
  }

  .sm\:focus\:bg-left:focus{
    background-position: left;
  }

  .sm\:focus\:bg-left-bottom:focus{
    background-position: left bottom;
  }

  .sm\:focus\:bg-left-top:focus{
    background-position: left top;
  }

  .sm\:focus\:bg-right:focus{
    background-position: right;
  }

  .sm\:focus\:bg-right-bottom:focus{
    background-position: right bottom;
  }

  .sm\:focus\:bg-right-top:focus{
    background-position: right top;
  }

  .sm\:focus\:bg-top:focus{
    background-position: top;
  }

  .sm\:active\:bg-bottom:active{
    background-position: bottom;
  }

  .sm\:active\:bg-center:active{
    background-position: center;
  }

  .sm\:active\:bg-left:active{
    background-position: left;
  }

  .sm\:active\:bg-left-bottom:active{
    background-position: left bottom;
  }

  .sm\:active\:bg-left-top:active{
    background-position: left top;
  }

  .sm\:active\:bg-right:active{
    background-position: right;
  }

  .sm\:active\:bg-right-bottom:active{
    background-position: right bottom;
  }

  .sm\:active\:bg-right-top:active{
    background-position: right top;
  }

  .sm\:active\:bg-top:active{
    background-position: top;
  }

  .sm\:first\:bg-bottom:first-child{
    background-position: bottom;
  }

  .sm\:first\:bg-center:first-child{
    background-position: center;
  }

  .sm\:first\:bg-left:first-child{
    background-position: left;
  }

  .sm\:first\:bg-left-bottom:first-child{
    background-position: left bottom;
  }

  .sm\:first\:bg-left-top:first-child{
    background-position: left top;
  }

  .sm\:first\:bg-right:first-child{
    background-position: right;
  }

  .sm\:first\:bg-right-bottom:first-child{
    background-position: right bottom;
  }

  .sm\:first\:bg-right-top:first-child{
    background-position: right top;
  }

  .sm\:first\:bg-top:first-child{
    background-position: top;
  }

  .sm\:last\:bg-bottom:last-child{
    background-position: bottom;
  }

  .sm\:last\:bg-center:last-child{
    background-position: center;
  }

  .sm\:last\:bg-left:last-child{
    background-position: left;
  }

  .sm\:last\:bg-left-bottom:last-child{
    background-position: left bottom;
  }

  .sm\:last\:bg-left-top:last-child{
    background-position: left top;
  }

  .sm\:last\:bg-right:last-child{
    background-position: right;
  }

  .sm\:last\:bg-right-bottom:last-child{
    background-position: right bottom;
  }

  .sm\:last\:bg-right-top:last-child{
    background-position: right top;
  }

  .sm\:last\:bg-top:last-child{
    background-position: top;
  }

  .sm\:bg-repeat{
    background-repeat: repeat;
  }

  .sm\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .sm\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .sm\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .sm\:bg-repeat-round{
    background-repeat: round;
  }

  .sm\:bg-repeat-space{
    background-repeat: space;
  }

  .sm\:hover\:bg-repeat:hover{
    background-repeat: repeat;
  }

  .sm\:hover\:bg-no-repeat:hover{
    background-repeat: no-repeat;
  }

  .sm\:hover\:bg-repeat-x:hover{
    background-repeat: repeat-x;
  }

  .sm\:hover\:bg-repeat-y:hover{
    background-repeat: repeat-y;
  }

  .sm\:hover\:bg-repeat-round:hover{
    background-repeat: round;
  }

  .sm\:hover\:bg-repeat-space:hover{
    background-repeat: space;
  }

  .sm\:focus\:bg-repeat:focus{
    background-repeat: repeat;
  }

  .sm\:focus\:bg-no-repeat:focus{
    background-repeat: no-repeat;
  }

  .sm\:focus\:bg-repeat-x:focus{
    background-repeat: repeat-x;
  }

  .sm\:focus\:bg-repeat-y:focus{
    background-repeat: repeat-y;
  }

  .sm\:focus\:bg-repeat-round:focus{
    background-repeat: round;
  }

  .sm\:focus\:bg-repeat-space:focus{
    background-repeat: space;
  }

  .sm\:active\:bg-repeat:active{
    background-repeat: repeat;
  }

  .sm\:active\:bg-no-repeat:active{
    background-repeat: no-repeat;
  }

  .sm\:active\:bg-repeat-x:active{
    background-repeat: repeat-x;
  }

  .sm\:active\:bg-repeat-y:active{
    background-repeat: repeat-y;
  }

  .sm\:active\:bg-repeat-round:active{
    background-repeat: round;
  }

  .sm\:active\:bg-repeat-space:active{
    background-repeat: space;
  }

  .sm\:first\:bg-repeat:first-child{
    background-repeat: repeat;
  }

  .sm\:first\:bg-no-repeat:first-child{
    background-repeat: no-repeat;
  }

  .sm\:first\:bg-repeat-x:first-child{
    background-repeat: repeat-x;
  }

  .sm\:first\:bg-repeat-y:first-child{
    background-repeat: repeat-y;
  }

  .sm\:first\:bg-repeat-round:first-child{
    background-repeat: round;
  }

  .sm\:first\:bg-repeat-space:first-child{
    background-repeat: space;
  }

  .sm\:last\:bg-repeat:last-child{
    background-repeat: repeat;
  }

  .sm\:last\:bg-no-repeat:last-child{
    background-repeat: no-repeat;
  }

  .sm\:last\:bg-repeat-x:last-child{
    background-repeat: repeat-x;
  }

  .sm\:last\:bg-repeat-y:last-child{
    background-repeat: repeat-y;
  }

  .sm\:last\:bg-repeat-round:last-child{
    background-repeat: round;
  }

  .sm\:last\:bg-repeat-space:last-child{
    background-repeat: space;
  }

  .sm\:bg-auto{
    background-size: auto;
  }

  .sm\:bg-cover{
    background-size: cover;
  }

  .sm\:bg-contain{
    background-size: contain;
  }

  .sm\:hover\:bg-auto:hover{
    background-size: auto;
  }

  .sm\:hover\:bg-cover:hover{
    background-size: cover;
  }

  .sm\:hover\:bg-contain:hover{
    background-size: contain;
  }

  .sm\:focus\:bg-auto:focus{
    background-size: auto;
  }

  .sm\:focus\:bg-cover:focus{
    background-size: cover;
  }

  .sm\:focus\:bg-contain:focus{
    background-size: contain;
  }

  .sm\:active\:bg-auto:active{
    background-size: auto;
  }

  .sm\:active\:bg-cover:active{
    background-size: cover;
  }

  .sm\:active\:bg-contain:active{
    background-size: contain;
  }

  .sm\:first\:bg-auto:first-child{
    background-size: auto;
  }

  .sm\:first\:bg-cover:first-child{
    background-size: cover;
  }

  .sm\:first\:bg-contain:first-child{
    background-size: contain;
  }

  .sm\:last\:bg-auto:last-child{
    background-size: auto;
  }

  .sm\:last\:bg-cover:last-child{
    background-size: cover;
  }

  .sm\:last\:bg-contain:last-child{
    background-size: contain;
  }

  .sm\:border-collapse{
    border-collapse: collapse;
  }

  .sm\:border-separate{
    border-collapse: separate;
  }

  .sm\:hover\:border-collapse:hover{
    border-collapse: collapse;
  }

  .sm\:hover\:border-separate:hover{
    border-collapse: separate;
  }

  .sm\:focus\:border-collapse:focus{
    border-collapse: collapse;
  }

  .sm\:focus\:border-separate:focus{
    border-collapse: separate;
  }

  .sm\:active\:border-collapse:active{
    border-collapse: collapse;
  }

  .sm\:active\:border-separate:active{
    border-collapse: separate;
  }

  .sm\:first\:border-collapse:first-child{
    border-collapse: collapse;
  }

  .sm\:first\:border-separate:first-child{
    border-collapse: separate;
  }

  .sm\:last\:border-collapse:last-child{
    border-collapse: collapse;
  }

  .sm\:last\:border-separate:last-child{
    border-collapse: separate;
  }

  .sm\:border-black{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .sm\:border-transparent{
    border-color: transparent;
  }

  .sm\:border-error{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:border-success{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:border-white-10{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .sm\:border-white-20{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .sm\:border-white{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .sm\:border-cheeto{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .sm\:border-cheeto-very-light{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .sm\:border-cheeto-light{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .sm\:border-cheeto-dark{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .sm\:border-cheeto-hocus{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .sm\:border-cheeto-active{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .sm\:border-cheeto-ml-plus{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .sm\:border-cheeto-banner{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .sm\:border-gracy-1{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .sm\:border-gracy-10{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .sm\:border-gracy-20{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .sm\:border-gracy-30{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .sm\:border-gracy-40{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .sm\:border-gracy-50{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .sm\:border-gracy-60{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .sm\:border-gracy-70{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .sm\:border-gracy-80{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .sm\:border-gracy-90{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .sm\:border-gracy-100{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .sm\:border-gracy{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .sm\:border-gracy-overlay-90{
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:border-login{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .sm\:border-olive-light{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .sm\:border-olive-drab{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:border-olive-dark{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .sm\:border-daisy-light{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .sm\:border-feedback-gumby{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .sm\:border-feedback-daisy{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .sm\:border-feedback-pokey{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .sm\:border-feedback-aster{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .sm\:border-feedback-aster-dark{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .sm\:border-feedback-roxo{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .sm\:border-feedback-error{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:border-feedback-success{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:border-functional-aoki{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .sm\:border-functional-aoki-dark{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .sm\:border-functional-aoki-hocus{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .sm\:border-functional-aoki-active{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .sm\:border-functional-aoki-light{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .sm\:border-functional-kermit{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .sm\:border-mixlabPlus-light{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .sm\:border-primary-orange-light{
    border-color: ;
  }

  .sm\:border-off-white{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .sm\:hover\:border-black:hover{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .sm\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .sm\:hover\:border-error:hover{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:hover\:border-success:hover{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:hover\:border-white-10:hover{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .sm\:hover\:border-white-20:hover{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .sm\:hover\:border-white:hover{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .sm\:hover\:border-cheeto:hover{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .sm\:hover\:border-cheeto-very-light:hover{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .sm\:hover\:border-cheeto-light:hover{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .sm\:hover\:border-cheeto-dark:hover{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .sm\:hover\:border-cheeto-hocus:hover{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .sm\:hover\:border-cheeto-active:hover{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .sm\:hover\:border-cheeto-ml-plus:hover{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .sm\:hover\:border-cheeto-banner:hover{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-1:hover{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-10:hover{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-20:hover{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-30:hover{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-40:hover{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-50:hover{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-60:hover{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-70:hover{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-80:hover{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-90:hover{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-100:hover{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .sm\:hover\:border-gracy:hover{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .sm\:hover\:border-gracy-overlay-90:hover{
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:hover\:border-login:hover{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .sm\:hover\:border-olive-light:hover{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .sm\:hover\:border-olive-drab:hover{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:hover\:border-olive-dark:hover{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .sm\:hover\:border-daisy-light:hover{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .sm\:hover\:border-feedback-gumby:hover{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .sm\:hover\:border-feedback-daisy:hover{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .sm\:hover\:border-feedback-pokey:hover{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .sm\:hover\:border-feedback-aster:hover{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .sm\:hover\:border-feedback-aster-dark:hover{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .sm\:hover\:border-feedback-roxo:hover{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .sm\:hover\:border-feedback-error:hover{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:hover\:border-feedback-success:hover{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:hover\:border-functional-aoki:hover{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .sm\:hover\:border-functional-aoki-dark:hover{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .sm\:hover\:border-functional-aoki-hocus:hover{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .sm\:hover\:border-functional-aoki-active:hover{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .sm\:hover\:border-functional-aoki-light:hover{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .sm\:hover\:border-functional-kermit:hover{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .sm\:hover\:border-mixlabPlus-light:hover{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .sm\:hover\:border-primary-orange-light:hover{
    border-color: ;
  }

  .sm\:hover\:border-off-white:hover{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .sm\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .sm\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .sm\:focus\:border-error:focus{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:focus\:border-success:focus{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:focus\:border-white-10:focus{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .sm\:focus\:border-white-20:focus{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .sm\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .sm\:focus\:border-cheeto:focus{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .sm\:focus\:border-cheeto-very-light:focus{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .sm\:focus\:border-cheeto-light:focus{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .sm\:focus\:border-cheeto-dark:focus{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .sm\:focus\:border-cheeto-hocus:focus{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .sm\:focus\:border-cheeto-active:focus{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .sm\:focus\:border-cheeto-ml-plus:focus{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .sm\:focus\:border-cheeto-banner:focus{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-1:focus{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-10:focus{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-20:focus{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-30:focus{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-40:focus{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-50:focus{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-60:focus{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-70:focus{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-80:focus{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-90:focus{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-100:focus{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .sm\:focus\:border-gracy:focus{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .sm\:focus\:border-gracy-overlay-90:focus{
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:focus\:border-login:focus{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .sm\:focus\:border-olive-light:focus{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .sm\:focus\:border-olive-drab:focus{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:focus\:border-olive-dark:focus{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .sm\:focus\:border-daisy-light:focus{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .sm\:focus\:border-feedback-gumby:focus{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .sm\:focus\:border-feedback-daisy:focus{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .sm\:focus\:border-feedback-pokey:focus{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .sm\:focus\:border-feedback-aster:focus{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .sm\:focus\:border-feedback-aster-dark:focus{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .sm\:focus\:border-feedback-roxo:focus{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .sm\:focus\:border-feedback-error:focus{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:focus\:border-feedback-success:focus{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:focus\:border-functional-aoki:focus{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .sm\:focus\:border-functional-aoki-dark:focus{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .sm\:focus\:border-functional-aoki-hocus:focus{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .sm\:focus\:border-functional-aoki-active:focus{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .sm\:focus\:border-functional-aoki-light:focus{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .sm\:focus\:border-functional-kermit:focus{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .sm\:focus\:border-mixlabPlus-light:focus{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .sm\:focus\:border-primary-orange-light:focus{
    border-color: ;
  }

  .sm\:focus\:border-off-white:focus{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .sm\:active\:border-black:active{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .sm\:active\:border-transparent:active{
    border-color: transparent;
  }

  .sm\:active\:border-error:active{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:active\:border-success:active{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:active\:border-white-10:active{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .sm\:active\:border-white-20:active{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .sm\:active\:border-white:active{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .sm\:active\:border-cheeto:active{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .sm\:active\:border-cheeto-very-light:active{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .sm\:active\:border-cheeto-light:active{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .sm\:active\:border-cheeto-dark:active{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .sm\:active\:border-cheeto-hocus:active{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .sm\:active\:border-cheeto-active:active{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .sm\:active\:border-cheeto-ml-plus:active{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .sm\:active\:border-cheeto-banner:active{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .sm\:active\:border-gracy-1:active{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .sm\:active\:border-gracy-10:active{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .sm\:active\:border-gracy-20:active{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .sm\:active\:border-gracy-30:active{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .sm\:active\:border-gracy-40:active{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .sm\:active\:border-gracy-50:active{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .sm\:active\:border-gracy-60:active{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .sm\:active\:border-gracy-70:active{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .sm\:active\:border-gracy-80:active{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .sm\:active\:border-gracy-90:active{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .sm\:active\:border-gracy-100:active{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .sm\:active\:border-gracy:active{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .sm\:active\:border-gracy-overlay-90:active{
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:active\:border-login:active{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .sm\:active\:border-olive-light:active{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .sm\:active\:border-olive-drab:active{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:active\:border-olive-dark:active{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .sm\:active\:border-daisy-light:active{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .sm\:active\:border-feedback-gumby:active{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .sm\:active\:border-feedback-daisy:active{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .sm\:active\:border-feedback-pokey:active{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .sm\:active\:border-feedback-aster:active{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .sm\:active\:border-feedback-aster-dark:active{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .sm\:active\:border-feedback-roxo:active{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .sm\:active\:border-feedback-error:active{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:active\:border-feedback-success:active{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:active\:border-functional-aoki:active{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .sm\:active\:border-functional-aoki-dark:active{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .sm\:active\:border-functional-aoki-hocus:active{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .sm\:active\:border-functional-aoki-active:active{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .sm\:active\:border-functional-aoki-light:active{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .sm\:active\:border-functional-kermit:active{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .sm\:active\:border-mixlabPlus-light:active{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .sm\:active\:border-primary-orange-light:active{
    border-color: ;
  }

  .sm\:active\:border-off-white:active{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .sm\:first\:border-black:first-child{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .sm\:first\:border-transparent:first-child{
    border-color: transparent;
  }

  .sm\:first\:border-error:first-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:first\:border-success:first-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:first\:border-white-10:first-child{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .sm\:first\:border-white-20:first-child{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .sm\:first\:border-white:first-child{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .sm\:first\:border-cheeto:first-child{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .sm\:first\:border-cheeto-very-light:first-child{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .sm\:first\:border-cheeto-light:first-child{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .sm\:first\:border-cheeto-dark:first-child{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .sm\:first\:border-cheeto-hocus:first-child{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .sm\:first\:border-cheeto-active:first-child{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .sm\:first\:border-cheeto-ml-plus:first-child{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .sm\:first\:border-cheeto-banner:first-child{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .sm\:first\:border-gracy-1:first-child{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .sm\:first\:border-gracy-10:first-child{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .sm\:first\:border-gracy-20:first-child{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .sm\:first\:border-gracy-30:first-child{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .sm\:first\:border-gracy-40:first-child{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .sm\:first\:border-gracy-50:first-child{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .sm\:first\:border-gracy-60:first-child{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .sm\:first\:border-gracy-70:first-child{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .sm\:first\:border-gracy-80:first-child{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .sm\:first\:border-gracy-90:first-child{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .sm\:first\:border-gracy-100:first-child{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .sm\:first\:border-gracy:first-child{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .sm\:first\:border-gracy-overlay-90:first-child{
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:first\:border-login:first-child{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .sm\:first\:border-olive-light:first-child{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .sm\:first\:border-olive-drab:first-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:first\:border-olive-dark:first-child{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .sm\:first\:border-daisy-light:first-child{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .sm\:first\:border-feedback-gumby:first-child{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .sm\:first\:border-feedback-daisy:first-child{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .sm\:first\:border-feedback-pokey:first-child{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .sm\:first\:border-feedback-aster:first-child{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .sm\:first\:border-feedback-aster-dark:first-child{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .sm\:first\:border-feedback-roxo:first-child{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .sm\:first\:border-feedback-error:first-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:first\:border-feedback-success:first-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:first\:border-functional-aoki:first-child{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .sm\:first\:border-functional-aoki-dark:first-child{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .sm\:first\:border-functional-aoki-hocus:first-child{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .sm\:first\:border-functional-aoki-active:first-child{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .sm\:first\:border-functional-aoki-light:first-child{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .sm\:first\:border-functional-kermit:first-child{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .sm\:first\:border-mixlabPlus-light:first-child{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .sm\:first\:border-primary-orange-light:first-child{
    border-color: ;
  }

  .sm\:first\:border-off-white:first-child{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .sm\:last\:border-black:last-child{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .sm\:last\:border-transparent:last-child{
    border-color: transparent;
  }

  .sm\:last\:border-error:last-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:last\:border-success:last-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:last\:border-white-10:last-child{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .sm\:last\:border-white-20:last-child{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .sm\:last\:border-white:last-child{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .sm\:last\:border-cheeto:last-child{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .sm\:last\:border-cheeto-very-light:last-child{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .sm\:last\:border-cheeto-light:last-child{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .sm\:last\:border-cheeto-dark:last-child{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .sm\:last\:border-cheeto-hocus:last-child{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .sm\:last\:border-cheeto-active:last-child{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .sm\:last\:border-cheeto-ml-plus:last-child{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .sm\:last\:border-cheeto-banner:last-child{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .sm\:last\:border-gracy-1:last-child{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .sm\:last\:border-gracy-10:last-child{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .sm\:last\:border-gracy-20:last-child{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .sm\:last\:border-gracy-30:last-child{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .sm\:last\:border-gracy-40:last-child{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .sm\:last\:border-gracy-50:last-child{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .sm\:last\:border-gracy-60:last-child{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .sm\:last\:border-gracy-70:last-child{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .sm\:last\:border-gracy-80:last-child{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .sm\:last\:border-gracy-90:last-child{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .sm\:last\:border-gracy-100:last-child{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .sm\:last\:border-gracy:last-child{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .sm\:last\:border-gracy-overlay-90:last-child{
    border-color: rgba(50,49,50,0.5);
  }

  .sm\:last\:border-login:last-child{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .sm\:last\:border-olive-light:last-child{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .sm\:last\:border-olive-drab:last-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:last\:border-olive-dark:last-child{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .sm\:last\:border-daisy-light:last-child{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .sm\:last\:border-feedback-gumby:last-child{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .sm\:last\:border-feedback-daisy:last-child{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .sm\:last\:border-feedback-pokey:last-child{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .sm\:last\:border-feedback-aster:last-child{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .sm\:last\:border-feedback-aster-dark:last-child{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .sm\:last\:border-feedback-roxo:last-child{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .sm\:last\:border-feedback-error:last-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .sm\:last\:border-feedback-success:last-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .sm\:last\:border-functional-aoki:last-child{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .sm\:last\:border-functional-aoki-dark:last-child{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .sm\:last\:border-functional-aoki-hocus:last-child{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .sm\:last\:border-functional-aoki-active:last-child{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .sm\:last\:border-functional-aoki-light:last-child{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .sm\:last\:border-functional-kermit:last-child{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .sm\:last\:border-mixlabPlus-light:last-child{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .sm\:last\:border-primary-orange-light:last-child{
    border-color: ;
  }

  .sm\:last\:border-off-white:last-child{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .sm\:border-opacity-0{
    --border-opacity: 0;
  }

  .sm\:border-opacity-25{
    --border-opacity: 0.25;
  }

  .sm\:border-opacity-50{
    --border-opacity: .5;
  }

  .sm\:border-opacity-75{
    --border-opacity: 0.75;
  }

  .sm\:border-opacity-80{
    --border-opacity: .8;
  }

  .sm\:border-opacity-100{
    --border-opacity: 1;
  }

  .sm\:hover\:border-opacity-0:hover{
    --border-opacity: 0;
  }

  .sm\:hover\:border-opacity-25:hover{
    --border-opacity: 0.25;
  }

  .sm\:hover\:border-opacity-50:hover{
    --border-opacity: .5;
  }

  .sm\:hover\:border-opacity-75:hover{
    --border-opacity: 0.75;
  }

  .sm\:hover\:border-opacity-80:hover{
    --border-opacity: .8;
  }

  .sm\:hover\:border-opacity-100:hover{
    --border-opacity: 1;
  }

  .sm\:focus\:border-opacity-0:focus{
    --border-opacity: 0;
  }

  .sm\:focus\:border-opacity-25:focus{
    --border-opacity: 0.25;
  }

  .sm\:focus\:border-opacity-50:focus{
    --border-opacity: .5;
  }

  .sm\:focus\:border-opacity-75:focus{
    --border-opacity: 0.75;
  }

  .sm\:focus\:border-opacity-80:focus{
    --border-opacity: .8;
  }

  .sm\:focus\:border-opacity-100:focus{
    --border-opacity: 1;
  }

  .sm\:active\:border-opacity-0:active{
    --border-opacity: 0;
  }

  .sm\:active\:border-opacity-25:active{
    --border-opacity: 0.25;
  }

  .sm\:active\:border-opacity-50:active{
    --border-opacity: .5;
  }

  .sm\:active\:border-opacity-75:active{
    --border-opacity: 0.75;
  }

  .sm\:active\:border-opacity-80:active{
    --border-opacity: .8;
  }

  .sm\:active\:border-opacity-100:active{
    --border-opacity: 1;
  }

  .sm\:first\:border-opacity-0:first-child{
    --border-opacity: 0;
  }

  .sm\:first\:border-opacity-25:first-child{
    --border-opacity: 0.25;
  }

  .sm\:first\:border-opacity-50:first-child{
    --border-opacity: .5;
  }

  .sm\:first\:border-opacity-75:first-child{
    --border-opacity: 0.75;
  }

  .sm\:first\:border-opacity-80:first-child{
    --border-opacity: .8;
  }

  .sm\:first\:border-opacity-100:first-child{
    --border-opacity: 1;
  }

  .sm\:last\:border-opacity-0:last-child{
    --border-opacity: 0;
  }

  .sm\:last\:border-opacity-25:last-child{
    --border-opacity: 0.25;
  }

  .sm\:last\:border-opacity-50:last-child{
    --border-opacity: .5;
  }

  .sm\:last\:border-opacity-75:last-child{
    --border-opacity: 0.75;
  }

  .sm\:last\:border-opacity-80:last-child{
    --border-opacity: .8;
  }

  .sm\:last\:border-opacity-100:last-child{
    --border-opacity: 1;
  }

  .sm\:rounded-none{
    border-radius: 0;
  }

  .sm\:rounded-sm{
    border-radius: 0.125rem;
  }

  .sm\:rounded{
    border-radius: 0.25rem;
  }

  .sm\:rounded-md{
    border-radius: 0.375rem;
  }

  .sm\:rounded-lg{
    border-radius: 0.5rem;
  }

  .sm\:rounded-full{
    border-radius: 9999px;
  }

  .sm\:rounded-xl{
    border-radius: 30px;
  }

  .sm\:rounded-t-none{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .sm\:rounded-r-none{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .sm\:rounded-b-none{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-l-none{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .sm\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .sm\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:rounded-t-md{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .sm\:rounded-r-md{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:rounded-b-md{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:rounded-l-md{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .sm\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .sm\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .sm\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:rounded-t-xl{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .sm\:rounded-r-xl{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .sm\:rounded-b-xl{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:rounded-l-xl{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:rounded-tl-none{
    border-top-left-radius: 0;
  }

  .sm\:rounded-tr-none{
    border-top-right-radius: 0;
  }

  .sm\:rounded-br-none{
    border-bottom-right-radius: 0;
  }

  .sm\:rounded-bl-none{
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .sm\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .sm\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .sm\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .sm\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:rounded-tl-md{
    border-top-left-radius: 0.375rem;
  }

  .sm\:rounded-tr-md{
    border-top-right-radius: 0.375rem;
  }

  .sm\:rounded-br-md{
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:rounded-bl-md{
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .sm\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .sm\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .sm\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .sm\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .sm\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .sm\:rounded-tl-xl{
    border-top-left-radius: 30px;
  }

  .sm\:rounded-tr-xl{
    border-top-right-radius: 30px;
  }

  .sm\:rounded-br-xl{
    border-bottom-right-radius: 30px;
  }

  .sm\:rounded-bl-xl{
    border-bottom-left-radius: 30px;
  }

  .sm\:hover\:rounded-none:hover{
    border-radius: 0;
  }

  .sm\:hover\:rounded-sm:hover{
    border-radius: 0.125rem;
  }

  .sm\:hover\:rounded:hover{
    border-radius: 0.25rem;
  }

  .sm\:hover\:rounded-md:hover{
    border-radius: 0.375rem;
  }

  .sm\:hover\:rounded-lg:hover{
    border-radius: 0.5rem;
  }

  .sm\:hover\:rounded-full:hover{
    border-radius: 9999px;
  }

  .sm\:hover\:rounded-xl:hover{
    border-radius: 30px;
  }

  .sm\:hover\:rounded-t-none:hover{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .sm\:hover\:rounded-r-none:hover{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .sm\:hover\:rounded-b-none:hover{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:hover\:rounded-l-none:hover{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:hover\:rounded-t-sm:hover{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .sm\:hover\:rounded-r-sm:hover{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:hover\:rounded-b-sm:hover{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:hover\:rounded-l-sm:hover{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:hover\:rounded-t:hover{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .sm\:hover\:rounded-r:hover{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:hover\:rounded-b:hover{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:hover\:rounded-l:hover{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:hover\:rounded-t-md:hover{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .sm\:hover\:rounded-r-md:hover{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:hover\:rounded-b-md:hover{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:hover\:rounded-l-md:hover{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:hover\:rounded-t-lg:hover{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .sm\:hover\:rounded-r-lg:hover{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:hover\:rounded-b-lg:hover{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:hover\:rounded-l-lg:hover{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:hover\:rounded-t-full:hover{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .sm\:hover\:rounded-r-full:hover{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .sm\:hover\:rounded-b-full:hover{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:hover\:rounded-l-full:hover{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:hover\:rounded-t-xl:hover{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .sm\:hover\:rounded-r-xl:hover{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .sm\:hover\:rounded-b-xl:hover{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:hover\:rounded-l-xl:hover{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:hover\:rounded-tl-none:hover{
    border-top-left-radius: 0;
  }

  .sm\:hover\:rounded-tr-none:hover{
    border-top-right-radius: 0;
  }

  .sm\:hover\:rounded-br-none:hover{
    border-bottom-right-radius: 0;
  }

  .sm\:hover\:rounded-bl-none:hover{
    border-bottom-left-radius: 0;
  }

  .sm\:hover\:rounded-tl-sm:hover{
    border-top-left-radius: 0.125rem;
  }

  .sm\:hover\:rounded-tr-sm:hover{
    border-top-right-radius: 0.125rem;
  }

  .sm\:hover\:rounded-br-sm:hover{
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:hover\:rounded-bl-sm:hover{
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:hover\:rounded-tl:hover{
    border-top-left-radius: 0.25rem;
  }

  .sm\:hover\:rounded-tr:hover{
    border-top-right-radius: 0.25rem;
  }

  .sm\:hover\:rounded-br:hover{
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:hover\:rounded-bl:hover{
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:hover\:rounded-tl-md:hover{
    border-top-left-radius: 0.375rem;
  }

  .sm\:hover\:rounded-tr-md:hover{
    border-top-right-radius: 0.375rem;
  }

  .sm\:hover\:rounded-br-md:hover{
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:hover\:rounded-bl-md:hover{
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:hover\:rounded-tl-lg:hover{
    border-top-left-radius: 0.5rem;
  }

  .sm\:hover\:rounded-tr-lg:hover{
    border-top-right-radius: 0.5rem;
  }

  .sm\:hover\:rounded-br-lg:hover{
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:hover\:rounded-bl-lg:hover{
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:hover\:rounded-tl-full:hover{
    border-top-left-radius: 9999px;
  }

  .sm\:hover\:rounded-tr-full:hover{
    border-top-right-radius: 9999px;
  }

  .sm\:hover\:rounded-br-full:hover{
    border-bottom-right-radius: 9999px;
  }

  .sm\:hover\:rounded-bl-full:hover{
    border-bottom-left-radius: 9999px;
  }

  .sm\:hover\:rounded-tl-xl:hover{
    border-top-left-radius: 30px;
  }

  .sm\:hover\:rounded-tr-xl:hover{
    border-top-right-radius: 30px;
  }

  .sm\:hover\:rounded-br-xl:hover{
    border-bottom-right-radius: 30px;
  }

  .sm\:hover\:rounded-bl-xl:hover{
    border-bottom-left-radius: 30px;
  }

  .sm\:focus\:rounded-none:focus{
    border-radius: 0;
  }

  .sm\:focus\:rounded-sm:focus{
    border-radius: 0.125rem;
  }

  .sm\:focus\:rounded:focus{
    border-radius: 0.25rem;
  }

  .sm\:focus\:rounded-md:focus{
    border-radius: 0.375rem;
  }

  .sm\:focus\:rounded-lg:focus{
    border-radius: 0.5rem;
  }

  .sm\:focus\:rounded-full:focus{
    border-radius: 9999px;
  }

  .sm\:focus\:rounded-xl:focus{
    border-radius: 30px;
  }

  .sm\:focus\:rounded-t-none:focus{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .sm\:focus\:rounded-r-none:focus{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .sm\:focus\:rounded-b-none:focus{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:focus\:rounded-l-none:focus{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:focus\:rounded-t-sm:focus{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .sm\:focus\:rounded-r-sm:focus{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:focus\:rounded-b-sm:focus{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:focus\:rounded-l-sm:focus{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:focus\:rounded-t:focus{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .sm\:focus\:rounded-r:focus{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:focus\:rounded-b:focus{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:focus\:rounded-l:focus{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:focus\:rounded-t-md:focus{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .sm\:focus\:rounded-r-md:focus{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:focus\:rounded-b-md:focus{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:focus\:rounded-l-md:focus{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:focus\:rounded-t-lg:focus{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .sm\:focus\:rounded-r-lg:focus{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:focus\:rounded-b-lg:focus{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:focus\:rounded-l-lg:focus{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:focus\:rounded-t-full:focus{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .sm\:focus\:rounded-r-full:focus{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .sm\:focus\:rounded-b-full:focus{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:focus\:rounded-l-full:focus{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:focus\:rounded-t-xl:focus{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .sm\:focus\:rounded-r-xl:focus{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .sm\:focus\:rounded-b-xl:focus{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:focus\:rounded-l-xl:focus{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:focus\:rounded-tl-none:focus{
    border-top-left-radius: 0;
  }

  .sm\:focus\:rounded-tr-none:focus{
    border-top-right-radius: 0;
  }

  .sm\:focus\:rounded-br-none:focus{
    border-bottom-right-radius: 0;
  }

  .sm\:focus\:rounded-bl-none:focus{
    border-bottom-left-radius: 0;
  }

  .sm\:focus\:rounded-tl-sm:focus{
    border-top-left-radius: 0.125rem;
  }

  .sm\:focus\:rounded-tr-sm:focus{
    border-top-right-radius: 0.125rem;
  }

  .sm\:focus\:rounded-br-sm:focus{
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:focus\:rounded-bl-sm:focus{
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:focus\:rounded-tl:focus{
    border-top-left-radius: 0.25rem;
  }

  .sm\:focus\:rounded-tr:focus{
    border-top-right-radius: 0.25rem;
  }

  .sm\:focus\:rounded-br:focus{
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:focus\:rounded-bl:focus{
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:focus\:rounded-tl-md:focus{
    border-top-left-radius: 0.375rem;
  }

  .sm\:focus\:rounded-tr-md:focus{
    border-top-right-radius: 0.375rem;
  }

  .sm\:focus\:rounded-br-md:focus{
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:focus\:rounded-bl-md:focus{
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:focus\:rounded-tl-lg:focus{
    border-top-left-radius: 0.5rem;
  }

  .sm\:focus\:rounded-tr-lg:focus{
    border-top-right-radius: 0.5rem;
  }

  .sm\:focus\:rounded-br-lg:focus{
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:focus\:rounded-bl-lg:focus{
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:focus\:rounded-tl-full:focus{
    border-top-left-radius: 9999px;
  }

  .sm\:focus\:rounded-tr-full:focus{
    border-top-right-radius: 9999px;
  }

  .sm\:focus\:rounded-br-full:focus{
    border-bottom-right-radius: 9999px;
  }

  .sm\:focus\:rounded-bl-full:focus{
    border-bottom-left-radius: 9999px;
  }

  .sm\:focus\:rounded-tl-xl:focus{
    border-top-left-radius: 30px;
  }

  .sm\:focus\:rounded-tr-xl:focus{
    border-top-right-radius: 30px;
  }

  .sm\:focus\:rounded-br-xl:focus{
    border-bottom-right-radius: 30px;
  }

  .sm\:focus\:rounded-bl-xl:focus{
    border-bottom-left-radius: 30px;
  }

  .sm\:active\:rounded-none:active{
    border-radius: 0;
  }

  .sm\:active\:rounded-sm:active{
    border-radius: 0.125rem;
  }

  .sm\:active\:rounded:active{
    border-radius: 0.25rem;
  }

  .sm\:active\:rounded-md:active{
    border-radius: 0.375rem;
  }

  .sm\:active\:rounded-lg:active{
    border-radius: 0.5rem;
  }

  .sm\:active\:rounded-full:active{
    border-radius: 9999px;
  }

  .sm\:active\:rounded-xl:active{
    border-radius: 30px;
  }

  .sm\:active\:rounded-t-none:active{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .sm\:active\:rounded-r-none:active{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .sm\:active\:rounded-b-none:active{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:active\:rounded-l-none:active{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:active\:rounded-t-sm:active{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .sm\:active\:rounded-r-sm:active{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:active\:rounded-b-sm:active{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:active\:rounded-l-sm:active{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:active\:rounded-t:active{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .sm\:active\:rounded-r:active{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:active\:rounded-b:active{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:active\:rounded-l:active{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:active\:rounded-t-md:active{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .sm\:active\:rounded-r-md:active{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:active\:rounded-b-md:active{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:active\:rounded-l-md:active{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:active\:rounded-t-lg:active{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .sm\:active\:rounded-r-lg:active{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:active\:rounded-b-lg:active{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:active\:rounded-l-lg:active{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:active\:rounded-t-full:active{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .sm\:active\:rounded-r-full:active{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .sm\:active\:rounded-b-full:active{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:active\:rounded-l-full:active{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:active\:rounded-t-xl:active{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .sm\:active\:rounded-r-xl:active{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .sm\:active\:rounded-b-xl:active{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:active\:rounded-l-xl:active{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:active\:rounded-tl-none:active{
    border-top-left-radius: 0;
  }

  .sm\:active\:rounded-tr-none:active{
    border-top-right-radius: 0;
  }

  .sm\:active\:rounded-br-none:active{
    border-bottom-right-radius: 0;
  }

  .sm\:active\:rounded-bl-none:active{
    border-bottom-left-radius: 0;
  }

  .sm\:active\:rounded-tl-sm:active{
    border-top-left-radius: 0.125rem;
  }

  .sm\:active\:rounded-tr-sm:active{
    border-top-right-radius: 0.125rem;
  }

  .sm\:active\:rounded-br-sm:active{
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:active\:rounded-bl-sm:active{
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:active\:rounded-tl:active{
    border-top-left-radius: 0.25rem;
  }

  .sm\:active\:rounded-tr:active{
    border-top-right-radius: 0.25rem;
  }

  .sm\:active\:rounded-br:active{
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:active\:rounded-bl:active{
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:active\:rounded-tl-md:active{
    border-top-left-radius: 0.375rem;
  }

  .sm\:active\:rounded-tr-md:active{
    border-top-right-radius: 0.375rem;
  }

  .sm\:active\:rounded-br-md:active{
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:active\:rounded-bl-md:active{
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:active\:rounded-tl-lg:active{
    border-top-left-radius: 0.5rem;
  }

  .sm\:active\:rounded-tr-lg:active{
    border-top-right-radius: 0.5rem;
  }

  .sm\:active\:rounded-br-lg:active{
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:active\:rounded-bl-lg:active{
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:active\:rounded-tl-full:active{
    border-top-left-radius: 9999px;
  }

  .sm\:active\:rounded-tr-full:active{
    border-top-right-radius: 9999px;
  }

  .sm\:active\:rounded-br-full:active{
    border-bottom-right-radius: 9999px;
  }

  .sm\:active\:rounded-bl-full:active{
    border-bottom-left-radius: 9999px;
  }

  .sm\:active\:rounded-tl-xl:active{
    border-top-left-radius: 30px;
  }

  .sm\:active\:rounded-tr-xl:active{
    border-top-right-radius: 30px;
  }

  .sm\:active\:rounded-br-xl:active{
    border-bottom-right-radius: 30px;
  }

  .sm\:active\:rounded-bl-xl:active{
    border-bottom-left-radius: 30px;
  }

  .sm\:first\:rounded-none:first-child{
    border-radius: 0;
  }

  .sm\:first\:rounded-sm:first-child{
    border-radius: 0.125rem;
  }

  .sm\:first\:rounded:first-child{
    border-radius: 0.25rem;
  }

  .sm\:first\:rounded-md:first-child{
    border-radius: 0.375rem;
  }

  .sm\:first\:rounded-lg:first-child{
    border-radius: 0.5rem;
  }

  .sm\:first\:rounded-full:first-child{
    border-radius: 9999px;
  }

  .sm\:first\:rounded-xl:first-child{
    border-radius: 30px;
  }

  .sm\:first\:rounded-t-none:first-child{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .sm\:first\:rounded-r-none:first-child{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .sm\:first\:rounded-b-none:first-child{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:first\:rounded-l-none:first-child{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:first\:rounded-t-sm:first-child{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .sm\:first\:rounded-r-sm:first-child{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:first\:rounded-b-sm:first-child{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:first\:rounded-l-sm:first-child{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:first\:rounded-t:first-child{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .sm\:first\:rounded-r:first-child{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:first\:rounded-b:first-child{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:first\:rounded-l:first-child{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:first\:rounded-t-md:first-child{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .sm\:first\:rounded-r-md:first-child{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:first\:rounded-b-md:first-child{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:first\:rounded-l-md:first-child{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:first\:rounded-t-lg:first-child{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .sm\:first\:rounded-r-lg:first-child{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:first\:rounded-b-lg:first-child{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:first\:rounded-l-lg:first-child{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:first\:rounded-t-full:first-child{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .sm\:first\:rounded-r-full:first-child{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .sm\:first\:rounded-b-full:first-child{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:first\:rounded-l-full:first-child{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:first\:rounded-t-xl:first-child{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .sm\:first\:rounded-r-xl:first-child{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .sm\:first\:rounded-b-xl:first-child{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:first\:rounded-l-xl:first-child{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:first\:rounded-tl-none:first-child{
    border-top-left-radius: 0;
  }

  .sm\:first\:rounded-tr-none:first-child{
    border-top-right-radius: 0;
  }

  .sm\:first\:rounded-br-none:first-child{
    border-bottom-right-radius: 0;
  }

  .sm\:first\:rounded-bl-none:first-child{
    border-bottom-left-radius: 0;
  }

  .sm\:first\:rounded-tl-sm:first-child{
    border-top-left-radius: 0.125rem;
  }

  .sm\:first\:rounded-tr-sm:first-child{
    border-top-right-radius: 0.125rem;
  }

  .sm\:first\:rounded-br-sm:first-child{
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:first\:rounded-bl-sm:first-child{
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:first\:rounded-tl:first-child{
    border-top-left-radius: 0.25rem;
  }

  .sm\:first\:rounded-tr:first-child{
    border-top-right-radius: 0.25rem;
  }

  .sm\:first\:rounded-br:first-child{
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:first\:rounded-bl:first-child{
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:first\:rounded-tl-md:first-child{
    border-top-left-radius: 0.375rem;
  }

  .sm\:first\:rounded-tr-md:first-child{
    border-top-right-radius: 0.375rem;
  }

  .sm\:first\:rounded-br-md:first-child{
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:first\:rounded-bl-md:first-child{
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:first\:rounded-tl-lg:first-child{
    border-top-left-radius: 0.5rem;
  }

  .sm\:first\:rounded-tr-lg:first-child{
    border-top-right-radius: 0.5rem;
  }

  .sm\:first\:rounded-br-lg:first-child{
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:first\:rounded-bl-lg:first-child{
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:first\:rounded-tl-full:first-child{
    border-top-left-radius: 9999px;
  }

  .sm\:first\:rounded-tr-full:first-child{
    border-top-right-radius: 9999px;
  }

  .sm\:first\:rounded-br-full:first-child{
    border-bottom-right-radius: 9999px;
  }

  .sm\:first\:rounded-bl-full:first-child{
    border-bottom-left-radius: 9999px;
  }

  .sm\:first\:rounded-tl-xl:first-child{
    border-top-left-radius: 30px;
  }

  .sm\:first\:rounded-tr-xl:first-child{
    border-top-right-radius: 30px;
  }

  .sm\:first\:rounded-br-xl:first-child{
    border-bottom-right-radius: 30px;
  }

  .sm\:first\:rounded-bl-xl:first-child{
    border-bottom-left-radius: 30px;
  }

  .sm\:last\:rounded-none:last-child{
    border-radius: 0;
  }

  .sm\:last\:rounded-sm:last-child{
    border-radius: 0.125rem;
  }

  .sm\:last\:rounded:last-child{
    border-radius: 0.25rem;
  }

  .sm\:last\:rounded-md:last-child{
    border-radius: 0.375rem;
  }

  .sm\:last\:rounded-lg:last-child{
    border-radius: 0.5rem;
  }

  .sm\:last\:rounded-full:last-child{
    border-radius: 9999px;
  }

  .sm\:last\:rounded-xl:last-child{
    border-radius: 30px;
  }

  .sm\:last\:rounded-t-none:last-child{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .sm\:last\:rounded-r-none:last-child{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .sm\:last\:rounded-b-none:last-child{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:last\:rounded-l-none:last-child{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:last\:rounded-t-sm:last-child{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .sm\:last\:rounded-r-sm:last-child{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:last\:rounded-b-sm:last-child{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:last\:rounded-l-sm:last-child{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:last\:rounded-t:last-child{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .sm\:last\:rounded-r:last-child{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:last\:rounded-b:last-child{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:last\:rounded-l:last-child{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:last\:rounded-t-md:last-child{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .sm\:last\:rounded-r-md:last-child{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:last\:rounded-b-md:last-child{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:last\:rounded-l-md:last-child{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:last\:rounded-t-lg:last-child{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .sm\:last\:rounded-r-lg:last-child{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:last\:rounded-b-lg:last-child{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:last\:rounded-l-lg:last-child{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:last\:rounded-t-full:last-child{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .sm\:last\:rounded-r-full:last-child{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .sm\:last\:rounded-b-full:last-child{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:last\:rounded-l-full:last-child{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:last\:rounded-t-xl:last-child{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .sm\:last\:rounded-r-xl:last-child{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .sm\:last\:rounded-b-xl:last-child{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:last\:rounded-l-xl:last-child{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .sm\:last\:rounded-tl-none:last-child{
    border-top-left-radius: 0;
  }

  .sm\:last\:rounded-tr-none:last-child{
    border-top-right-radius: 0;
  }

  .sm\:last\:rounded-br-none:last-child{
    border-bottom-right-radius: 0;
  }

  .sm\:last\:rounded-bl-none:last-child{
    border-bottom-left-radius: 0;
  }

  .sm\:last\:rounded-tl-sm:last-child{
    border-top-left-radius: 0.125rem;
  }

  .sm\:last\:rounded-tr-sm:last-child{
    border-top-right-radius: 0.125rem;
  }

  .sm\:last\:rounded-br-sm:last-child{
    border-bottom-right-radius: 0.125rem;
  }

  .sm\:last\:rounded-bl-sm:last-child{
    border-bottom-left-radius: 0.125rem;
  }

  .sm\:last\:rounded-tl:last-child{
    border-top-left-radius: 0.25rem;
  }

  .sm\:last\:rounded-tr:last-child{
    border-top-right-radius: 0.25rem;
  }

  .sm\:last\:rounded-br:last-child{
    border-bottom-right-radius: 0.25rem;
  }

  .sm\:last\:rounded-bl:last-child{
    border-bottom-left-radius: 0.25rem;
  }

  .sm\:last\:rounded-tl-md:last-child{
    border-top-left-radius: 0.375rem;
  }

  .sm\:last\:rounded-tr-md:last-child{
    border-top-right-radius: 0.375rem;
  }

  .sm\:last\:rounded-br-md:last-child{
    border-bottom-right-radius: 0.375rem;
  }

  .sm\:last\:rounded-bl-md:last-child{
    border-bottom-left-radius: 0.375rem;
  }

  .sm\:last\:rounded-tl-lg:last-child{
    border-top-left-radius: 0.5rem;
  }

  .sm\:last\:rounded-tr-lg:last-child{
    border-top-right-radius: 0.5rem;
  }

  .sm\:last\:rounded-br-lg:last-child{
    border-bottom-right-radius: 0.5rem;
  }

  .sm\:last\:rounded-bl-lg:last-child{
    border-bottom-left-radius: 0.5rem;
  }

  .sm\:last\:rounded-tl-full:last-child{
    border-top-left-radius: 9999px;
  }

  .sm\:last\:rounded-tr-full:last-child{
    border-top-right-radius: 9999px;
  }

  .sm\:last\:rounded-br-full:last-child{
    border-bottom-right-radius: 9999px;
  }

  .sm\:last\:rounded-bl-full:last-child{
    border-bottom-left-radius: 9999px;
  }

  .sm\:last\:rounded-tl-xl:last-child{
    border-top-left-radius: 30px;
  }

  .sm\:last\:rounded-tr-xl:last-child{
    border-top-right-radius: 30px;
  }

  .sm\:last\:rounded-br-xl:last-child{
    border-bottom-right-radius: 30px;
  }

  .sm\:last\:rounded-bl-xl:last-child{
    border-bottom-left-radius: 30px;
  }

  .sm\:border-solid{
    border-style: solid;
  }

  .sm\:border-dashed{
    border-style: dashed;
  }

  .sm\:border-dotted{
    border-style: dotted;
  }

  .sm\:border-double{
    border-style: double;
  }

  .sm\:border-none{
    border-style: none;
  }

  .sm\:hover\:border-solid:hover{
    border-style: solid;
  }

  .sm\:hover\:border-dashed:hover{
    border-style: dashed;
  }

  .sm\:hover\:border-dotted:hover{
    border-style: dotted;
  }

  .sm\:hover\:border-double:hover{
    border-style: double;
  }

  .sm\:hover\:border-none:hover{
    border-style: none;
  }

  .sm\:focus\:border-solid:focus{
    border-style: solid;
  }

  .sm\:focus\:border-dashed:focus{
    border-style: dashed;
  }

  .sm\:focus\:border-dotted:focus{
    border-style: dotted;
  }

  .sm\:focus\:border-double:focus{
    border-style: double;
  }

  .sm\:focus\:border-none:focus{
    border-style: none;
  }

  .sm\:active\:border-solid:active{
    border-style: solid;
  }

  .sm\:active\:border-dashed:active{
    border-style: dashed;
  }

  .sm\:active\:border-dotted:active{
    border-style: dotted;
  }

  .sm\:active\:border-double:active{
    border-style: double;
  }

  .sm\:active\:border-none:active{
    border-style: none;
  }

  .sm\:first\:border-solid:first-child{
    border-style: solid;
  }

  .sm\:first\:border-dashed:first-child{
    border-style: dashed;
  }

  .sm\:first\:border-dotted:first-child{
    border-style: dotted;
  }

  .sm\:first\:border-double:first-child{
    border-style: double;
  }

  .sm\:first\:border-none:first-child{
    border-style: none;
  }

  .sm\:last\:border-solid:last-child{
    border-style: solid;
  }

  .sm\:last\:border-dashed:last-child{
    border-style: dashed;
  }

  .sm\:last\:border-dotted:last-child{
    border-style: dotted;
  }

  .sm\:last\:border-double:last-child{
    border-style: double;
  }

  .sm\:last\:border-none:last-child{
    border-style: none;
  }

  .sm\:border-0{
    border-width: 0;
  }

  .sm\:border-2{
    border-width: 2px;
  }

  .sm\:border-4{
    border-width: 4px;
  }

  .sm\:border-8{
    border-width: 8px;
  }

  .sm\:border{
    border-width: 1px;
  }

  .sm\:border-t-0{
    border-top-width: 0;
  }

  .sm\:border-r-0{
    border-right-width: 0;
  }

  .sm\:border-b-0{
    border-bottom-width: 0;
  }

  .sm\:border-l-0{
    border-left-width: 0;
  }

  .sm\:border-t-2{
    border-top-width: 2px;
  }

  .sm\:border-r-2{
    border-right-width: 2px;
  }

  .sm\:border-b-2{
    border-bottom-width: 2px;
  }

  .sm\:border-l-2{
    border-left-width: 2px;
  }

  .sm\:border-t-4{
    border-top-width: 4px;
  }

  .sm\:border-r-4{
    border-right-width: 4px;
  }

  .sm\:border-b-4{
    border-bottom-width: 4px;
  }

  .sm\:border-l-4{
    border-left-width: 4px;
  }

  .sm\:border-t-8{
    border-top-width: 8px;
  }

  .sm\:border-r-8{
    border-right-width: 8px;
  }

  .sm\:border-b-8{
    border-bottom-width: 8px;
  }

  .sm\:border-l-8{
    border-left-width: 8px;
  }

  .sm\:border-t{
    border-top-width: 1px;
  }

  .sm\:border-r{
    border-right-width: 1px;
  }

  .sm\:border-b{
    border-bottom-width: 1px;
  }

  .sm\:border-l{
    border-left-width: 1px;
  }

  .sm\:hover\:border-0:hover{
    border-width: 0;
  }

  .sm\:hover\:border-2:hover{
    border-width: 2px;
  }

  .sm\:hover\:border-4:hover{
    border-width: 4px;
  }

  .sm\:hover\:border-8:hover{
    border-width: 8px;
  }

  .sm\:hover\:border:hover{
    border-width: 1px;
  }

  .sm\:hover\:border-t-0:hover{
    border-top-width: 0;
  }

  .sm\:hover\:border-r-0:hover{
    border-right-width: 0;
  }

  .sm\:hover\:border-b-0:hover{
    border-bottom-width: 0;
  }

  .sm\:hover\:border-l-0:hover{
    border-left-width: 0;
  }

  .sm\:hover\:border-t-2:hover{
    border-top-width: 2px;
  }

  .sm\:hover\:border-r-2:hover{
    border-right-width: 2px;
  }

  .sm\:hover\:border-b-2:hover{
    border-bottom-width: 2px;
  }

  .sm\:hover\:border-l-2:hover{
    border-left-width: 2px;
  }

  .sm\:hover\:border-t-4:hover{
    border-top-width: 4px;
  }

  .sm\:hover\:border-r-4:hover{
    border-right-width: 4px;
  }

  .sm\:hover\:border-b-4:hover{
    border-bottom-width: 4px;
  }

  .sm\:hover\:border-l-4:hover{
    border-left-width: 4px;
  }

  .sm\:hover\:border-t-8:hover{
    border-top-width: 8px;
  }

  .sm\:hover\:border-r-8:hover{
    border-right-width: 8px;
  }

  .sm\:hover\:border-b-8:hover{
    border-bottom-width: 8px;
  }

  .sm\:hover\:border-l-8:hover{
    border-left-width: 8px;
  }

  .sm\:hover\:border-t:hover{
    border-top-width: 1px;
  }

  .sm\:hover\:border-r:hover{
    border-right-width: 1px;
  }

  .sm\:hover\:border-b:hover{
    border-bottom-width: 1px;
  }

  .sm\:hover\:border-l:hover{
    border-left-width: 1px;
  }

  .sm\:focus\:border-0:focus{
    border-width: 0;
  }

  .sm\:focus\:border-2:focus{
    border-width: 2px;
  }

  .sm\:focus\:border-4:focus{
    border-width: 4px;
  }

  .sm\:focus\:border-8:focus{
    border-width: 8px;
  }

  .sm\:focus\:border:focus{
    border-width: 1px;
  }

  .sm\:focus\:border-t-0:focus{
    border-top-width: 0;
  }

  .sm\:focus\:border-r-0:focus{
    border-right-width: 0;
  }

  .sm\:focus\:border-b-0:focus{
    border-bottom-width: 0;
  }

  .sm\:focus\:border-l-0:focus{
    border-left-width: 0;
  }

  .sm\:focus\:border-t-2:focus{
    border-top-width: 2px;
  }

  .sm\:focus\:border-r-2:focus{
    border-right-width: 2px;
  }

  .sm\:focus\:border-b-2:focus{
    border-bottom-width: 2px;
  }

  .sm\:focus\:border-l-2:focus{
    border-left-width: 2px;
  }

  .sm\:focus\:border-t-4:focus{
    border-top-width: 4px;
  }

  .sm\:focus\:border-r-4:focus{
    border-right-width: 4px;
  }

  .sm\:focus\:border-b-4:focus{
    border-bottom-width: 4px;
  }

  .sm\:focus\:border-l-4:focus{
    border-left-width: 4px;
  }

  .sm\:focus\:border-t-8:focus{
    border-top-width: 8px;
  }

  .sm\:focus\:border-r-8:focus{
    border-right-width: 8px;
  }

  .sm\:focus\:border-b-8:focus{
    border-bottom-width: 8px;
  }

  .sm\:focus\:border-l-8:focus{
    border-left-width: 8px;
  }

  .sm\:focus\:border-t:focus{
    border-top-width: 1px;
  }

  .sm\:focus\:border-r:focus{
    border-right-width: 1px;
  }

  .sm\:focus\:border-b:focus{
    border-bottom-width: 1px;
  }

  .sm\:focus\:border-l:focus{
    border-left-width: 1px;
  }

  .sm\:active\:border-0:active{
    border-width: 0;
  }

  .sm\:active\:border-2:active{
    border-width: 2px;
  }

  .sm\:active\:border-4:active{
    border-width: 4px;
  }

  .sm\:active\:border-8:active{
    border-width: 8px;
  }

  .sm\:active\:border:active{
    border-width: 1px;
  }

  .sm\:active\:border-t-0:active{
    border-top-width: 0;
  }

  .sm\:active\:border-r-0:active{
    border-right-width: 0;
  }

  .sm\:active\:border-b-0:active{
    border-bottom-width: 0;
  }

  .sm\:active\:border-l-0:active{
    border-left-width: 0;
  }

  .sm\:active\:border-t-2:active{
    border-top-width: 2px;
  }

  .sm\:active\:border-r-2:active{
    border-right-width: 2px;
  }

  .sm\:active\:border-b-2:active{
    border-bottom-width: 2px;
  }

  .sm\:active\:border-l-2:active{
    border-left-width: 2px;
  }

  .sm\:active\:border-t-4:active{
    border-top-width: 4px;
  }

  .sm\:active\:border-r-4:active{
    border-right-width: 4px;
  }

  .sm\:active\:border-b-4:active{
    border-bottom-width: 4px;
  }

  .sm\:active\:border-l-4:active{
    border-left-width: 4px;
  }

  .sm\:active\:border-t-8:active{
    border-top-width: 8px;
  }

  .sm\:active\:border-r-8:active{
    border-right-width: 8px;
  }

  .sm\:active\:border-b-8:active{
    border-bottom-width: 8px;
  }

  .sm\:active\:border-l-8:active{
    border-left-width: 8px;
  }

  .sm\:active\:border-t:active{
    border-top-width: 1px;
  }

  .sm\:active\:border-r:active{
    border-right-width: 1px;
  }

  .sm\:active\:border-b:active{
    border-bottom-width: 1px;
  }

  .sm\:active\:border-l:active{
    border-left-width: 1px;
  }

  .sm\:first\:border-0:first-child{
    border-width: 0;
  }

  .sm\:first\:border-2:first-child{
    border-width: 2px;
  }

  .sm\:first\:border-4:first-child{
    border-width: 4px;
  }

  .sm\:first\:border-8:first-child{
    border-width: 8px;
  }

  .sm\:first\:border:first-child{
    border-width: 1px;
  }

  .sm\:first\:border-t-0:first-child{
    border-top-width: 0;
  }

  .sm\:first\:border-r-0:first-child{
    border-right-width: 0;
  }

  .sm\:first\:border-b-0:first-child{
    border-bottom-width: 0;
  }

  .sm\:first\:border-l-0:first-child{
    border-left-width: 0;
  }

  .sm\:first\:border-t-2:first-child{
    border-top-width: 2px;
  }

  .sm\:first\:border-r-2:first-child{
    border-right-width: 2px;
  }

  .sm\:first\:border-b-2:first-child{
    border-bottom-width: 2px;
  }

  .sm\:first\:border-l-2:first-child{
    border-left-width: 2px;
  }

  .sm\:first\:border-t-4:first-child{
    border-top-width: 4px;
  }

  .sm\:first\:border-r-4:first-child{
    border-right-width: 4px;
  }

  .sm\:first\:border-b-4:first-child{
    border-bottom-width: 4px;
  }

  .sm\:first\:border-l-4:first-child{
    border-left-width: 4px;
  }

  .sm\:first\:border-t-8:first-child{
    border-top-width: 8px;
  }

  .sm\:first\:border-r-8:first-child{
    border-right-width: 8px;
  }

  .sm\:first\:border-b-8:first-child{
    border-bottom-width: 8px;
  }

  .sm\:first\:border-l-8:first-child{
    border-left-width: 8px;
  }

  .sm\:first\:border-t:first-child{
    border-top-width: 1px;
  }

  .sm\:first\:border-r:first-child{
    border-right-width: 1px;
  }

  .sm\:first\:border-b:first-child{
    border-bottom-width: 1px;
  }

  .sm\:first\:border-l:first-child{
    border-left-width: 1px;
  }

  .sm\:last\:border-0:last-child{
    border-width: 0;
  }

  .sm\:last\:border-2:last-child{
    border-width: 2px;
  }

  .sm\:last\:border-4:last-child{
    border-width: 4px;
  }

  .sm\:last\:border-8:last-child{
    border-width: 8px;
  }

  .sm\:last\:border:last-child{
    border-width: 1px;
  }

  .sm\:last\:border-t-0:last-child{
    border-top-width: 0;
  }

  .sm\:last\:border-r-0:last-child{
    border-right-width: 0;
  }

  .sm\:last\:border-b-0:last-child{
    border-bottom-width: 0;
  }

  .sm\:last\:border-l-0:last-child{
    border-left-width: 0;
  }

  .sm\:last\:border-t-2:last-child{
    border-top-width: 2px;
  }

  .sm\:last\:border-r-2:last-child{
    border-right-width: 2px;
  }

  .sm\:last\:border-b-2:last-child{
    border-bottom-width: 2px;
  }

  .sm\:last\:border-l-2:last-child{
    border-left-width: 2px;
  }

  .sm\:last\:border-t-4:last-child{
    border-top-width: 4px;
  }

  .sm\:last\:border-r-4:last-child{
    border-right-width: 4px;
  }

  .sm\:last\:border-b-4:last-child{
    border-bottom-width: 4px;
  }

  .sm\:last\:border-l-4:last-child{
    border-left-width: 4px;
  }

  .sm\:last\:border-t-8:last-child{
    border-top-width: 8px;
  }

  .sm\:last\:border-r-8:last-child{
    border-right-width: 8px;
  }

  .sm\:last\:border-b-8:last-child{
    border-bottom-width: 8px;
  }

  .sm\:last\:border-l-8:last-child{
    border-left-width: 8px;
  }

  .sm\:last\:border-t:last-child{
    border-top-width: 1px;
  }

  .sm\:last\:border-r:last-child{
    border-right-width: 1px;
  }

  .sm\:last\:border-b:last-child{
    border-bottom-width: 1px;
  }

  .sm\:last\:border-l:last-child{
    border-left-width: 1px;
  }

  .sm\:box-border{
    box-sizing: border-box;
  }

  .sm\:box-content{
    box-sizing: content-box;
  }

  .sm\:hover\:box-border:hover{
    box-sizing: border-box;
  }

  .sm\:hover\:box-content:hover{
    box-sizing: content-box;
  }

  .sm\:focus\:box-border:focus{
    box-sizing: border-box;
  }

  .sm\:focus\:box-content:focus{
    box-sizing: content-box;
  }

  .sm\:active\:box-border:active{
    box-sizing: border-box;
  }

  .sm\:active\:box-content:active{
    box-sizing: content-box;
  }

  .sm\:first\:box-border:first-child{
    box-sizing: border-box;
  }

  .sm\:first\:box-content:first-child{
    box-sizing: content-box;
  }

  .sm\:last\:box-border:last-child{
    box-sizing: border-box;
  }

  .sm\:last\:box-content:last-child{
    box-sizing: content-box;
  }

  .sm\:cursor-auto{
    cursor: auto;
  }

  .sm\:cursor-default{
    cursor: default;
  }

  .sm\:cursor-pointer{
    cursor: pointer;
  }

  .sm\:cursor-wait{
    cursor: wait;
  }

  .sm\:cursor-text{
    cursor: text;
  }

  .sm\:cursor-move{
    cursor: move;
  }

  .sm\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .sm\:hover\:cursor-auto:hover{
    cursor: auto;
  }

  .sm\:hover\:cursor-default:hover{
    cursor: default;
  }

  .sm\:hover\:cursor-pointer:hover{
    cursor: pointer;
  }

  .sm\:hover\:cursor-wait:hover{
    cursor: wait;
  }

  .sm\:hover\:cursor-text:hover{
    cursor: text;
  }

  .sm\:hover\:cursor-move:hover{
    cursor: move;
  }

  .sm\:hover\:cursor-not-allowed:hover{
    cursor: not-allowed;
  }

  .sm\:focus\:cursor-auto:focus{
    cursor: auto;
  }

  .sm\:focus\:cursor-default:focus{
    cursor: default;
  }

  .sm\:focus\:cursor-pointer:focus{
    cursor: pointer;
  }

  .sm\:focus\:cursor-wait:focus{
    cursor: wait;
  }

  .sm\:focus\:cursor-text:focus{
    cursor: text;
  }

  .sm\:focus\:cursor-move:focus{
    cursor: move;
  }

  .sm\:focus\:cursor-not-allowed:focus{
    cursor: not-allowed;
  }

  .sm\:active\:cursor-auto:active{
    cursor: auto;
  }

  .sm\:active\:cursor-default:active{
    cursor: default;
  }

  .sm\:active\:cursor-pointer:active{
    cursor: pointer;
  }

  .sm\:active\:cursor-wait:active{
    cursor: wait;
  }

  .sm\:active\:cursor-text:active{
    cursor: text;
  }

  .sm\:active\:cursor-move:active{
    cursor: move;
  }

  .sm\:active\:cursor-not-allowed:active{
    cursor: not-allowed;
  }

  .sm\:first\:cursor-auto:first-child{
    cursor: auto;
  }

  .sm\:first\:cursor-default:first-child{
    cursor: default;
  }

  .sm\:first\:cursor-pointer:first-child{
    cursor: pointer;
  }

  .sm\:first\:cursor-wait:first-child{
    cursor: wait;
  }

  .sm\:first\:cursor-text:first-child{
    cursor: text;
  }

  .sm\:first\:cursor-move:first-child{
    cursor: move;
  }

  .sm\:first\:cursor-not-allowed:first-child{
    cursor: not-allowed;
  }

  .sm\:last\:cursor-auto:last-child{
    cursor: auto;
  }

  .sm\:last\:cursor-default:last-child{
    cursor: default;
  }

  .sm\:last\:cursor-pointer:last-child{
    cursor: pointer;
  }

  .sm\:last\:cursor-wait:last-child{
    cursor: wait;
  }

  .sm\:last\:cursor-text:last-child{
    cursor: text;
  }

  .sm\:last\:cursor-move:last-child{
    cursor: move;
  }

  .sm\:last\:cursor-not-allowed:last-child{
    cursor: not-allowed;
  }

  .sm\:block{
    display: block;
  }

  .sm\:inline-block{
    display: inline-block;
  }

  .sm\:inline{
    display: inline;
  }

  .sm\:flex{
    display: flex;
  }

  .sm\:inline-flex{
    display: inline-flex;
  }

  .sm\:table{
    display: table;
  }

  .sm\:table-caption{
    display: table-caption;
  }

  .sm\:table-cell{
    display: table-cell;
  }

  .sm\:table-column{
    display: table-column;
  }

  .sm\:table-column-group{
    display: table-column-group;
  }

  .sm\:table-footer-group{
    display: table-footer-group;
  }

  .sm\:table-header-group{
    display: table-header-group;
  }

  .sm\:table-row-group{
    display: table-row-group;
  }

  .sm\:table-row{
    display: table-row;
  }

  .sm\:flow-root{
    display: flow-root;
  }

  .sm\:grid{
    display: grid;
  }

  .sm\:inline-grid{
    display: inline-grid;
  }

  .sm\:contents{
    display: contents;
  }

  .sm\:hidden{
    display: none;
  }

  .sm\:hover\:block:hover{
    display: block;
  }

  .sm\:hover\:inline-block:hover{
    display: inline-block;
  }

  .sm\:hover\:inline:hover{
    display: inline;
  }

  .sm\:hover\:flex:hover{
    display: flex;
  }

  .sm\:hover\:inline-flex:hover{
    display: inline-flex;
  }

  .sm\:hover\:table:hover{
    display: table;
  }

  .sm\:hover\:table-caption:hover{
    display: table-caption;
  }

  .sm\:hover\:table-cell:hover{
    display: table-cell;
  }

  .sm\:hover\:table-column:hover{
    display: table-column;
  }

  .sm\:hover\:table-column-group:hover{
    display: table-column-group;
  }

  .sm\:hover\:table-footer-group:hover{
    display: table-footer-group;
  }

  .sm\:hover\:table-header-group:hover{
    display: table-header-group;
  }

  .sm\:hover\:table-row-group:hover{
    display: table-row-group;
  }

  .sm\:hover\:table-row:hover{
    display: table-row;
  }

  .sm\:hover\:flow-root:hover{
    display: flow-root;
  }

  .sm\:hover\:grid:hover{
    display: grid;
  }

  .sm\:hover\:inline-grid:hover{
    display: inline-grid;
  }

  .sm\:hover\:contents:hover{
    display: contents;
  }

  .sm\:hover\:hidden:hover{
    display: none;
  }

  .sm\:focus\:block:focus{
    display: block;
  }

  .sm\:focus\:inline-block:focus{
    display: inline-block;
  }

  .sm\:focus\:inline:focus{
    display: inline;
  }

  .sm\:focus\:flex:focus{
    display: flex;
  }

  .sm\:focus\:inline-flex:focus{
    display: inline-flex;
  }

  .sm\:focus\:table:focus{
    display: table;
  }

  .sm\:focus\:table-caption:focus{
    display: table-caption;
  }

  .sm\:focus\:table-cell:focus{
    display: table-cell;
  }

  .sm\:focus\:table-column:focus{
    display: table-column;
  }

  .sm\:focus\:table-column-group:focus{
    display: table-column-group;
  }

  .sm\:focus\:table-footer-group:focus{
    display: table-footer-group;
  }

  .sm\:focus\:table-header-group:focus{
    display: table-header-group;
  }

  .sm\:focus\:table-row-group:focus{
    display: table-row-group;
  }

  .sm\:focus\:table-row:focus{
    display: table-row;
  }

  .sm\:focus\:flow-root:focus{
    display: flow-root;
  }

  .sm\:focus\:grid:focus{
    display: grid;
  }

  .sm\:focus\:inline-grid:focus{
    display: inline-grid;
  }

  .sm\:focus\:contents:focus{
    display: contents;
  }

  .sm\:focus\:hidden:focus{
    display: none;
  }

  .sm\:active\:block:active{
    display: block;
  }

  .sm\:active\:inline-block:active{
    display: inline-block;
  }

  .sm\:active\:inline:active{
    display: inline;
  }

  .sm\:active\:flex:active{
    display: flex;
  }

  .sm\:active\:inline-flex:active{
    display: inline-flex;
  }

  .sm\:active\:table:active{
    display: table;
  }

  .sm\:active\:table-caption:active{
    display: table-caption;
  }

  .sm\:active\:table-cell:active{
    display: table-cell;
  }

  .sm\:active\:table-column:active{
    display: table-column;
  }

  .sm\:active\:table-column-group:active{
    display: table-column-group;
  }

  .sm\:active\:table-footer-group:active{
    display: table-footer-group;
  }

  .sm\:active\:table-header-group:active{
    display: table-header-group;
  }

  .sm\:active\:table-row-group:active{
    display: table-row-group;
  }

  .sm\:active\:table-row:active{
    display: table-row;
  }

  .sm\:active\:flow-root:active{
    display: flow-root;
  }

  .sm\:active\:grid:active{
    display: grid;
  }

  .sm\:active\:inline-grid:active{
    display: inline-grid;
  }

  .sm\:active\:contents:active{
    display: contents;
  }

  .sm\:active\:hidden:active{
    display: none;
  }

  .sm\:first\:block:first-child{
    display: block;
  }

  .sm\:first\:inline-block:first-child{
    display: inline-block;
  }

  .sm\:first\:inline:first-child{
    display: inline;
  }

  .sm\:first\:flex:first-child{
    display: flex;
  }

  .sm\:first\:inline-flex:first-child{
    display: inline-flex;
  }

  .sm\:first\:table:first-child{
    display: table;
  }

  .sm\:first\:table-caption:first-child{
    display: table-caption;
  }

  .sm\:first\:table-cell:first-child{
    display: table-cell;
  }

  .sm\:first\:table-column:first-child{
    display: table-column;
  }

  .sm\:first\:table-column-group:first-child{
    display: table-column-group;
  }

  .sm\:first\:table-footer-group:first-child{
    display: table-footer-group;
  }

  .sm\:first\:table-header-group:first-child{
    display: table-header-group;
  }

  .sm\:first\:table-row-group:first-child{
    display: table-row-group;
  }

  .sm\:first\:table-row:first-child{
    display: table-row;
  }

  .sm\:first\:flow-root:first-child{
    display: flow-root;
  }

  .sm\:first\:grid:first-child{
    display: grid;
  }

  .sm\:first\:inline-grid:first-child{
    display: inline-grid;
  }

  .sm\:first\:contents:first-child{
    display: contents;
  }

  .sm\:first\:hidden:first-child{
    display: none;
  }

  .sm\:last\:block:last-child{
    display: block;
  }

  .sm\:last\:inline-block:last-child{
    display: inline-block;
  }

  .sm\:last\:inline:last-child{
    display: inline;
  }

  .sm\:last\:flex:last-child{
    display: flex;
  }

  .sm\:last\:inline-flex:last-child{
    display: inline-flex;
  }

  .sm\:last\:table:last-child{
    display: table;
  }

  .sm\:last\:table-caption:last-child{
    display: table-caption;
  }

  .sm\:last\:table-cell:last-child{
    display: table-cell;
  }

  .sm\:last\:table-column:last-child{
    display: table-column;
  }

  .sm\:last\:table-column-group:last-child{
    display: table-column-group;
  }

  .sm\:last\:table-footer-group:last-child{
    display: table-footer-group;
  }

  .sm\:last\:table-header-group:last-child{
    display: table-header-group;
  }

  .sm\:last\:table-row-group:last-child{
    display: table-row-group;
  }

  .sm\:last\:table-row:last-child{
    display: table-row;
  }

  .sm\:last\:flow-root:last-child{
    display: flow-root;
  }

  .sm\:last\:grid:last-child{
    display: grid;
  }

  .sm\:last\:inline-grid:last-child{
    display: inline-grid;
  }

  .sm\:last\:contents:last-child{
    display: contents;
  }

  .sm\:last\:hidden:last-child{
    display: none;
  }

  .sm\:flex-row{
    flex-direction: row;
  }

  .sm\:flex-row-reverse{
    flex-direction: row-reverse;
  }

  .sm\:flex-col{
    flex-direction: column;
  }

  .sm\:flex-col-reverse{
    flex-direction: column-reverse;
  }

  .sm\:hover\:flex-row:hover{
    flex-direction: row;
  }

  .sm\:hover\:flex-row-reverse:hover{
    flex-direction: row-reverse;
  }

  .sm\:hover\:flex-col:hover{
    flex-direction: column;
  }

  .sm\:hover\:flex-col-reverse:hover{
    flex-direction: column-reverse;
  }

  .sm\:focus\:flex-row:focus{
    flex-direction: row;
  }

  .sm\:focus\:flex-row-reverse:focus{
    flex-direction: row-reverse;
  }

  .sm\:focus\:flex-col:focus{
    flex-direction: column;
  }

  .sm\:focus\:flex-col-reverse:focus{
    flex-direction: column-reverse;
  }

  .sm\:active\:flex-row:active{
    flex-direction: row;
  }

  .sm\:active\:flex-row-reverse:active{
    flex-direction: row-reverse;
  }

  .sm\:active\:flex-col:active{
    flex-direction: column;
  }

  .sm\:active\:flex-col-reverse:active{
    flex-direction: column-reverse;
  }

  .sm\:first\:flex-row:first-child{
    flex-direction: row;
  }

  .sm\:first\:flex-row-reverse:first-child{
    flex-direction: row-reverse;
  }

  .sm\:first\:flex-col:first-child{
    flex-direction: column;
  }

  .sm\:first\:flex-col-reverse:first-child{
    flex-direction: column-reverse;
  }

  .sm\:last\:flex-row:last-child{
    flex-direction: row;
  }

  .sm\:last\:flex-row-reverse:last-child{
    flex-direction: row-reverse;
  }

  .sm\:last\:flex-col:last-child{
    flex-direction: column;
  }

  .sm\:last\:flex-col-reverse:last-child{
    flex-direction: column-reverse;
  }

  .sm\:flex-wrap{
    flex-wrap: wrap;
  }

  .sm\:flex-wrap-reverse{
    flex-wrap: wrap-reverse;
  }

  .sm\:flex-no-wrap{
    flex-wrap: nowrap;
  }

  .sm\:hover\:flex-wrap:hover{
    flex-wrap: wrap;
  }

  .sm\:hover\:flex-wrap-reverse:hover{
    flex-wrap: wrap-reverse;
  }

  .sm\:hover\:flex-no-wrap:hover{
    flex-wrap: nowrap;
  }

  .sm\:focus\:flex-wrap:focus{
    flex-wrap: wrap;
  }

  .sm\:focus\:flex-wrap-reverse:focus{
    flex-wrap: wrap-reverse;
  }

  .sm\:focus\:flex-no-wrap:focus{
    flex-wrap: nowrap;
  }

  .sm\:active\:flex-wrap:active{
    flex-wrap: wrap;
  }

  .sm\:active\:flex-wrap-reverse:active{
    flex-wrap: wrap-reverse;
  }

  .sm\:active\:flex-no-wrap:active{
    flex-wrap: nowrap;
  }

  .sm\:first\:flex-wrap:first-child{
    flex-wrap: wrap;
  }

  .sm\:first\:flex-wrap-reverse:first-child{
    flex-wrap: wrap-reverse;
  }

  .sm\:first\:flex-no-wrap:first-child{
    flex-wrap: nowrap;
  }

  .sm\:last\:flex-wrap:last-child{
    flex-wrap: wrap;
  }

  .sm\:last\:flex-wrap-reverse:last-child{
    flex-wrap: wrap-reverse;
  }

  .sm\:last\:flex-no-wrap:last-child{
    flex-wrap: nowrap;
  }

  .sm\:place-items-auto{
    place-items: auto;
  }

  .sm\:place-items-start{
    place-items: start;
  }

  .sm\:place-items-end{
    place-items: end;
  }

  .sm\:place-items-center{
    place-items: center;
  }

  .sm\:place-items-stretch{
    place-items: stretch;
  }

  .sm\:hover\:place-items-auto:hover{
    place-items: auto;
  }

  .sm\:hover\:place-items-start:hover{
    place-items: start;
  }

  .sm\:hover\:place-items-end:hover{
    place-items: end;
  }

  .sm\:hover\:place-items-center:hover{
    place-items: center;
  }

  .sm\:hover\:place-items-stretch:hover{
    place-items: stretch;
  }

  .sm\:focus\:place-items-auto:focus{
    place-items: auto;
  }

  .sm\:focus\:place-items-start:focus{
    place-items: start;
  }

  .sm\:focus\:place-items-end:focus{
    place-items: end;
  }

  .sm\:focus\:place-items-center:focus{
    place-items: center;
  }

  .sm\:focus\:place-items-stretch:focus{
    place-items: stretch;
  }

  .sm\:active\:place-items-auto:active{
    place-items: auto;
  }

  .sm\:active\:place-items-start:active{
    place-items: start;
  }

  .sm\:active\:place-items-end:active{
    place-items: end;
  }

  .sm\:active\:place-items-center:active{
    place-items: center;
  }

  .sm\:active\:place-items-stretch:active{
    place-items: stretch;
  }

  .sm\:first\:place-items-auto:first-child{
    place-items: auto;
  }

  .sm\:first\:place-items-start:first-child{
    place-items: start;
  }

  .sm\:first\:place-items-end:first-child{
    place-items: end;
  }

  .sm\:first\:place-items-center:first-child{
    place-items: center;
  }

  .sm\:first\:place-items-stretch:first-child{
    place-items: stretch;
  }

  .sm\:last\:place-items-auto:last-child{
    place-items: auto;
  }

  .sm\:last\:place-items-start:last-child{
    place-items: start;
  }

  .sm\:last\:place-items-end:last-child{
    place-items: end;
  }

  .sm\:last\:place-items-center:last-child{
    place-items: center;
  }

  .sm\:last\:place-items-stretch:last-child{
    place-items: stretch;
  }

  .sm\:place-content-center{
    place-content: center;
  }

  .sm\:place-content-start{
    place-content: start;
  }

  .sm\:place-content-end{
    place-content: end;
  }

  .sm\:place-content-between{
    place-content: space-between;
  }

  .sm\:place-content-around{
    place-content: space-around;
  }

  .sm\:place-content-evenly{
    place-content: space-evenly;
  }

  .sm\:place-content-stretch{
    place-content: stretch;
  }

  .sm\:hover\:place-content-center:hover{
    place-content: center;
  }

  .sm\:hover\:place-content-start:hover{
    place-content: start;
  }

  .sm\:hover\:place-content-end:hover{
    place-content: end;
  }

  .sm\:hover\:place-content-between:hover{
    place-content: space-between;
  }

  .sm\:hover\:place-content-around:hover{
    place-content: space-around;
  }

  .sm\:hover\:place-content-evenly:hover{
    place-content: space-evenly;
  }

  .sm\:hover\:place-content-stretch:hover{
    place-content: stretch;
  }

  .sm\:focus\:place-content-center:focus{
    place-content: center;
  }

  .sm\:focus\:place-content-start:focus{
    place-content: start;
  }

  .sm\:focus\:place-content-end:focus{
    place-content: end;
  }

  .sm\:focus\:place-content-between:focus{
    place-content: space-between;
  }

  .sm\:focus\:place-content-around:focus{
    place-content: space-around;
  }

  .sm\:focus\:place-content-evenly:focus{
    place-content: space-evenly;
  }

  .sm\:focus\:place-content-stretch:focus{
    place-content: stretch;
  }

  .sm\:active\:place-content-center:active{
    place-content: center;
  }

  .sm\:active\:place-content-start:active{
    place-content: start;
  }

  .sm\:active\:place-content-end:active{
    place-content: end;
  }

  .sm\:active\:place-content-between:active{
    place-content: space-between;
  }

  .sm\:active\:place-content-around:active{
    place-content: space-around;
  }

  .sm\:active\:place-content-evenly:active{
    place-content: space-evenly;
  }

  .sm\:active\:place-content-stretch:active{
    place-content: stretch;
  }

  .sm\:first\:place-content-center:first-child{
    place-content: center;
  }

  .sm\:first\:place-content-start:first-child{
    place-content: start;
  }

  .sm\:first\:place-content-end:first-child{
    place-content: end;
  }

  .sm\:first\:place-content-between:first-child{
    place-content: space-between;
  }

  .sm\:first\:place-content-around:first-child{
    place-content: space-around;
  }

  .sm\:first\:place-content-evenly:first-child{
    place-content: space-evenly;
  }

  .sm\:first\:place-content-stretch:first-child{
    place-content: stretch;
  }

  .sm\:last\:place-content-center:last-child{
    place-content: center;
  }

  .sm\:last\:place-content-start:last-child{
    place-content: start;
  }

  .sm\:last\:place-content-end:last-child{
    place-content: end;
  }

  .sm\:last\:place-content-between:last-child{
    place-content: space-between;
  }

  .sm\:last\:place-content-around:last-child{
    place-content: space-around;
  }

  .sm\:last\:place-content-evenly:last-child{
    place-content: space-evenly;
  }

  .sm\:last\:place-content-stretch:last-child{
    place-content: stretch;
  }

  .sm\:place-self-auto{
    place-self: auto;
  }

  .sm\:place-self-start{
    place-self: start;
  }

  .sm\:place-self-end{
    place-self: end;
  }

  .sm\:place-self-center{
    place-self: center;
  }

  .sm\:place-self-stretch{
    place-self: stretch;
  }

  .sm\:hover\:place-self-auto:hover{
    place-self: auto;
  }

  .sm\:hover\:place-self-start:hover{
    place-self: start;
  }

  .sm\:hover\:place-self-end:hover{
    place-self: end;
  }

  .sm\:hover\:place-self-center:hover{
    place-self: center;
  }

  .sm\:hover\:place-self-stretch:hover{
    place-self: stretch;
  }

  .sm\:focus\:place-self-auto:focus{
    place-self: auto;
  }

  .sm\:focus\:place-self-start:focus{
    place-self: start;
  }

  .sm\:focus\:place-self-end:focus{
    place-self: end;
  }

  .sm\:focus\:place-self-center:focus{
    place-self: center;
  }

  .sm\:focus\:place-self-stretch:focus{
    place-self: stretch;
  }

  .sm\:active\:place-self-auto:active{
    place-self: auto;
  }

  .sm\:active\:place-self-start:active{
    place-self: start;
  }

  .sm\:active\:place-self-end:active{
    place-self: end;
  }

  .sm\:active\:place-self-center:active{
    place-self: center;
  }

  .sm\:active\:place-self-stretch:active{
    place-self: stretch;
  }

  .sm\:first\:place-self-auto:first-child{
    place-self: auto;
  }

  .sm\:first\:place-self-start:first-child{
    place-self: start;
  }

  .sm\:first\:place-self-end:first-child{
    place-self: end;
  }

  .sm\:first\:place-self-center:first-child{
    place-self: center;
  }

  .sm\:first\:place-self-stretch:first-child{
    place-self: stretch;
  }

  .sm\:last\:place-self-auto:last-child{
    place-self: auto;
  }

  .sm\:last\:place-self-start:last-child{
    place-self: start;
  }

  .sm\:last\:place-self-end:last-child{
    place-self: end;
  }

  .sm\:last\:place-self-center:last-child{
    place-self: center;
  }

  .sm\:last\:place-self-stretch:last-child{
    place-self: stretch;
  }

  .sm\:items-start{
    align-items: flex-start;
  }

  .sm\:items-end{
    align-items: flex-end;
  }

  .sm\:items-center{
    align-items: center;
  }

  .sm\:items-baseline{
    align-items: baseline;
  }

  .sm\:items-stretch{
    align-items: stretch;
  }

  .sm\:hover\:items-start:hover{
    align-items: flex-start;
  }

  .sm\:hover\:items-end:hover{
    align-items: flex-end;
  }

  .sm\:hover\:items-center:hover{
    align-items: center;
  }

  .sm\:hover\:items-baseline:hover{
    align-items: baseline;
  }

  .sm\:hover\:items-stretch:hover{
    align-items: stretch;
  }

  .sm\:focus\:items-start:focus{
    align-items: flex-start;
  }

  .sm\:focus\:items-end:focus{
    align-items: flex-end;
  }

  .sm\:focus\:items-center:focus{
    align-items: center;
  }

  .sm\:focus\:items-baseline:focus{
    align-items: baseline;
  }

  .sm\:focus\:items-stretch:focus{
    align-items: stretch;
  }

  .sm\:active\:items-start:active{
    align-items: flex-start;
  }

  .sm\:active\:items-end:active{
    align-items: flex-end;
  }

  .sm\:active\:items-center:active{
    align-items: center;
  }

  .sm\:active\:items-baseline:active{
    align-items: baseline;
  }

  .sm\:active\:items-stretch:active{
    align-items: stretch;
  }

  .sm\:first\:items-start:first-child{
    align-items: flex-start;
  }

  .sm\:first\:items-end:first-child{
    align-items: flex-end;
  }

  .sm\:first\:items-center:first-child{
    align-items: center;
  }

  .sm\:first\:items-baseline:first-child{
    align-items: baseline;
  }

  .sm\:first\:items-stretch:first-child{
    align-items: stretch;
  }

  .sm\:last\:items-start:last-child{
    align-items: flex-start;
  }

  .sm\:last\:items-end:last-child{
    align-items: flex-end;
  }

  .sm\:last\:items-center:last-child{
    align-items: center;
  }

  .sm\:last\:items-baseline:last-child{
    align-items: baseline;
  }

  .sm\:last\:items-stretch:last-child{
    align-items: stretch;
  }

  .sm\:content-center{
    align-content: center;
  }

  .sm\:content-start{
    align-content: flex-start;
  }

  .sm\:content-end{
    align-content: flex-end;
  }

  .sm\:content-between{
    align-content: space-between;
  }

  .sm\:content-around{
    align-content: space-around;
  }

  .sm\:content-evenly{
    align-content: space-evenly;
  }

  .sm\:hover\:content-center:hover{
    align-content: center;
  }

  .sm\:hover\:content-start:hover{
    align-content: flex-start;
  }

  .sm\:hover\:content-end:hover{
    align-content: flex-end;
  }

  .sm\:hover\:content-between:hover{
    align-content: space-between;
  }

  .sm\:hover\:content-around:hover{
    align-content: space-around;
  }

  .sm\:hover\:content-evenly:hover{
    align-content: space-evenly;
  }

  .sm\:focus\:content-center:focus{
    align-content: center;
  }

  .sm\:focus\:content-start:focus{
    align-content: flex-start;
  }

  .sm\:focus\:content-end:focus{
    align-content: flex-end;
  }

  .sm\:focus\:content-between:focus{
    align-content: space-between;
  }

  .sm\:focus\:content-around:focus{
    align-content: space-around;
  }

  .sm\:focus\:content-evenly:focus{
    align-content: space-evenly;
  }

  .sm\:active\:content-center:active{
    align-content: center;
  }

  .sm\:active\:content-start:active{
    align-content: flex-start;
  }

  .sm\:active\:content-end:active{
    align-content: flex-end;
  }

  .sm\:active\:content-between:active{
    align-content: space-between;
  }

  .sm\:active\:content-around:active{
    align-content: space-around;
  }

  .sm\:active\:content-evenly:active{
    align-content: space-evenly;
  }

  .sm\:first\:content-center:first-child{
    align-content: center;
  }

  .sm\:first\:content-start:first-child{
    align-content: flex-start;
  }

  .sm\:first\:content-end:first-child{
    align-content: flex-end;
  }

  .sm\:first\:content-between:first-child{
    align-content: space-between;
  }

  .sm\:first\:content-around:first-child{
    align-content: space-around;
  }

  .sm\:first\:content-evenly:first-child{
    align-content: space-evenly;
  }

  .sm\:last\:content-center:last-child{
    align-content: center;
  }

  .sm\:last\:content-start:last-child{
    align-content: flex-start;
  }

  .sm\:last\:content-end:last-child{
    align-content: flex-end;
  }

  .sm\:last\:content-between:last-child{
    align-content: space-between;
  }

  .sm\:last\:content-around:last-child{
    align-content: space-around;
  }

  .sm\:last\:content-evenly:last-child{
    align-content: space-evenly;
  }

  .sm\:self-auto{
    align-self: auto;
  }

  .sm\:self-start{
    align-self: flex-start;
  }

  .sm\:self-end{
    align-self: flex-end;
  }

  .sm\:self-center{
    align-self: center;
  }

  .sm\:self-stretch{
    align-self: stretch;
  }

  .sm\:hover\:self-auto:hover{
    align-self: auto;
  }

  .sm\:hover\:self-start:hover{
    align-self: flex-start;
  }

  .sm\:hover\:self-end:hover{
    align-self: flex-end;
  }

  .sm\:hover\:self-center:hover{
    align-self: center;
  }

  .sm\:hover\:self-stretch:hover{
    align-self: stretch;
  }

  .sm\:focus\:self-auto:focus{
    align-self: auto;
  }

  .sm\:focus\:self-start:focus{
    align-self: flex-start;
  }

  .sm\:focus\:self-end:focus{
    align-self: flex-end;
  }

  .sm\:focus\:self-center:focus{
    align-self: center;
  }

  .sm\:focus\:self-stretch:focus{
    align-self: stretch;
  }

  .sm\:active\:self-auto:active{
    align-self: auto;
  }

  .sm\:active\:self-start:active{
    align-self: flex-start;
  }

  .sm\:active\:self-end:active{
    align-self: flex-end;
  }

  .sm\:active\:self-center:active{
    align-self: center;
  }

  .sm\:active\:self-stretch:active{
    align-self: stretch;
  }

  .sm\:first\:self-auto:first-child{
    align-self: auto;
  }

  .sm\:first\:self-start:first-child{
    align-self: flex-start;
  }

  .sm\:first\:self-end:first-child{
    align-self: flex-end;
  }

  .sm\:first\:self-center:first-child{
    align-self: center;
  }

  .sm\:first\:self-stretch:first-child{
    align-self: stretch;
  }

  .sm\:last\:self-auto:last-child{
    align-self: auto;
  }

  .sm\:last\:self-start:last-child{
    align-self: flex-start;
  }

  .sm\:last\:self-end:last-child{
    align-self: flex-end;
  }

  .sm\:last\:self-center:last-child{
    align-self: center;
  }

  .sm\:last\:self-stretch:last-child{
    align-self: stretch;
  }

  .sm\:justify-items-auto{
    justify-items: auto;
  }

  .sm\:justify-items-start{
    justify-items: start;
  }

  .sm\:justify-items-end{
    justify-items: end;
  }

  .sm\:justify-items-center{
    justify-items: center;
  }

  .sm\:justify-items-stretch{
    justify-items: stretch;
  }

  .sm\:hover\:justify-items-auto:hover{
    justify-items: auto;
  }

  .sm\:hover\:justify-items-start:hover{
    justify-items: start;
  }

  .sm\:hover\:justify-items-end:hover{
    justify-items: end;
  }

  .sm\:hover\:justify-items-center:hover{
    justify-items: center;
  }

  .sm\:hover\:justify-items-stretch:hover{
    justify-items: stretch;
  }

  .sm\:focus\:justify-items-auto:focus{
    justify-items: auto;
  }

  .sm\:focus\:justify-items-start:focus{
    justify-items: start;
  }

  .sm\:focus\:justify-items-end:focus{
    justify-items: end;
  }

  .sm\:focus\:justify-items-center:focus{
    justify-items: center;
  }

  .sm\:focus\:justify-items-stretch:focus{
    justify-items: stretch;
  }

  .sm\:active\:justify-items-auto:active{
    justify-items: auto;
  }

  .sm\:active\:justify-items-start:active{
    justify-items: start;
  }

  .sm\:active\:justify-items-end:active{
    justify-items: end;
  }

  .sm\:active\:justify-items-center:active{
    justify-items: center;
  }

  .sm\:active\:justify-items-stretch:active{
    justify-items: stretch;
  }

  .sm\:first\:justify-items-auto:first-child{
    justify-items: auto;
  }

  .sm\:first\:justify-items-start:first-child{
    justify-items: start;
  }

  .sm\:first\:justify-items-end:first-child{
    justify-items: end;
  }

  .sm\:first\:justify-items-center:first-child{
    justify-items: center;
  }

  .sm\:first\:justify-items-stretch:first-child{
    justify-items: stretch;
  }

  .sm\:last\:justify-items-auto:last-child{
    justify-items: auto;
  }

  .sm\:last\:justify-items-start:last-child{
    justify-items: start;
  }

  .sm\:last\:justify-items-end:last-child{
    justify-items: end;
  }

  .sm\:last\:justify-items-center:last-child{
    justify-items: center;
  }

  .sm\:last\:justify-items-stretch:last-child{
    justify-items: stretch;
  }

  .sm\:justify-start{
    justify-content: flex-start;
  }

  .sm\:justify-end{
    justify-content: flex-end;
  }

  .sm\:justify-center{
    justify-content: center;
  }

  .sm\:justify-between{
    justify-content: space-between;
  }

  .sm\:justify-around{
    justify-content: space-around;
  }

  .sm\:justify-evenly{
    justify-content: space-evenly;
  }

  .sm\:hover\:justify-start:hover{
    justify-content: flex-start;
  }

  .sm\:hover\:justify-end:hover{
    justify-content: flex-end;
  }

  .sm\:hover\:justify-center:hover{
    justify-content: center;
  }

  .sm\:hover\:justify-between:hover{
    justify-content: space-between;
  }

  .sm\:hover\:justify-around:hover{
    justify-content: space-around;
  }

  .sm\:hover\:justify-evenly:hover{
    justify-content: space-evenly;
  }

  .sm\:focus\:justify-start:focus{
    justify-content: flex-start;
  }

  .sm\:focus\:justify-end:focus{
    justify-content: flex-end;
  }

  .sm\:focus\:justify-center:focus{
    justify-content: center;
  }

  .sm\:focus\:justify-between:focus{
    justify-content: space-between;
  }

  .sm\:focus\:justify-around:focus{
    justify-content: space-around;
  }

  .sm\:focus\:justify-evenly:focus{
    justify-content: space-evenly;
  }

  .sm\:active\:justify-start:active{
    justify-content: flex-start;
  }

  .sm\:active\:justify-end:active{
    justify-content: flex-end;
  }

  .sm\:active\:justify-center:active{
    justify-content: center;
  }

  .sm\:active\:justify-between:active{
    justify-content: space-between;
  }

  .sm\:active\:justify-around:active{
    justify-content: space-around;
  }

  .sm\:active\:justify-evenly:active{
    justify-content: space-evenly;
  }

  .sm\:first\:justify-start:first-child{
    justify-content: flex-start;
  }

  .sm\:first\:justify-end:first-child{
    justify-content: flex-end;
  }

  .sm\:first\:justify-center:first-child{
    justify-content: center;
  }

  .sm\:first\:justify-between:first-child{
    justify-content: space-between;
  }

  .sm\:first\:justify-around:first-child{
    justify-content: space-around;
  }

  .sm\:first\:justify-evenly:first-child{
    justify-content: space-evenly;
  }

  .sm\:last\:justify-start:last-child{
    justify-content: flex-start;
  }

  .sm\:last\:justify-end:last-child{
    justify-content: flex-end;
  }

  .sm\:last\:justify-center:last-child{
    justify-content: center;
  }

  .sm\:last\:justify-between:last-child{
    justify-content: space-between;
  }

  .sm\:last\:justify-around:last-child{
    justify-content: space-around;
  }

  .sm\:last\:justify-evenly:last-child{
    justify-content: space-evenly;
  }

  .sm\:justify-self-auto{
    justify-self: auto;
  }

  .sm\:justify-self-start{
    justify-self: start;
  }

  .sm\:justify-self-end{
    justify-self: end;
  }

  .sm\:justify-self-center{
    justify-self: center;
  }

  .sm\:justify-self-stretch{
    justify-self: stretch;
  }

  .sm\:hover\:justify-self-auto:hover{
    justify-self: auto;
  }

  .sm\:hover\:justify-self-start:hover{
    justify-self: start;
  }

  .sm\:hover\:justify-self-end:hover{
    justify-self: end;
  }

  .sm\:hover\:justify-self-center:hover{
    justify-self: center;
  }

  .sm\:hover\:justify-self-stretch:hover{
    justify-self: stretch;
  }

  .sm\:focus\:justify-self-auto:focus{
    justify-self: auto;
  }

  .sm\:focus\:justify-self-start:focus{
    justify-self: start;
  }

  .sm\:focus\:justify-self-end:focus{
    justify-self: end;
  }

  .sm\:focus\:justify-self-center:focus{
    justify-self: center;
  }

  .sm\:focus\:justify-self-stretch:focus{
    justify-self: stretch;
  }

  .sm\:active\:justify-self-auto:active{
    justify-self: auto;
  }

  .sm\:active\:justify-self-start:active{
    justify-self: start;
  }

  .sm\:active\:justify-self-end:active{
    justify-self: end;
  }

  .sm\:active\:justify-self-center:active{
    justify-self: center;
  }

  .sm\:active\:justify-self-stretch:active{
    justify-self: stretch;
  }

  .sm\:first\:justify-self-auto:first-child{
    justify-self: auto;
  }

  .sm\:first\:justify-self-start:first-child{
    justify-self: start;
  }

  .sm\:first\:justify-self-end:first-child{
    justify-self: end;
  }

  .sm\:first\:justify-self-center:first-child{
    justify-self: center;
  }

  .sm\:first\:justify-self-stretch:first-child{
    justify-self: stretch;
  }

  .sm\:last\:justify-self-auto:last-child{
    justify-self: auto;
  }

  .sm\:last\:justify-self-start:last-child{
    justify-self: start;
  }

  .sm\:last\:justify-self-end:last-child{
    justify-self: end;
  }

  .sm\:last\:justify-self-center:last-child{
    justify-self: center;
  }

  .sm\:last\:justify-self-stretch:last-child{
    justify-self: stretch;
  }

  .sm\:flex-1{
    flex: 1 1 0%;
  }

  .sm\:flex-auto{
    flex: 1 1 auto;
  }

  .sm\:flex-initial{
    flex: 0 1 auto;
  }

  .sm\:flex-none{
    flex: none;
  }

  .sm\:hover\:flex-1:hover{
    flex: 1 1 0%;
  }

  .sm\:hover\:flex-auto:hover{
    flex: 1 1 auto;
  }

  .sm\:hover\:flex-initial:hover{
    flex: 0 1 auto;
  }

  .sm\:hover\:flex-none:hover{
    flex: none;
  }

  .sm\:focus\:flex-1:focus{
    flex: 1 1 0%;
  }

  .sm\:focus\:flex-auto:focus{
    flex: 1 1 auto;
  }

  .sm\:focus\:flex-initial:focus{
    flex: 0 1 auto;
  }

  .sm\:focus\:flex-none:focus{
    flex: none;
  }

  .sm\:active\:flex-1:active{
    flex: 1 1 0%;
  }

  .sm\:active\:flex-auto:active{
    flex: 1 1 auto;
  }

  .sm\:active\:flex-initial:active{
    flex: 0 1 auto;
  }

  .sm\:active\:flex-none:active{
    flex: none;
  }

  .sm\:first\:flex-1:first-child{
    flex: 1 1 0%;
  }

  .sm\:first\:flex-auto:first-child{
    flex: 1 1 auto;
  }

  .sm\:first\:flex-initial:first-child{
    flex: 0 1 auto;
  }

  .sm\:first\:flex-none:first-child{
    flex: none;
  }

  .sm\:last\:flex-1:last-child{
    flex: 1 1 0%;
  }

  .sm\:last\:flex-auto:last-child{
    flex: 1 1 auto;
  }

  .sm\:last\:flex-initial:last-child{
    flex: 0 1 auto;
  }

  .sm\:last\:flex-none:last-child{
    flex: none;
  }

  .sm\:flex-grow-0{
    flex-grow: 0;
  }

  .sm\:flex-grow-2{
    flex-grow: 2;
  }

  .sm\:flex-grow{
    flex-grow: 1;
  }

  .sm\:hover\:flex-grow-0:hover{
    flex-grow: 0;
  }

  .sm\:hover\:flex-grow-2:hover{
    flex-grow: 2;
  }

  .sm\:hover\:flex-grow:hover{
    flex-grow: 1;
  }

  .sm\:focus\:flex-grow-0:focus{
    flex-grow: 0;
  }

  .sm\:focus\:flex-grow-2:focus{
    flex-grow: 2;
  }

  .sm\:focus\:flex-grow:focus{
    flex-grow: 1;
  }

  .sm\:active\:flex-grow-0:active{
    flex-grow: 0;
  }

  .sm\:active\:flex-grow-2:active{
    flex-grow: 2;
  }

  .sm\:active\:flex-grow:active{
    flex-grow: 1;
  }

  .sm\:first\:flex-grow-0:first-child{
    flex-grow: 0;
  }

  .sm\:first\:flex-grow-2:first-child{
    flex-grow: 2;
  }

  .sm\:first\:flex-grow:first-child{
    flex-grow: 1;
  }

  .sm\:last\:flex-grow-0:last-child{
    flex-grow: 0;
  }

  .sm\:last\:flex-grow-2:last-child{
    flex-grow: 2;
  }

  .sm\:last\:flex-grow:last-child{
    flex-grow: 1;
  }

  .sm\:flex-shrink-0{
    flex-shrink: 0;
  }

  .sm\:flex-shrink{
    flex-shrink: 1;
  }

  .sm\:hover\:flex-shrink-0:hover{
    flex-shrink: 0;
  }

  .sm\:hover\:flex-shrink:hover{
    flex-shrink: 1;
  }

  .sm\:focus\:flex-shrink-0:focus{
    flex-shrink: 0;
  }

  .sm\:focus\:flex-shrink:focus{
    flex-shrink: 1;
  }

  .sm\:active\:flex-shrink-0:active{
    flex-shrink: 0;
  }

  .sm\:active\:flex-shrink:active{
    flex-shrink: 1;
  }

  .sm\:first\:flex-shrink-0:first-child{
    flex-shrink: 0;
  }

  .sm\:first\:flex-shrink:first-child{
    flex-shrink: 1;
  }

  .sm\:last\:flex-shrink-0:last-child{
    flex-shrink: 0;
  }

  .sm\:last\:flex-shrink:last-child{
    flex-shrink: 1;
  }

  .sm\:order-1{
    order: 1;
  }

  .sm\:order-2{
    order: 2;
  }

  .sm\:order-3{
    order: 3;
  }

  .sm\:order-4{
    order: 4;
  }

  .sm\:order-5{
    order: 5;
  }

  .sm\:order-6{
    order: 6;
  }

  .sm\:order-7{
    order: 7;
  }

  .sm\:order-8{
    order: 8;
  }

  .sm\:order-9{
    order: 9;
  }

  .sm\:order-10{
    order: 10;
  }

  .sm\:order-11{
    order: 11;
  }

  .sm\:order-12{
    order: 12;
  }

  .sm\:order-first{
    order: -9999;
  }

  .sm\:order-last{
    order: 9999;
  }

  .sm\:order-none{
    order: 0;
  }

  .sm\:hover\:order-1:hover{
    order: 1;
  }

  .sm\:hover\:order-2:hover{
    order: 2;
  }

  .sm\:hover\:order-3:hover{
    order: 3;
  }

  .sm\:hover\:order-4:hover{
    order: 4;
  }

  .sm\:hover\:order-5:hover{
    order: 5;
  }

  .sm\:hover\:order-6:hover{
    order: 6;
  }

  .sm\:hover\:order-7:hover{
    order: 7;
  }

  .sm\:hover\:order-8:hover{
    order: 8;
  }

  .sm\:hover\:order-9:hover{
    order: 9;
  }

  .sm\:hover\:order-10:hover{
    order: 10;
  }

  .sm\:hover\:order-11:hover{
    order: 11;
  }

  .sm\:hover\:order-12:hover{
    order: 12;
  }

  .sm\:hover\:order-first:hover{
    order: -9999;
  }

  .sm\:hover\:order-last:hover{
    order: 9999;
  }

  .sm\:hover\:order-none:hover{
    order: 0;
  }

  .sm\:focus\:order-1:focus{
    order: 1;
  }

  .sm\:focus\:order-2:focus{
    order: 2;
  }

  .sm\:focus\:order-3:focus{
    order: 3;
  }

  .sm\:focus\:order-4:focus{
    order: 4;
  }

  .sm\:focus\:order-5:focus{
    order: 5;
  }

  .sm\:focus\:order-6:focus{
    order: 6;
  }

  .sm\:focus\:order-7:focus{
    order: 7;
  }

  .sm\:focus\:order-8:focus{
    order: 8;
  }

  .sm\:focus\:order-9:focus{
    order: 9;
  }

  .sm\:focus\:order-10:focus{
    order: 10;
  }

  .sm\:focus\:order-11:focus{
    order: 11;
  }

  .sm\:focus\:order-12:focus{
    order: 12;
  }

  .sm\:focus\:order-first:focus{
    order: -9999;
  }

  .sm\:focus\:order-last:focus{
    order: 9999;
  }

  .sm\:focus\:order-none:focus{
    order: 0;
  }

  .sm\:active\:order-1:active{
    order: 1;
  }

  .sm\:active\:order-2:active{
    order: 2;
  }

  .sm\:active\:order-3:active{
    order: 3;
  }

  .sm\:active\:order-4:active{
    order: 4;
  }

  .sm\:active\:order-5:active{
    order: 5;
  }

  .sm\:active\:order-6:active{
    order: 6;
  }

  .sm\:active\:order-7:active{
    order: 7;
  }

  .sm\:active\:order-8:active{
    order: 8;
  }

  .sm\:active\:order-9:active{
    order: 9;
  }

  .sm\:active\:order-10:active{
    order: 10;
  }

  .sm\:active\:order-11:active{
    order: 11;
  }

  .sm\:active\:order-12:active{
    order: 12;
  }

  .sm\:active\:order-first:active{
    order: -9999;
  }

  .sm\:active\:order-last:active{
    order: 9999;
  }

  .sm\:active\:order-none:active{
    order: 0;
  }

  .sm\:first\:order-1:first-child{
    order: 1;
  }

  .sm\:first\:order-2:first-child{
    order: 2;
  }

  .sm\:first\:order-3:first-child{
    order: 3;
  }

  .sm\:first\:order-4:first-child{
    order: 4;
  }

  .sm\:first\:order-5:first-child{
    order: 5;
  }

  .sm\:first\:order-6:first-child{
    order: 6;
  }

  .sm\:first\:order-7:first-child{
    order: 7;
  }

  .sm\:first\:order-8:first-child{
    order: 8;
  }

  .sm\:first\:order-9:first-child{
    order: 9;
  }

  .sm\:first\:order-10:first-child{
    order: 10;
  }

  .sm\:first\:order-11:first-child{
    order: 11;
  }

  .sm\:first\:order-12:first-child{
    order: 12;
  }

  .sm\:first\:order-first:first-child{
    order: -9999;
  }

  .sm\:first\:order-last:first-child{
    order: 9999;
  }

  .sm\:first\:order-none:first-child{
    order: 0;
  }

  .sm\:last\:order-1:last-child{
    order: 1;
  }

  .sm\:last\:order-2:last-child{
    order: 2;
  }

  .sm\:last\:order-3:last-child{
    order: 3;
  }

  .sm\:last\:order-4:last-child{
    order: 4;
  }

  .sm\:last\:order-5:last-child{
    order: 5;
  }

  .sm\:last\:order-6:last-child{
    order: 6;
  }

  .sm\:last\:order-7:last-child{
    order: 7;
  }

  .sm\:last\:order-8:last-child{
    order: 8;
  }

  .sm\:last\:order-9:last-child{
    order: 9;
  }

  .sm\:last\:order-10:last-child{
    order: 10;
  }

  .sm\:last\:order-11:last-child{
    order: 11;
  }

  .sm\:last\:order-12:last-child{
    order: 12;
  }

  .sm\:last\:order-first:last-child{
    order: -9999;
  }

  .sm\:last\:order-last:last-child{
    order: 9999;
  }

  .sm\:last\:order-none:last-child{
    order: 0;
  }

  .sm\:float-right{
    float: right;
  }

  .sm\:float-left{
    float: left;
  }

  .sm\:float-none{
    float: none;
  }

  .sm\:clearfix:after{
    content: "";
    display: table;
    clear: both;
  }

  .sm\:hover\:float-right:hover{
    float: right;
  }

  .sm\:hover\:float-left:hover{
    float: left;
  }

  .sm\:hover\:float-none:hover{
    float: none;
  }

  .sm\:hover\:clearfix:hover:after{
    content: "";
    display: table;
    clear: both;
  }

  .sm\:focus\:float-right:focus{
    float: right;
  }

  .sm\:focus\:float-left:focus{
    float: left;
  }

  .sm\:focus\:float-none:focus{
    float: none;
  }

  .sm\:focus\:clearfix:focus:after{
    content: "";
    display: table;
    clear: both;
  }

  .sm\:active\:float-right:active{
    float: right;
  }

  .sm\:active\:float-left:active{
    float: left;
  }

  .sm\:active\:float-none:active{
    float: none;
  }

  .sm\:active\:clearfix:active:after{
    content: "";
    display: table;
    clear: both;
  }

  .sm\:first\:float-right:first-child{
    float: right;
  }

  .sm\:first\:float-left:first-child{
    float: left;
  }

  .sm\:first\:float-none:first-child{
    float: none;
  }

  .sm\:first\:clearfix:first-child:after{
    content: "";
    display: table;
    clear: both;
  }

  .sm\:last\:float-right:last-child{
    float: right;
  }

  .sm\:last\:float-left:last-child{
    float: left;
  }

  .sm\:last\:float-none:last-child{
    float: none;
  }

  .sm\:last\:clearfix:last-child:after{
    content: "";
    display: table;
    clear: both;
  }

  .sm\:clear-left{
    clear: left;
  }

  .sm\:clear-right{
    clear: right;
  }

  .sm\:clear-both{
    clear: both;
  }

  .sm\:clear-none{
    clear: none;
  }

  .sm\:hover\:clear-left:hover{
    clear: left;
  }

  .sm\:hover\:clear-right:hover{
    clear: right;
  }

  .sm\:hover\:clear-both:hover{
    clear: both;
  }

  .sm\:hover\:clear-none:hover{
    clear: none;
  }

  .sm\:focus\:clear-left:focus{
    clear: left;
  }

  .sm\:focus\:clear-right:focus{
    clear: right;
  }

  .sm\:focus\:clear-both:focus{
    clear: both;
  }

  .sm\:focus\:clear-none:focus{
    clear: none;
  }

  .sm\:active\:clear-left:active{
    clear: left;
  }

  .sm\:active\:clear-right:active{
    clear: right;
  }

  .sm\:active\:clear-both:active{
    clear: both;
  }

  .sm\:active\:clear-none:active{
    clear: none;
  }

  .sm\:first\:clear-left:first-child{
    clear: left;
  }

  .sm\:first\:clear-right:first-child{
    clear: right;
  }

  .sm\:first\:clear-both:first-child{
    clear: both;
  }

  .sm\:first\:clear-none:first-child{
    clear: none;
  }

  .sm\:last\:clear-left:last-child{
    clear: left;
  }

  .sm\:last\:clear-right:last-child{
    clear: right;
  }

  .sm\:last\:clear-both:last-child{
    clear: both;
  }

  .sm\:last\:clear-none:last-child{
    clear: none;
  }

  .sm\:font-moderat{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .sm\:font-brown-pro{
    font-family: Brown, Helvetica, sans-serif;
  }

  .sm\:font-print{
    font-family: Bianco Sans;
  }

  .sm\:font-print-serif{
    font-family: Bianco Serif;
  }

  .sm\:hover\:font-moderat:hover{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .sm\:hover\:font-brown-pro:hover{
    font-family: Brown, Helvetica, sans-serif;
  }

  .sm\:hover\:font-print:hover{
    font-family: Bianco Sans;
  }

  .sm\:hover\:font-print-serif:hover{
    font-family: Bianco Serif;
  }

  .sm\:focus\:font-moderat:focus{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .sm\:focus\:font-brown-pro:focus{
    font-family: Brown, Helvetica, sans-serif;
  }

  .sm\:focus\:font-print:focus{
    font-family: Bianco Sans;
  }

  .sm\:focus\:font-print-serif:focus{
    font-family: Bianco Serif;
  }

  .sm\:active\:font-moderat:active{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .sm\:active\:font-brown-pro:active{
    font-family: Brown, Helvetica, sans-serif;
  }

  .sm\:active\:font-print:active{
    font-family: Bianco Sans;
  }

  .sm\:active\:font-print-serif:active{
    font-family: Bianco Serif;
  }

  .sm\:first\:font-moderat:first-child{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .sm\:first\:font-brown-pro:first-child{
    font-family: Brown, Helvetica, sans-serif;
  }

  .sm\:first\:font-print:first-child{
    font-family: Bianco Sans;
  }

  .sm\:first\:font-print-serif:first-child{
    font-family: Bianco Serif;
  }

  .sm\:last\:font-moderat:last-child{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .sm\:last\:font-brown-pro:last-child{
    font-family: Brown, Helvetica, sans-serif;
  }

  .sm\:last\:font-print:last-child{
    font-family: Bianco Sans;
  }

  .sm\:last\:font-print-serif:last-child{
    font-family: Bianco Serif;
  }

  .sm\:font-hairline{
    font-weight: 100;
  }

  .sm\:font-thin{
    font-weight: 200;
  }

  .sm\:font-light{
    font-weight: 300;
  }

  .sm\:font-normal{
    font-weight: 400;
  }

  .sm\:font-medium{
    font-weight: 500;
  }

  .sm\:font-semibold{
    font-weight: 600;
  }

  .sm\:font-bold{
    font-weight: 700;
  }

  .sm\:font-extrabold{
    font-weight: 800;
  }

  .sm\:font-black{
    font-weight: 900;
  }

  .sm\:hover\:font-hairline:hover{
    font-weight: 100;
  }

  .sm\:hover\:font-thin:hover{
    font-weight: 200;
  }

  .sm\:hover\:font-light:hover{
    font-weight: 300;
  }

  .sm\:hover\:font-normal:hover{
    font-weight: 400;
  }

  .sm\:hover\:font-medium:hover{
    font-weight: 500;
  }

  .sm\:hover\:font-semibold:hover{
    font-weight: 600;
  }

  .sm\:hover\:font-bold:hover{
    font-weight: 700;
  }

  .sm\:hover\:font-extrabold:hover{
    font-weight: 800;
  }

  .sm\:hover\:font-black:hover{
    font-weight: 900;
  }

  .sm\:focus\:font-hairline:focus{
    font-weight: 100;
  }

  .sm\:focus\:font-thin:focus{
    font-weight: 200;
  }

  .sm\:focus\:font-light:focus{
    font-weight: 300;
  }

  .sm\:focus\:font-normal:focus{
    font-weight: 400;
  }

  .sm\:focus\:font-medium:focus{
    font-weight: 500;
  }

  .sm\:focus\:font-semibold:focus{
    font-weight: 600;
  }

  .sm\:focus\:font-bold:focus{
    font-weight: 700;
  }

  .sm\:focus\:font-extrabold:focus{
    font-weight: 800;
  }

  .sm\:focus\:font-black:focus{
    font-weight: 900;
  }

  .sm\:active\:font-hairline:active{
    font-weight: 100;
  }

  .sm\:active\:font-thin:active{
    font-weight: 200;
  }

  .sm\:active\:font-light:active{
    font-weight: 300;
  }

  .sm\:active\:font-normal:active{
    font-weight: 400;
  }

  .sm\:active\:font-medium:active{
    font-weight: 500;
  }

  .sm\:active\:font-semibold:active{
    font-weight: 600;
  }

  .sm\:active\:font-bold:active{
    font-weight: 700;
  }

  .sm\:active\:font-extrabold:active{
    font-weight: 800;
  }

  .sm\:active\:font-black:active{
    font-weight: 900;
  }

  .sm\:first\:font-hairline:first-child{
    font-weight: 100;
  }

  .sm\:first\:font-thin:first-child{
    font-weight: 200;
  }

  .sm\:first\:font-light:first-child{
    font-weight: 300;
  }

  .sm\:first\:font-normal:first-child{
    font-weight: 400;
  }

  .sm\:first\:font-medium:first-child{
    font-weight: 500;
  }

  .sm\:first\:font-semibold:first-child{
    font-weight: 600;
  }

  .sm\:first\:font-bold:first-child{
    font-weight: 700;
  }

  .sm\:first\:font-extrabold:first-child{
    font-weight: 800;
  }

  .sm\:first\:font-black:first-child{
    font-weight: 900;
  }

  .sm\:last\:font-hairline:last-child{
    font-weight: 100;
  }

  .sm\:last\:font-thin:last-child{
    font-weight: 200;
  }

  .sm\:last\:font-light:last-child{
    font-weight: 300;
  }

  .sm\:last\:font-normal:last-child{
    font-weight: 400;
  }

  .sm\:last\:font-medium:last-child{
    font-weight: 500;
  }

  .sm\:last\:font-semibold:last-child{
    font-weight: 600;
  }

  .sm\:last\:font-bold:last-child{
    font-weight: 700;
  }

  .sm\:last\:font-extrabold:last-child{
    font-weight: 800;
  }

  .sm\:last\:font-black:last-child{
    font-weight: 900;
  }

  .sm\:h-0{
    height: 0;
  }

  .sm\:h-1{
    height: 0.25rem;
  }

  .sm\:h-2{
    height: 0.5rem;
  }

  .sm\:h-3{
    height: 0.75rem;
  }

  .sm\:h-4{
    height: 1rem;
  }

  .sm\:h-5{
    height: 1.25rem;
  }

  .sm\:h-6{
    height: 1.5rem;
  }

  .sm\:h-8{
    height: 2rem;
  }

  .sm\:h-10{
    height: 2.5rem;
  }

  .sm\:h-12{
    height: 3rem;
  }

  .sm\:h-14{
    height: 3.5rem;
  }

  .sm\:h-16{
    height: 4rem;
  }

  .sm\:h-20{
    height: 5rem;
  }

  .sm\:h-24{
    height: 6rem;
  }

  .sm\:h-28{
    height: 7rem;
  }

  .sm\:h-32{
    height: 8rem;
  }

  .sm\:h-40{
    height: 10rem;
  }

  .sm\:h-48{
    height: 12rem;
  }

  .sm\:h-56{
    height: 14rem;
  }

  .sm\:h-64{
    height: 16rem;
  }

  .sm\:h-auto{
    height: auto;
  }

  .sm\:h-px{
    height: 1px;
  }

  .sm\:h-full{
    height: 100%;
  }

  .sm\:h-screen{
    height: 100vh;
  }

  .sm\:hover\:h-0:hover{
    height: 0;
  }

  .sm\:hover\:h-1:hover{
    height: 0.25rem;
  }

  .sm\:hover\:h-2:hover{
    height: 0.5rem;
  }

  .sm\:hover\:h-3:hover{
    height: 0.75rem;
  }

  .sm\:hover\:h-4:hover{
    height: 1rem;
  }

  .sm\:hover\:h-5:hover{
    height: 1.25rem;
  }

  .sm\:hover\:h-6:hover{
    height: 1.5rem;
  }

  .sm\:hover\:h-8:hover{
    height: 2rem;
  }

  .sm\:hover\:h-10:hover{
    height: 2.5rem;
  }

  .sm\:hover\:h-12:hover{
    height: 3rem;
  }

  .sm\:hover\:h-14:hover{
    height: 3.5rem;
  }

  .sm\:hover\:h-16:hover{
    height: 4rem;
  }

  .sm\:hover\:h-20:hover{
    height: 5rem;
  }

  .sm\:hover\:h-24:hover{
    height: 6rem;
  }

  .sm\:hover\:h-28:hover{
    height: 7rem;
  }

  .sm\:hover\:h-32:hover{
    height: 8rem;
  }

  .sm\:hover\:h-40:hover{
    height: 10rem;
  }

  .sm\:hover\:h-48:hover{
    height: 12rem;
  }

  .sm\:hover\:h-56:hover{
    height: 14rem;
  }

  .sm\:hover\:h-64:hover{
    height: 16rem;
  }

  .sm\:hover\:h-auto:hover{
    height: auto;
  }

  .sm\:hover\:h-px:hover{
    height: 1px;
  }

  .sm\:hover\:h-full:hover{
    height: 100%;
  }

  .sm\:hover\:h-screen:hover{
    height: 100vh;
  }

  .sm\:focus\:h-0:focus{
    height: 0;
  }

  .sm\:focus\:h-1:focus{
    height: 0.25rem;
  }

  .sm\:focus\:h-2:focus{
    height: 0.5rem;
  }

  .sm\:focus\:h-3:focus{
    height: 0.75rem;
  }

  .sm\:focus\:h-4:focus{
    height: 1rem;
  }

  .sm\:focus\:h-5:focus{
    height: 1.25rem;
  }

  .sm\:focus\:h-6:focus{
    height: 1.5rem;
  }

  .sm\:focus\:h-8:focus{
    height: 2rem;
  }

  .sm\:focus\:h-10:focus{
    height: 2.5rem;
  }

  .sm\:focus\:h-12:focus{
    height: 3rem;
  }

  .sm\:focus\:h-14:focus{
    height: 3.5rem;
  }

  .sm\:focus\:h-16:focus{
    height: 4rem;
  }

  .sm\:focus\:h-20:focus{
    height: 5rem;
  }

  .sm\:focus\:h-24:focus{
    height: 6rem;
  }

  .sm\:focus\:h-28:focus{
    height: 7rem;
  }

  .sm\:focus\:h-32:focus{
    height: 8rem;
  }

  .sm\:focus\:h-40:focus{
    height: 10rem;
  }

  .sm\:focus\:h-48:focus{
    height: 12rem;
  }

  .sm\:focus\:h-56:focus{
    height: 14rem;
  }

  .sm\:focus\:h-64:focus{
    height: 16rem;
  }

  .sm\:focus\:h-auto:focus{
    height: auto;
  }

  .sm\:focus\:h-px:focus{
    height: 1px;
  }

  .sm\:focus\:h-full:focus{
    height: 100%;
  }

  .sm\:focus\:h-screen:focus{
    height: 100vh;
  }

  .sm\:active\:h-0:active{
    height: 0;
  }

  .sm\:active\:h-1:active{
    height: 0.25rem;
  }

  .sm\:active\:h-2:active{
    height: 0.5rem;
  }

  .sm\:active\:h-3:active{
    height: 0.75rem;
  }

  .sm\:active\:h-4:active{
    height: 1rem;
  }

  .sm\:active\:h-5:active{
    height: 1.25rem;
  }

  .sm\:active\:h-6:active{
    height: 1.5rem;
  }

  .sm\:active\:h-8:active{
    height: 2rem;
  }

  .sm\:active\:h-10:active{
    height: 2.5rem;
  }

  .sm\:active\:h-12:active{
    height: 3rem;
  }

  .sm\:active\:h-14:active{
    height: 3.5rem;
  }

  .sm\:active\:h-16:active{
    height: 4rem;
  }

  .sm\:active\:h-20:active{
    height: 5rem;
  }

  .sm\:active\:h-24:active{
    height: 6rem;
  }

  .sm\:active\:h-28:active{
    height: 7rem;
  }

  .sm\:active\:h-32:active{
    height: 8rem;
  }

  .sm\:active\:h-40:active{
    height: 10rem;
  }

  .sm\:active\:h-48:active{
    height: 12rem;
  }

  .sm\:active\:h-56:active{
    height: 14rem;
  }

  .sm\:active\:h-64:active{
    height: 16rem;
  }

  .sm\:active\:h-auto:active{
    height: auto;
  }

  .sm\:active\:h-px:active{
    height: 1px;
  }

  .sm\:active\:h-full:active{
    height: 100%;
  }

  .sm\:active\:h-screen:active{
    height: 100vh;
  }

  .sm\:first\:h-0:first-child{
    height: 0;
  }

  .sm\:first\:h-1:first-child{
    height: 0.25rem;
  }

  .sm\:first\:h-2:first-child{
    height: 0.5rem;
  }

  .sm\:first\:h-3:first-child{
    height: 0.75rem;
  }

  .sm\:first\:h-4:first-child{
    height: 1rem;
  }

  .sm\:first\:h-5:first-child{
    height: 1.25rem;
  }

  .sm\:first\:h-6:first-child{
    height: 1.5rem;
  }

  .sm\:first\:h-8:first-child{
    height: 2rem;
  }

  .sm\:first\:h-10:first-child{
    height: 2.5rem;
  }

  .sm\:first\:h-12:first-child{
    height: 3rem;
  }

  .sm\:first\:h-14:first-child{
    height: 3.5rem;
  }

  .sm\:first\:h-16:first-child{
    height: 4rem;
  }

  .sm\:first\:h-20:first-child{
    height: 5rem;
  }

  .sm\:first\:h-24:first-child{
    height: 6rem;
  }

  .sm\:first\:h-28:first-child{
    height: 7rem;
  }

  .sm\:first\:h-32:first-child{
    height: 8rem;
  }

  .sm\:first\:h-40:first-child{
    height: 10rem;
  }

  .sm\:first\:h-48:first-child{
    height: 12rem;
  }

  .sm\:first\:h-56:first-child{
    height: 14rem;
  }

  .sm\:first\:h-64:first-child{
    height: 16rem;
  }

  .sm\:first\:h-auto:first-child{
    height: auto;
  }

  .sm\:first\:h-px:first-child{
    height: 1px;
  }

  .sm\:first\:h-full:first-child{
    height: 100%;
  }

  .sm\:first\:h-screen:first-child{
    height: 100vh;
  }

  .sm\:last\:h-0:last-child{
    height: 0;
  }

  .sm\:last\:h-1:last-child{
    height: 0.25rem;
  }

  .sm\:last\:h-2:last-child{
    height: 0.5rem;
  }

  .sm\:last\:h-3:last-child{
    height: 0.75rem;
  }

  .sm\:last\:h-4:last-child{
    height: 1rem;
  }

  .sm\:last\:h-5:last-child{
    height: 1.25rem;
  }

  .sm\:last\:h-6:last-child{
    height: 1.5rem;
  }

  .sm\:last\:h-8:last-child{
    height: 2rem;
  }

  .sm\:last\:h-10:last-child{
    height: 2.5rem;
  }

  .sm\:last\:h-12:last-child{
    height: 3rem;
  }

  .sm\:last\:h-14:last-child{
    height: 3.5rem;
  }

  .sm\:last\:h-16:last-child{
    height: 4rem;
  }

  .sm\:last\:h-20:last-child{
    height: 5rem;
  }

  .sm\:last\:h-24:last-child{
    height: 6rem;
  }

  .sm\:last\:h-28:last-child{
    height: 7rem;
  }

  .sm\:last\:h-32:last-child{
    height: 8rem;
  }

  .sm\:last\:h-40:last-child{
    height: 10rem;
  }

  .sm\:last\:h-48:last-child{
    height: 12rem;
  }

  .sm\:last\:h-56:last-child{
    height: 14rem;
  }

  .sm\:last\:h-64:last-child{
    height: 16rem;
  }

  .sm\:last\:h-auto:last-child{
    height: auto;
  }

  .sm\:last\:h-px:last-child{
    height: 1px;
  }

  .sm\:last\:h-full:last-child{
    height: 100%;
  }

  .sm\:last\:h-screen:last-child{
    height: 100vh;
  }

  .sm\:text-xxxxxs{
    font-size: 0.3125rem;
  }

  .sm\:text-xxxxs{
    font-size: 0.375rem;
  }

  .sm\:text-xxxs{
    font-size: 0.5rem;
  }

  .sm\:text-xxs{
    font-size: 0.625rem;
  }

  .sm\:text-xs{
    font-size: 0.75rem;
  }

  .sm\:text-sm{
    font-size: 0.875rem;
  }

  .sm\:text-base{
    font-size: 1rem;
  }

  .sm\:text-lg{
    font-size: 1.125rem;
  }

  .sm\:text-xl{
    font-size: 1.5rem;
  }

  .sm\:text-2xl{
    font-size: 2rem;
  }

  .sm\:text-3xl{
    font-size: 3rem;
  }

  .sm\:text-4xl{
    font-size: 3.75rem;
  }

  .sm\:text-5xl{
    font-size: 6rem;
  }

  .sm\:hover\:text-xxxxxs:hover{
    font-size: 0.3125rem;
  }

  .sm\:hover\:text-xxxxs:hover{
    font-size: 0.375rem;
  }

  .sm\:hover\:text-xxxs:hover{
    font-size: 0.5rem;
  }

  .sm\:hover\:text-xxs:hover{
    font-size: 0.625rem;
  }

  .sm\:hover\:text-xs:hover{
    font-size: 0.75rem;
  }

  .sm\:hover\:text-sm:hover{
    font-size: 0.875rem;
  }

  .sm\:hover\:text-base:hover{
    font-size: 1rem;
  }

  .sm\:hover\:text-lg:hover{
    font-size: 1.125rem;
  }

  .sm\:hover\:text-xl:hover{
    font-size: 1.5rem;
  }

  .sm\:hover\:text-2xl:hover{
    font-size: 2rem;
  }

  .sm\:hover\:text-3xl:hover{
    font-size: 3rem;
  }

  .sm\:hover\:text-4xl:hover{
    font-size: 3.75rem;
  }

  .sm\:hover\:text-5xl:hover{
    font-size: 6rem;
  }

  .sm\:focus\:text-xxxxxs:focus{
    font-size: 0.3125rem;
  }

  .sm\:focus\:text-xxxxs:focus{
    font-size: 0.375rem;
  }

  .sm\:focus\:text-xxxs:focus{
    font-size: 0.5rem;
  }

  .sm\:focus\:text-xxs:focus{
    font-size: 0.625rem;
  }

  .sm\:focus\:text-xs:focus{
    font-size: 0.75rem;
  }

  .sm\:focus\:text-sm:focus{
    font-size: 0.875rem;
  }

  .sm\:focus\:text-base:focus{
    font-size: 1rem;
  }

  .sm\:focus\:text-lg:focus{
    font-size: 1.125rem;
  }

  .sm\:focus\:text-xl:focus{
    font-size: 1.5rem;
  }

  .sm\:focus\:text-2xl:focus{
    font-size: 2rem;
  }

  .sm\:focus\:text-3xl:focus{
    font-size: 3rem;
  }

  .sm\:focus\:text-4xl:focus{
    font-size: 3.75rem;
  }

  .sm\:focus\:text-5xl:focus{
    font-size: 6rem;
  }

  .sm\:active\:text-xxxxxs:active{
    font-size: 0.3125rem;
  }

  .sm\:active\:text-xxxxs:active{
    font-size: 0.375rem;
  }

  .sm\:active\:text-xxxs:active{
    font-size: 0.5rem;
  }

  .sm\:active\:text-xxs:active{
    font-size: 0.625rem;
  }

  .sm\:active\:text-xs:active{
    font-size: 0.75rem;
  }

  .sm\:active\:text-sm:active{
    font-size: 0.875rem;
  }

  .sm\:active\:text-base:active{
    font-size: 1rem;
  }

  .sm\:active\:text-lg:active{
    font-size: 1.125rem;
  }

  .sm\:active\:text-xl:active{
    font-size: 1.5rem;
  }

  .sm\:active\:text-2xl:active{
    font-size: 2rem;
  }

  .sm\:active\:text-3xl:active{
    font-size: 3rem;
  }

  .sm\:active\:text-4xl:active{
    font-size: 3.75rem;
  }

  .sm\:active\:text-5xl:active{
    font-size: 6rem;
  }

  .sm\:first\:text-xxxxxs:first-child{
    font-size: 0.3125rem;
  }

  .sm\:first\:text-xxxxs:first-child{
    font-size: 0.375rem;
  }

  .sm\:first\:text-xxxs:first-child{
    font-size: 0.5rem;
  }

  .sm\:first\:text-xxs:first-child{
    font-size: 0.625rem;
  }

  .sm\:first\:text-xs:first-child{
    font-size: 0.75rem;
  }

  .sm\:first\:text-sm:first-child{
    font-size: 0.875rem;
  }

  .sm\:first\:text-base:first-child{
    font-size: 1rem;
  }

  .sm\:first\:text-lg:first-child{
    font-size: 1.125rem;
  }

  .sm\:first\:text-xl:first-child{
    font-size: 1.5rem;
  }

  .sm\:first\:text-2xl:first-child{
    font-size: 2rem;
  }

  .sm\:first\:text-3xl:first-child{
    font-size: 3rem;
  }

  .sm\:first\:text-4xl:first-child{
    font-size: 3.75rem;
  }

  .sm\:first\:text-5xl:first-child{
    font-size: 6rem;
  }

  .sm\:last\:text-xxxxxs:last-child{
    font-size: 0.3125rem;
  }

  .sm\:last\:text-xxxxs:last-child{
    font-size: 0.375rem;
  }

  .sm\:last\:text-xxxs:last-child{
    font-size: 0.5rem;
  }

  .sm\:last\:text-xxs:last-child{
    font-size: 0.625rem;
  }

  .sm\:last\:text-xs:last-child{
    font-size: 0.75rem;
  }

  .sm\:last\:text-sm:last-child{
    font-size: 0.875rem;
  }

  .sm\:last\:text-base:last-child{
    font-size: 1rem;
  }

  .sm\:last\:text-lg:last-child{
    font-size: 1.125rem;
  }

  .sm\:last\:text-xl:last-child{
    font-size: 1.5rem;
  }

  .sm\:last\:text-2xl:last-child{
    font-size: 2rem;
  }

  .sm\:last\:text-3xl:last-child{
    font-size: 3rem;
  }

  .sm\:last\:text-4xl:last-child{
    font-size: 3.75rem;
  }

  .sm\:last\:text-5xl:last-child{
    font-size: 6rem;
  }

  .sm\:leading-3{
    line-height: .75rem;
  }

  .sm\:leading-4{
    line-height: 1rem;
  }

  .sm\:leading-5{
    line-height: 1.25rem;
  }

  .sm\:leading-6{
    line-height: 1.5rem;
  }

  .sm\:leading-7{
    line-height: 1.75rem;
  }

  .sm\:leading-8{
    line-height: 2rem;
  }

  .sm\:leading-9{
    line-height: 2.25rem;
  }

  .sm\:leading-10{
    line-height: 2.5rem;
  }

  .sm\:leading-none{
    line-height: 1;
  }

  .sm\:leading-tight{
    line-height: 1;
  }

  .sm\:leading-snug{
    line-height: 1.375;
  }

  .sm\:leading-normal{
    line-height: 1.5;
  }

  .sm\:leading-relaxed{
    line-height: 1.625;
  }

  .sm\:leading-loose{
    line-height: 2;
  }

  .sm\:leading-error{
    line-height: 1.333;
  }

  .sm\:hover\:leading-3:hover{
    line-height: .75rem;
  }

  .sm\:hover\:leading-4:hover{
    line-height: 1rem;
  }

  .sm\:hover\:leading-5:hover{
    line-height: 1.25rem;
  }

  .sm\:hover\:leading-6:hover{
    line-height: 1.5rem;
  }

  .sm\:hover\:leading-7:hover{
    line-height: 1.75rem;
  }

  .sm\:hover\:leading-8:hover{
    line-height: 2rem;
  }

  .sm\:hover\:leading-9:hover{
    line-height: 2.25rem;
  }

  .sm\:hover\:leading-10:hover{
    line-height: 2.5rem;
  }

  .sm\:hover\:leading-none:hover{
    line-height: 1;
  }

  .sm\:hover\:leading-tight:hover{
    line-height: 1;
  }

  .sm\:hover\:leading-snug:hover{
    line-height: 1.375;
  }

  .sm\:hover\:leading-normal:hover{
    line-height: 1.5;
  }

  .sm\:hover\:leading-relaxed:hover{
    line-height: 1.625;
  }

  .sm\:hover\:leading-loose:hover{
    line-height: 2;
  }

  .sm\:hover\:leading-error:hover{
    line-height: 1.333;
  }

  .sm\:focus\:leading-3:focus{
    line-height: .75rem;
  }

  .sm\:focus\:leading-4:focus{
    line-height: 1rem;
  }

  .sm\:focus\:leading-5:focus{
    line-height: 1.25rem;
  }

  .sm\:focus\:leading-6:focus{
    line-height: 1.5rem;
  }

  .sm\:focus\:leading-7:focus{
    line-height: 1.75rem;
  }

  .sm\:focus\:leading-8:focus{
    line-height: 2rem;
  }

  .sm\:focus\:leading-9:focus{
    line-height: 2.25rem;
  }

  .sm\:focus\:leading-10:focus{
    line-height: 2.5rem;
  }

  .sm\:focus\:leading-none:focus{
    line-height: 1;
  }

  .sm\:focus\:leading-tight:focus{
    line-height: 1;
  }

  .sm\:focus\:leading-snug:focus{
    line-height: 1.375;
  }

  .sm\:focus\:leading-normal:focus{
    line-height: 1.5;
  }

  .sm\:focus\:leading-relaxed:focus{
    line-height: 1.625;
  }

  .sm\:focus\:leading-loose:focus{
    line-height: 2;
  }

  .sm\:focus\:leading-error:focus{
    line-height: 1.333;
  }

  .sm\:active\:leading-3:active{
    line-height: .75rem;
  }

  .sm\:active\:leading-4:active{
    line-height: 1rem;
  }

  .sm\:active\:leading-5:active{
    line-height: 1.25rem;
  }

  .sm\:active\:leading-6:active{
    line-height: 1.5rem;
  }

  .sm\:active\:leading-7:active{
    line-height: 1.75rem;
  }

  .sm\:active\:leading-8:active{
    line-height: 2rem;
  }

  .sm\:active\:leading-9:active{
    line-height: 2.25rem;
  }

  .sm\:active\:leading-10:active{
    line-height: 2.5rem;
  }

  .sm\:active\:leading-none:active{
    line-height: 1;
  }

  .sm\:active\:leading-tight:active{
    line-height: 1;
  }

  .sm\:active\:leading-snug:active{
    line-height: 1.375;
  }

  .sm\:active\:leading-normal:active{
    line-height: 1.5;
  }

  .sm\:active\:leading-relaxed:active{
    line-height: 1.625;
  }

  .sm\:active\:leading-loose:active{
    line-height: 2;
  }

  .sm\:active\:leading-error:active{
    line-height: 1.333;
  }

  .sm\:first\:leading-3:first-child{
    line-height: .75rem;
  }

  .sm\:first\:leading-4:first-child{
    line-height: 1rem;
  }

  .sm\:first\:leading-5:first-child{
    line-height: 1.25rem;
  }

  .sm\:first\:leading-6:first-child{
    line-height: 1.5rem;
  }

  .sm\:first\:leading-7:first-child{
    line-height: 1.75rem;
  }

  .sm\:first\:leading-8:first-child{
    line-height: 2rem;
  }

  .sm\:first\:leading-9:first-child{
    line-height: 2.25rem;
  }

  .sm\:first\:leading-10:first-child{
    line-height: 2.5rem;
  }

  .sm\:first\:leading-none:first-child{
    line-height: 1;
  }

  .sm\:first\:leading-tight:first-child{
    line-height: 1;
  }

  .sm\:first\:leading-snug:first-child{
    line-height: 1.375;
  }

  .sm\:first\:leading-normal:first-child{
    line-height: 1.5;
  }

  .sm\:first\:leading-relaxed:first-child{
    line-height: 1.625;
  }

  .sm\:first\:leading-loose:first-child{
    line-height: 2;
  }

  .sm\:first\:leading-error:first-child{
    line-height: 1.333;
  }

  .sm\:last\:leading-3:last-child{
    line-height: .75rem;
  }

  .sm\:last\:leading-4:last-child{
    line-height: 1rem;
  }

  .sm\:last\:leading-5:last-child{
    line-height: 1.25rem;
  }

  .sm\:last\:leading-6:last-child{
    line-height: 1.5rem;
  }

  .sm\:last\:leading-7:last-child{
    line-height: 1.75rem;
  }

  .sm\:last\:leading-8:last-child{
    line-height: 2rem;
  }

  .sm\:last\:leading-9:last-child{
    line-height: 2.25rem;
  }

  .sm\:last\:leading-10:last-child{
    line-height: 2.5rem;
  }

  .sm\:last\:leading-none:last-child{
    line-height: 1;
  }

  .sm\:last\:leading-tight:last-child{
    line-height: 1;
  }

  .sm\:last\:leading-snug:last-child{
    line-height: 1.375;
  }

  .sm\:last\:leading-normal:last-child{
    line-height: 1.5;
  }

  .sm\:last\:leading-relaxed:last-child{
    line-height: 1.625;
  }

  .sm\:last\:leading-loose:last-child{
    line-height: 2;
  }

  .sm\:last\:leading-error:last-child{
    line-height: 1.333;
  }

  .sm\:list-inside{
    list-style-position: inside;
  }

  .sm\:list-outside{
    list-style-position: outside;
  }

  .sm\:hover\:list-inside:hover{
    list-style-position: inside;
  }

  .sm\:hover\:list-outside:hover{
    list-style-position: outside;
  }

  .sm\:focus\:list-inside:focus{
    list-style-position: inside;
  }

  .sm\:focus\:list-outside:focus{
    list-style-position: outside;
  }

  .sm\:active\:list-inside:active{
    list-style-position: inside;
  }

  .sm\:active\:list-outside:active{
    list-style-position: outside;
  }

  .sm\:first\:list-inside:first-child{
    list-style-position: inside;
  }

  .sm\:first\:list-outside:first-child{
    list-style-position: outside;
  }

  .sm\:last\:list-inside:last-child{
    list-style-position: inside;
  }

  .sm\:last\:list-outside:last-child{
    list-style-position: outside;
  }

  .sm\:list-none{
    list-style-type: none;
  }

  .sm\:list-disc{
    list-style-type: disc;
  }

  .sm\:list-decimal{
    list-style-type: decimal;
  }

  .sm\:hover\:list-none:hover{
    list-style-type: none;
  }

  .sm\:hover\:list-disc:hover{
    list-style-type: disc;
  }

  .sm\:hover\:list-decimal:hover{
    list-style-type: decimal;
  }

  .sm\:focus\:list-none:focus{
    list-style-type: none;
  }

  .sm\:focus\:list-disc:focus{
    list-style-type: disc;
  }

  .sm\:focus\:list-decimal:focus{
    list-style-type: decimal;
  }

  .sm\:active\:list-none:active{
    list-style-type: none;
  }

  .sm\:active\:list-disc:active{
    list-style-type: disc;
  }

  .sm\:active\:list-decimal:active{
    list-style-type: decimal;
  }

  .sm\:first\:list-none:first-child{
    list-style-type: none;
  }

  .sm\:first\:list-disc:first-child{
    list-style-type: disc;
  }

  .sm\:first\:list-decimal:first-child{
    list-style-type: decimal;
  }

  .sm\:last\:list-none:last-child{
    list-style-type: none;
  }

  .sm\:last\:list-disc:last-child{
    list-style-type: disc;
  }

  .sm\:last\:list-decimal:last-child{
    list-style-type: decimal;
  }

  .sm\:m-0{
    margin: 0;
  }

  .sm\:m-1{
    margin: 0.25rem;
  }

  .sm\:m-2{
    margin: 0.5rem;
  }

  .sm\:m-3{
    margin: 0.75rem;
  }

  .sm\:m-4{
    margin: 1rem;
  }

  .sm\:m-5{
    margin: 1.25rem;
  }

  .sm\:m-6{
    margin: 1.5rem;
  }

  .sm\:m-7{
    margin: 1.75rem;
  }

  .sm\:m-8{
    margin: 2rem;
  }

  .sm\:m-10{
    margin: 2.5rem;
  }

  .sm\:m-12{
    margin: 3rem;
  }

  .sm\:m-14{
    margin: 3.5rem;
  }

  .sm\:m-16{
    margin: 4rem;
  }

  .sm\:m-18{
    margin: 4.5rem;
  }

  .sm\:m-20{
    margin: 5rem;
  }

  .sm\:m-24{
    margin: 6rem;
  }

  .sm\:m-32{
    margin: 8rem;
  }

  .sm\:m-40{
    margin: 10rem;
  }

  .sm\:m-48{
    margin: 12rem;
  }

  .sm\:m-56{
    margin: 14rem;
  }

  .sm\:m-64{
    margin: 16rem;
  }

  .sm\:m-auto{
    margin: auto;
  }

  .sm\:m-px{
    margin: 1px;
  }

  .sm\:-m-1{
    margin: -0.25rem;
  }

  .sm\:-m-2{
    margin: -0.5rem;
  }

  .sm\:-m-3{
    margin: -0.75rem;
  }

  .sm\:-m-4{
    margin: -1rem;
  }

  .sm\:-m-5{
    margin: -1.25rem;
  }

  .sm\:-m-6{
    margin: -1.5rem;
  }

  .sm\:-m-8{
    margin: -2rem;
  }

  .sm\:-m-10{
    margin: -2.5rem;
  }

  .sm\:-m-12{
    margin: -3rem;
  }

  .sm\:-m-14{
    margin: -3.5rem;
  }

  .sm\:-m-16{
    margin: -4rem;
  }

  .sm\:-m-20{
    margin: -5rem;
  }

  .sm\:-m-24{
    margin: -6rem;
  }

  .sm\:-m-32{
    margin: -8rem;
  }

  .sm\:-m-40{
    margin: -10rem;
  }

  .sm\:-m-48{
    margin: -12rem;
  }

  .sm\:-m-56{
    margin: -14rem;
  }

  .sm\:-m-64{
    margin: -16rem;
  }

  .sm\:-m-px{
    margin: -1px;
  }

  .sm\:m-bin{
    margin: -0.313rem;
  }

  .sm\:-m-0\.25{
    margin: -0.0625rem;
  }

  .sm\:m-0\.25{
    margin: 0.0625rem;
  }

  .sm\:m-3\.125{
    margin: 3.125rem;
  }

  .sm\:m-modal{
    margin: 6.25rem;
  }

  .sm\:m-sidebar{
    margin: 25rem;
  }

  .sm\:my-0{
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:my-1{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .sm\:mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .sm\:my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .sm\:mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .sm\:my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .sm\:mx-3{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .sm\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .sm\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .sm\:mx-5{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .sm\:my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm\:mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:my-7{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .sm\:mx-7{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .sm\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:mx-8{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:my-10{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .sm\:mx-10{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .sm\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:mx-12{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:my-14{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .sm\:mx-14{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .sm\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .sm\:mx-16{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .sm\:my-18{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .sm\:mx-18{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .sm\:my-20{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .sm\:mx-20{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .sm\:my-24{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .sm\:mx-24{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .sm\:my-32{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .sm\:mx-32{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .sm\:my-40{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .sm\:mx-40{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .sm\:my-48{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .sm\:mx-48{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .sm\:my-56{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .sm\:mx-56{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .sm\:my-64{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .sm\:mx-64{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .sm\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .sm\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:my-px{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .sm\:mx-px{
    margin-left: 1px;
    margin-right: 1px;
  }

  .sm\:-my-1{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .sm\:-mx-1{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .sm\:-my-2{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .sm\:-mx-2{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .sm\:-my-3{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .sm\:-mx-3{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .sm\:-my-4{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .sm\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .sm\:-my-5{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .sm\:-mx-5{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .sm\:-my-6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .sm\:-mx-6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .sm\:-my-8{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .sm\:-mx-8{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .sm\:-my-10{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .sm\:-mx-10{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .sm\:-my-12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .sm\:-mx-12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .sm\:-my-14{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .sm\:-mx-14{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .sm\:-my-16{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .sm\:-mx-16{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .sm\:-my-20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .sm\:-mx-20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .sm\:-my-24{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .sm\:-mx-24{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .sm\:-my-32{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .sm\:-mx-32{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .sm\:-my-40{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .sm\:-mx-40{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .sm\:-my-48{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .sm\:-mx-48{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .sm\:-my-56{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .sm\:-mx-56{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .sm\:-my-64{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .sm\:-mx-64{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .sm\:-my-px{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .sm\:-mx-px{
    margin-left: -1px;
    margin-right: -1px;
  }

  .sm\:my-bin{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .sm\:mx-bin{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .sm\:-my-0\.25{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .sm\:-mx-0\.25{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .sm\:my-0\.25{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .sm\:mx-0\.25{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .sm\:my-3\.125{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .sm\:mx-3\.125{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .sm\:my-modal{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .sm\:mx-modal{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .sm\:my-sidebar{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .sm\:mx-sidebar{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .sm\:mt-0{
    margin-top: 0;
  }

  .sm\:mr-0{
    margin-right: 0;
  }

  .sm\:mb-0{
    margin-bottom: 0;
  }

  .sm\:ml-0{
    margin-left: 0;
  }

  .sm\:mt-1{
    margin-top: 0.25rem;
  }

  .sm\:mr-1{
    margin-right: 0.25rem;
  }

  .sm\:mb-1{
    margin-bottom: 0.25rem;
  }

  .sm\:ml-1{
    margin-left: 0.25rem;
  }

  .sm\:mt-2{
    margin-top: 0.5rem;
  }

  .sm\:mr-2{
    margin-right: 0.5rem;
  }

  .sm\:mb-2{
    margin-bottom: 0.5rem;
  }

  .sm\:ml-2{
    margin-left: 0.5rem;
  }

  .sm\:mt-3{
    margin-top: 0.75rem;
  }

  .sm\:mr-3{
    margin-right: 0.75rem;
  }

  .sm\:mb-3{
    margin-bottom: 0.75rem;
  }

  .sm\:ml-3{
    margin-left: 0.75rem;
  }

  .sm\:mt-4{
    margin-top: 1rem;
  }

  .sm\:mr-4{
    margin-right: 1rem;
  }

  .sm\:mb-4{
    margin-bottom: 1rem;
  }

  .sm\:ml-4{
    margin-left: 1rem;
  }

  .sm\:mt-5{
    margin-top: 1.25rem;
  }

  .sm\:mr-5{
    margin-right: 1.25rem;
  }

  .sm\:mb-5{
    margin-bottom: 1.25rem;
  }

  .sm\:ml-5{
    margin-left: 1.25rem;
  }

  .sm\:mt-6{
    margin-top: 1.5rem;
  }

  .sm\:mr-6{
    margin-right: 1.5rem;
  }

  .sm\:mb-6{
    margin-bottom: 1.5rem;
  }

  .sm\:ml-6{
    margin-left: 1.5rem;
  }

  .sm\:mt-7{
    margin-top: 1.75rem;
  }

  .sm\:mr-7{
    margin-right: 1.75rem;
  }

  .sm\:mb-7{
    margin-bottom: 1.75rem;
  }

  .sm\:ml-7{
    margin-left: 1.75rem;
  }

  .sm\:mt-8{
    margin-top: 2rem;
  }

  .sm\:mr-8{
    margin-right: 2rem;
  }

  .sm\:mb-8{
    margin-bottom: 2rem;
  }

  .sm\:ml-8{
    margin-left: 2rem;
  }

  .sm\:mt-10{
    margin-top: 2.5rem;
  }

  .sm\:mr-10{
    margin-right: 2.5rem;
  }

  .sm\:mb-10{
    margin-bottom: 2.5rem;
  }

  .sm\:ml-10{
    margin-left: 2.5rem;
  }

  .sm\:mt-12{
    margin-top: 3rem;
  }

  .sm\:mr-12{
    margin-right: 3rem;
  }

  .sm\:mb-12{
    margin-bottom: 3rem;
  }

  .sm\:ml-12{
    margin-left: 3rem;
  }

  .sm\:mt-14{
    margin-top: 3.5rem;
  }

  .sm\:mr-14{
    margin-right: 3.5rem;
  }

  .sm\:mb-14{
    margin-bottom: 3.5rem;
  }

  .sm\:ml-14{
    margin-left: 3.5rem;
  }

  .sm\:mt-16{
    margin-top: 4rem;
  }

  .sm\:mr-16{
    margin-right: 4rem;
  }

  .sm\:mb-16{
    margin-bottom: 4rem;
  }

  .sm\:ml-16{
    margin-left: 4rem;
  }

  .sm\:mt-18{
    margin-top: 4.5rem;
  }

  .sm\:mr-18{
    margin-right: 4.5rem;
  }

  .sm\:mb-18{
    margin-bottom: 4.5rem;
  }

  .sm\:ml-18{
    margin-left: 4.5rem;
  }

  .sm\:mt-20{
    margin-top: 5rem;
  }

  .sm\:mr-20{
    margin-right: 5rem;
  }

  .sm\:mb-20{
    margin-bottom: 5rem;
  }

  .sm\:ml-20{
    margin-left: 5rem;
  }

  .sm\:mt-24{
    margin-top: 6rem;
  }

  .sm\:mr-24{
    margin-right: 6rem;
  }

  .sm\:mb-24{
    margin-bottom: 6rem;
  }

  .sm\:ml-24{
    margin-left: 6rem;
  }

  .sm\:mt-32{
    margin-top: 8rem;
  }

  .sm\:mr-32{
    margin-right: 8rem;
  }

  .sm\:mb-32{
    margin-bottom: 8rem;
  }

  .sm\:ml-32{
    margin-left: 8rem;
  }

  .sm\:mt-40{
    margin-top: 10rem;
  }

  .sm\:mr-40{
    margin-right: 10rem;
  }

  .sm\:mb-40{
    margin-bottom: 10rem;
  }

  .sm\:ml-40{
    margin-left: 10rem;
  }

  .sm\:mt-48{
    margin-top: 12rem;
  }

  .sm\:mr-48{
    margin-right: 12rem;
  }

  .sm\:mb-48{
    margin-bottom: 12rem;
  }

  .sm\:ml-48{
    margin-left: 12rem;
  }

  .sm\:mt-56{
    margin-top: 14rem;
  }

  .sm\:mr-56{
    margin-right: 14rem;
  }

  .sm\:mb-56{
    margin-bottom: 14rem;
  }

  .sm\:ml-56{
    margin-left: 14rem;
  }

  .sm\:mt-64{
    margin-top: 16rem;
  }

  .sm\:mr-64{
    margin-right: 16rem;
  }

  .sm\:mb-64{
    margin-bottom: 16rem;
  }

  .sm\:ml-64{
    margin-left: 16rem;
  }

  .sm\:mt-auto{
    margin-top: auto;
  }

  .sm\:mr-auto{
    margin-right: auto;
  }

  .sm\:mb-auto{
    margin-bottom: auto;
  }

  .sm\:ml-auto{
    margin-left: auto;
  }

  .sm\:mt-px{
    margin-top: 1px;
  }

  .sm\:mr-px{
    margin-right: 1px;
  }

  .sm\:mb-px{
    margin-bottom: 1px;
  }

  .sm\:ml-px{
    margin-left: 1px;
  }

  .sm\:-mt-1{
    margin-top: -0.25rem;
  }

  .sm\:-mr-1{
    margin-right: -0.25rem;
  }

  .sm\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .sm\:-ml-1{
    margin-left: -0.25rem;
  }

  .sm\:-mt-2{
    margin-top: -0.5rem;
  }

  .sm\:-mr-2{
    margin-right: -0.5rem;
  }

  .sm\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .sm\:-ml-2{
    margin-left: -0.5rem;
  }

  .sm\:-mt-3{
    margin-top: -0.75rem;
  }

  .sm\:-mr-3{
    margin-right: -0.75rem;
  }

  .sm\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .sm\:-ml-3{
    margin-left: -0.75rem;
  }

  .sm\:-mt-4{
    margin-top: -1rem;
  }

  .sm\:-mr-4{
    margin-right: -1rem;
  }

  .sm\:-mb-4{
    margin-bottom: -1rem;
  }

  .sm\:-ml-4{
    margin-left: -1rem;
  }

  .sm\:-mt-5{
    margin-top: -1.25rem;
  }

  .sm\:-mr-5{
    margin-right: -1.25rem;
  }

  .sm\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .sm\:-ml-5{
    margin-left: -1.25rem;
  }

  .sm\:-mt-6{
    margin-top: -1.5rem;
  }

  .sm\:-mr-6{
    margin-right: -1.5rem;
  }

  .sm\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .sm\:-ml-6{
    margin-left: -1.5rem;
  }

  .sm\:-mt-8{
    margin-top: -2rem;
  }

  .sm\:-mr-8{
    margin-right: -2rem;
  }

  .sm\:-mb-8{
    margin-bottom: -2rem;
  }

  .sm\:-ml-8{
    margin-left: -2rem;
  }

  .sm\:-mt-10{
    margin-top: -2.5rem;
  }

  .sm\:-mr-10{
    margin-right: -2.5rem;
  }

  .sm\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .sm\:-ml-10{
    margin-left: -2.5rem;
  }

  .sm\:-mt-12{
    margin-top: -3rem;
  }

  .sm\:-mr-12{
    margin-right: -3rem;
  }

  .sm\:-mb-12{
    margin-bottom: -3rem;
  }

  .sm\:-ml-12{
    margin-left: -3rem;
  }

  .sm\:-mt-14{
    margin-top: -3.5rem;
  }

  .sm\:-mr-14{
    margin-right: -3.5rem;
  }

  .sm\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .sm\:-ml-14{
    margin-left: -3.5rem;
  }

  .sm\:-mt-16{
    margin-top: -4rem;
  }

  .sm\:-mr-16{
    margin-right: -4rem;
  }

  .sm\:-mb-16{
    margin-bottom: -4rem;
  }

  .sm\:-ml-16{
    margin-left: -4rem;
  }

  .sm\:-mt-20{
    margin-top: -5rem;
  }

  .sm\:-mr-20{
    margin-right: -5rem;
  }

  .sm\:-mb-20{
    margin-bottom: -5rem;
  }

  .sm\:-ml-20{
    margin-left: -5rem;
  }

  .sm\:-mt-24{
    margin-top: -6rem;
  }

  .sm\:-mr-24{
    margin-right: -6rem;
  }

  .sm\:-mb-24{
    margin-bottom: -6rem;
  }

  .sm\:-ml-24{
    margin-left: -6rem;
  }

  .sm\:-mt-32{
    margin-top: -8rem;
  }

  .sm\:-mr-32{
    margin-right: -8rem;
  }

  .sm\:-mb-32{
    margin-bottom: -8rem;
  }

  .sm\:-ml-32{
    margin-left: -8rem;
  }

  .sm\:-mt-40{
    margin-top: -10rem;
  }

  .sm\:-mr-40{
    margin-right: -10rem;
  }

  .sm\:-mb-40{
    margin-bottom: -10rem;
  }

  .sm\:-ml-40{
    margin-left: -10rem;
  }

  .sm\:-mt-48{
    margin-top: -12rem;
  }

  .sm\:-mr-48{
    margin-right: -12rem;
  }

  .sm\:-mb-48{
    margin-bottom: -12rem;
  }

  .sm\:-ml-48{
    margin-left: -12rem;
  }

  .sm\:-mt-56{
    margin-top: -14rem;
  }

  .sm\:-mr-56{
    margin-right: -14rem;
  }

  .sm\:-mb-56{
    margin-bottom: -14rem;
  }

  .sm\:-ml-56{
    margin-left: -14rem;
  }

  .sm\:-mt-64{
    margin-top: -16rem;
  }

  .sm\:-mr-64{
    margin-right: -16rem;
  }

  .sm\:-mb-64{
    margin-bottom: -16rem;
  }

  .sm\:-ml-64{
    margin-left: -16rem;
  }

  .sm\:-mt-px{
    margin-top: -1px;
  }

  .sm\:-mr-px{
    margin-right: -1px;
  }

  .sm\:-mb-px{
    margin-bottom: -1px;
  }

  .sm\:-ml-px{
    margin-left: -1px;
  }

  .sm\:mt-bin{
    margin-top: -0.313rem;
  }

  .sm\:mr-bin{
    margin-right: -0.313rem;
  }

  .sm\:mb-bin{
    margin-bottom: -0.313rem;
  }

  .sm\:ml-bin{
    margin-left: -0.313rem;
  }

  .sm\:-mt-0\.25{
    margin-top: -0.0625rem;
  }

  .sm\:-mr-0\.25{
    margin-right: -0.0625rem;
  }

  .sm\:-mb-0\.25{
    margin-bottom: -0.0625rem;
  }

  .sm\:-ml-0\.25{
    margin-left: -0.0625rem;
  }

  .sm\:mt-0\.25{
    margin-top: 0.0625rem;
  }

  .sm\:mr-0\.25{
    margin-right: 0.0625rem;
  }

  .sm\:mb-0\.25{
    margin-bottom: 0.0625rem;
  }

  .sm\:ml-0\.25{
    margin-left: 0.0625rem;
  }

  .sm\:mt-3\.125{
    margin-top: 3.125rem;
  }

  .sm\:mr-3\.125{
    margin-right: 3.125rem;
  }

  .sm\:mb-3\.125{
    margin-bottom: 3.125rem;
  }

  .sm\:ml-3\.125{
    margin-left: 3.125rem;
  }

  .sm\:mt-modal{
    margin-top: 6.25rem;
  }

  .sm\:mr-modal{
    margin-right: 6.25rem;
  }

  .sm\:mb-modal{
    margin-bottom: 6.25rem;
  }

  .sm\:ml-modal{
    margin-left: 6.25rem;
  }

  .sm\:mt-sidebar{
    margin-top: 25rem;
  }

  .sm\:mr-sidebar{
    margin-right: 25rem;
  }

  .sm\:mb-sidebar{
    margin-bottom: 25rem;
  }

  .sm\:ml-sidebar{
    margin-left: 25rem;
  }

  .sm\:hover\:m-0:hover{
    margin: 0;
  }

  .sm\:hover\:m-1:hover{
    margin: 0.25rem;
  }

  .sm\:hover\:m-2:hover{
    margin: 0.5rem;
  }

  .sm\:hover\:m-3:hover{
    margin: 0.75rem;
  }

  .sm\:hover\:m-4:hover{
    margin: 1rem;
  }

  .sm\:hover\:m-5:hover{
    margin: 1.25rem;
  }

  .sm\:hover\:m-6:hover{
    margin: 1.5rem;
  }

  .sm\:hover\:m-7:hover{
    margin: 1.75rem;
  }

  .sm\:hover\:m-8:hover{
    margin: 2rem;
  }

  .sm\:hover\:m-10:hover{
    margin: 2.5rem;
  }

  .sm\:hover\:m-12:hover{
    margin: 3rem;
  }

  .sm\:hover\:m-14:hover{
    margin: 3.5rem;
  }

  .sm\:hover\:m-16:hover{
    margin: 4rem;
  }

  .sm\:hover\:m-18:hover{
    margin: 4.5rem;
  }

  .sm\:hover\:m-20:hover{
    margin: 5rem;
  }

  .sm\:hover\:m-24:hover{
    margin: 6rem;
  }

  .sm\:hover\:m-32:hover{
    margin: 8rem;
  }

  .sm\:hover\:m-40:hover{
    margin: 10rem;
  }

  .sm\:hover\:m-48:hover{
    margin: 12rem;
  }

  .sm\:hover\:m-56:hover{
    margin: 14rem;
  }

  .sm\:hover\:m-64:hover{
    margin: 16rem;
  }

  .sm\:hover\:m-auto:hover{
    margin: auto;
  }

  .sm\:hover\:m-px:hover{
    margin: 1px;
  }

  .sm\:hover\:-m-1:hover{
    margin: -0.25rem;
  }

  .sm\:hover\:-m-2:hover{
    margin: -0.5rem;
  }

  .sm\:hover\:-m-3:hover{
    margin: -0.75rem;
  }

  .sm\:hover\:-m-4:hover{
    margin: -1rem;
  }

  .sm\:hover\:-m-5:hover{
    margin: -1.25rem;
  }

  .sm\:hover\:-m-6:hover{
    margin: -1.5rem;
  }

  .sm\:hover\:-m-8:hover{
    margin: -2rem;
  }

  .sm\:hover\:-m-10:hover{
    margin: -2.5rem;
  }

  .sm\:hover\:-m-12:hover{
    margin: -3rem;
  }

  .sm\:hover\:-m-14:hover{
    margin: -3.5rem;
  }

  .sm\:hover\:-m-16:hover{
    margin: -4rem;
  }

  .sm\:hover\:-m-20:hover{
    margin: -5rem;
  }

  .sm\:hover\:-m-24:hover{
    margin: -6rem;
  }

  .sm\:hover\:-m-32:hover{
    margin: -8rem;
  }

  .sm\:hover\:-m-40:hover{
    margin: -10rem;
  }

  .sm\:hover\:-m-48:hover{
    margin: -12rem;
  }

  .sm\:hover\:-m-56:hover{
    margin: -14rem;
  }

  .sm\:hover\:-m-64:hover{
    margin: -16rem;
  }

  .sm\:hover\:-m-px:hover{
    margin: -1px;
  }

  .sm\:hover\:m-bin:hover{
    margin: -0.313rem;
  }

  .sm\:hover\:-m-0\.25:hover{
    margin: -0.0625rem;
  }

  .sm\:hover\:m-0\.25:hover{
    margin: 0.0625rem;
  }

  .sm\:hover\:m-3\.125:hover{
    margin: 3.125rem;
  }

  .sm\:hover\:m-modal:hover{
    margin: 6.25rem;
  }

  .sm\:hover\:m-sidebar:hover{
    margin: 25rem;
  }

  .sm\:hover\:my-0:hover{
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm\:hover\:mx-0:hover{
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:hover\:my-1:hover{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .sm\:hover\:mx-1:hover{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .sm\:hover\:my-2:hover{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .sm\:hover\:mx-2:hover{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .sm\:hover\:my-3:hover{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .sm\:hover\:mx-3:hover{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .sm\:hover\:my-4:hover{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .sm\:hover\:mx-4:hover{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:hover\:my-5:hover{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .sm\:hover\:mx-5:hover{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .sm\:hover\:my-6:hover{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm\:hover\:mx-6:hover{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:hover\:my-7:hover{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .sm\:hover\:mx-7:hover{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .sm\:hover\:my-8:hover{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:hover\:mx-8:hover{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:hover\:my-10:hover{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .sm\:hover\:mx-10:hover{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .sm\:hover\:my-12:hover{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:hover\:mx-12:hover{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:hover\:my-14:hover{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .sm\:hover\:mx-14:hover{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .sm\:hover\:my-16:hover{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .sm\:hover\:mx-16:hover{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .sm\:hover\:my-18:hover{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .sm\:hover\:mx-18:hover{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .sm\:hover\:my-20:hover{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .sm\:hover\:mx-20:hover{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .sm\:hover\:my-24:hover{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .sm\:hover\:mx-24:hover{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .sm\:hover\:my-32:hover{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .sm\:hover\:mx-32:hover{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .sm\:hover\:my-40:hover{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .sm\:hover\:mx-40:hover{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .sm\:hover\:my-48:hover{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .sm\:hover\:mx-48:hover{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .sm\:hover\:my-56:hover{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .sm\:hover\:mx-56:hover{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .sm\:hover\:my-64:hover{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .sm\:hover\:mx-64:hover{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .sm\:hover\:my-auto:hover{
    margin-top: auto;
    margin-bottom: auto;
  }

  .sm\:hover\:mx-auto:hover{
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:hover\:my-px:hover{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .sm\:hover\:mx-px:hover{
    margin-left: 1px;
    margin-right: 1px;
  }

  .sm\:hover\:-my-1:hover{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .sm\:hover\:-mx-1:hover{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .sm\:hover\:-my-2:hover{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .sm\:hover\:-mx-2:hover{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .sm\:hover\:-my-3:hover{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .sm\:hover\:-mx-3:hover{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .sm\:hover\:-my-4:hover{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .sm\:hover\:-mx-4:hover{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .sm\:hover\:-my-5:hover{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .sm\:hover\:-mx-5:hover{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .sm\:hover\:-my-6:hover{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .sm\:hover\:-mx-6:hover{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .sm\:hover\:-my-8:hover{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .sm\:hover\:-mx-8:hover{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .sm\:hover\:-my-10:hover{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .sm\:hover\:-mx-10:hover{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .sm\:hover\:-my-12:hover{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .sm\:hover\:-mx-12:hover{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .sm\:hover\:-my-14:hover{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .sm\:hover\:-mx-14:hover{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .sm\:hover\:-my-16:hover{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .sm\:hover\:-mx-16:hover{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .sm\:hover\:-my-20:hover{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .sm\:hover\:-mx-20:hover{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .sm\:hover\:-my-24:hover{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .sm\:hover\:-mx-24:hover{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .sm\:hover\:-my-32:hover{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .sm\:hover\:-mx-32:hover{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .sm\:hover\:-my-40:hover{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .sm\:hover\:-mx-40:hover{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .sm\:hover\:-my-48:hover{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .sm\:hover\:-mx-48:hover{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .sm\:hover\:-my-56:hover{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .sm\:hover\:-mx-56:hover{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .sm\:hover\:-my-64:hover{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .sm\:hover\:-mx-64:hover{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .sm\:hover\:-my-px:hover{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .sm\:hover\:-mx-px:hover{
    margin-left: -1px;
    margin-right: -1px;
  }

  .sm\:hover\:my-bin:hover{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .sm\:hover\:mx-bin:hover{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .sm\:hover\:-my-0\.25:hover{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .sm\:hover\:-mx-0\.25:hover{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .sm\:hover\:my-0\.25:hover{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .sm\:hover\:mx-0\.25:hover{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .sm\:hover\:my-3\.125:hover{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .sm\:hover\:mx-3\.125:hover{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .sm\:hover\:my-modal:hover{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .sm\:hover\:mx-modal:hover{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .sm\:hover\:my-sidebar:hover{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .sm\:hover\:mx-sidebar:hover{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .sm\:hover\:mt-0:hover{
    margin-top: 0;
  }

  .sm\:hover\:mr-0:hover{
    margin-right: 0;
  }

  .sm\:hover\:mb-0:hover{
    margin-bottom: 0;
  }

  .sm\:hover\:ml-0:hover{
    margin-left: 0;
  }

  .sm\:hover\:mt-1:hover{
    margin-top: 0.25rem;
  }

  .sm\:hover\:mr-1:hover{
    margin-right: 0.25rem;
  }

  .sm\:hover\:mb-1:hover{
    margin-bottom: 0.25rem;
  }

  .sm\:hover\:ml-1:hover{
    margin-left: 0.25rem;
  }

  .sm\:hover\:mt-2:hover{
    margin-top: 0.5rem;
  }

  .sm\:hover\:mr-2:hover{
    margin-right: 0.5rem;
  }

  .sm\:hover\:mb-2:hover{
    margin-bottom: 0.5rem;
  }

  .sm\:hover\:ml-2:hover{
    margin-left: 0.5rem;
  }

  .sm\:hover\:mt-3:hover{
    margin-top: 0.75rem;
  }

  .sm\:hover\:mr-3:hover{
    margin-right: 0.75rem;
  }

  .sm\:hover\:mb-3:hover{
    margin-bottom: 0.75rem;
  }

  .sm\:hover\:ml-3:hover{
    margin-left: 0.75rem;
  }

  .sm\:hover\:mt-4:hover{
    margin-top: 1rem;
  }

  .sm\:hover\:mr-4:hover{
    margin-right: 1rem;
  }

  .sm\:hover\:mb-4:hover{
    margin-bottom: 1rem;
  }

  .sm\:hover\:ml-4:hover{
    margin-left: 1rem;
  }

  .sm\:hover\:mt-5:hover{
    margin-top: 1.25rem;
  }

  .sm\:hover\:mr-5:hover{
    margin-right: 1.25rem;
  }

  .sm\:hover\:mb-5:hover{
    margin-bottom: 1.25rem;
  }

  .sm\:hover\:ml-5:hover{
    margin-left: 1.25rem;
  }

  .sm\:hover\:mt-6:hover{
    margin-top: 1.5rem;
  }

  .sm\:hover\:mr-6:hover{
    margin-right: 1.5rem;
  }

  .sm\:hover\:mb-6:hover{
    margin-bottom: 1.5rem;
  }

  .sm\:hover\:ml-6:hover{
    margin-left: 1.5rem;
  }

  .sm\:hover\:mt-7:hover{
    margin-top: 1.75rem;
  }

  .sm\:hover\:mr-7:hover{
    margin-right: 1.75rem;
  }

  .sm\:hover\:mb-7:hover{
    margin-bottom: 1.75rem;
  }

  .sm\:hover\:ml-7:hover{
    margin-left: 1.75rem;
  }

  .sm\:hover\:mt-8:hover{
    margin-top: 2rem;
  }

  .sm\:hover\:mr-8:hover{
    margin-right: 2rem;
  }

  .sm\:hover\:mb-8:hover{
    margin-bottom: 2rem;
  }

  .sm\:hover\:ml-8:hover{
    margin-left: 2rem;
  }

  .sm\:hover\:mt-10:hover{
    margin-top: 2.5rem;
  }

  .sm\:hover\:mr-10:hover{
    margin-right: 2.5rem;
  }

  .sm\:hover\:mb-10:hover{
    margin-bottom: 2.5rem;
  }

  .sm\:hover\:ml-10:hover{
    margin-left: 2.5rem;
  }

  .sm\:hover\:mt-12:hover{
    margin-top: 3rem;
  }

  .sm\:hover\:mr-12:hover{
    margin-right: 3rem;
  }

  .sm\:hover\:mb-12:hover{
    margin-bottom: 3rem;
  }

  .sm\:hover\:ml-12:hover{
    margin-left: 3rem;
  }

  .sm\:hover\:mt-14:hover{
    margin-top: 3.5rem;
  }

  .sm\:hover\:mr-14:hover{
    margin-right: 3.5rem;
  }

  .sm\:hover\:mb-14:hover{
    margin-bottom: 3.5rem;
  }

  .sm\:hover\:ml-14:hover{
    margin-left: 3.5rem;
  }

  .sm\:hover\:mt-16:hover{
    margin-top: 4rem;
  }

  .sm\:hover\:mr-16:hover{
    margin-right: 4rem;
  }

  .sm\:hover\:mb-16:hover{
    margin-bottom: 4rem;
  }

  .sm\:hover\:ml-16:hover{
    margin-left: 4rem;
  }

  .sm\:hover\:mt-18:hover{
    margin-top: 4.5rem;
  }

  .sm\:hover\:mr-18:hover{
    margin-right: 4.5rem;
  }

  .sm\:hover\:mb-18:hover{
    margin-bottom: 4.5rem;
  }

  .sm\:hover\:ml-18:hover{
    margin-left: 4.5rem;
  }

  .sm\:hover\:mt-20:hover{
    margin-top: 5rem;
  }

  .sm\:hover\:mr-20:hover{
    margin-right: 5rem;
  }

  .sm\:hover\:mb-20:hover{
    margin-bottom: 5rem;
  }

  .sm\:hover\:ml-20:hover{
    margin-left: 5rem;
  }

  .sm\:hover\:mt-24:hover{
    margin-top: 6rem;
  }

  .sm\:hover\:mr-24:hover{
    margin-right: 6rem;
  }

  .sm\:hover\:mb-24:hover{
    margin-bottom: 6rem;
  }

  .sm\:hover\:ml-24:hover{
    margin-left: 6rem;
  }

  .sm\:hover\:mt-32:hover{
    margin-top: 8rem;
  }

  .sm\:hover\:mr-32:hover{
    margin-right: 8rem;
  }

  .sm\:hover\:mb-32:hover{
    margin-bottom: 8rem;
  }

  .sm\:hover\:ml-32:hover{
    margin-left: 8rem;
  }

  .sm\:hover\:mt-40:hover{
    margin-top: 10rem;
  }

  .sm\:hover\:mr-40:hover{
    margin-right: 10rem;
  }

  .sm\:hover\:mb-40:hover{
    margin-bottom: 10rem;
  }

  .sm\:hover\:ml-40:hover{
    margin-left: 10rem;
  }

  .sm\:hover\:mt-48:hover{
    margin-top: 12rem;
  }

  .sm\:hover\:mr-48:hover{
    margin-right: 12rem;
  }

  .sm\:hover\:mb-48:hover{
    margin-bottom: 12rem;
  }

  .sm\:hover\:ml-48:hover{
    margin-left: 12rem;
  }

  .sm\:hover\:mt-56:hover{
    margin-top: 14rem;
  }

  .sm\:hover\:mr-56:hover{
    margin-right: 14rem;
  }

  .sm\:hover\:mb-56:hover{
    margin-bottom: 14rem;
  }

  .sm\:hover\:ml-56:hover{
    margin-left: 14rem;
  }

  .sm\:hover\:mt-64:hover{
    margin-top: 16rem;
  }

  .sm\:hover\:mr-64:hover{
    margin-right: 16rem;
  }

  .sm\:hover\:mb-64:hover{
    margin-bottom: 16rem;
  }

  .sm\:hover\:ml-64:hover{
    margin-left: 16rem;
  }

  .sm\:hover\:mt-auto:hover{
    margin-top: auto;
  }

  .sm\:hover\:mr-auto:hover{
    margin-right: auto;
  }

  .sm\:hover\:mb-auto:hover{
    margin-bottom: auto;
  }

  .sm\:hover\:ml-auto:hover{
    margin-left: auto;
  }

  .sm\:hover\:mt-px:hover{
    margin-top: 1px;
  }

  .sm\:hover\:mr-px:hover{
    margin-right: 1px;
  }

  .sm\:hover\:mb-px:hover{
    margin-bottom: 1px;
  }

  .sm\:hover\:ml-px:hover{
    margin-left: 1px;
  }

  .sm\:hover\:-mt-1:hover{
    margin-top: -0.25rem;
  }

  .sm\:hover\:-mr-1:hover{
    margin-right: -0.25rem;
  }

  .sm\:hover\:-mb-1:hover{
    margin-bottom: -0.25rem;
  }

  .sm\:hover\:-ml-1:hover{
    margin-left: -0.25rem;
  }

  .sm\:hover\:-mt-2:hover{
    margin-top: -0.5rem;
  }

  .sm\:hover\:-mr-2:hover{
    margin-right: -0.5rem;
  }

  .sm\:hover\:-mb-2:hover{
    margin-bottom: -0.5rem;
  }

  .sm\:hover\:-ml-2:hover{
    margin-left: -0.5rem;
  }

  .sm\:hover\:-mt-3:hover{
    margin-top: -0.75rem;
  }

  .sm\:hover\:-mr-3:hover{
    margin-right: -0.75rem;
  }

  .sm\:hover\:-mb-3:hover{
    margin-bottom: -0.75rem;
  }

  .sm\:hover\:-ml-3:hover{
    margin-left: -0.75rem;
  }

  .sm\:hover\:-mt-4:hover{
    margin-top: -1rem;
  }

  .sm\:hover\:-mr-4:hover{
    margin-right: -1rem;
  }

  .sm\:hover\:-mb-4:hover{
    margin-bottom: -1rem;
  }

  .sm\:hover\:-ml-4:hover{
    margin-left: -1rem;
  }

  .sm\:hover\:-mt-5:hover{
    margin-top: -1.25rem;
  }

  .sm\:hover\:-mr-5:hover{
    margin-right: -1.25rem;
  }

  .sm\:hover\:-mb-5:hover{
    margin-bottom: -1.25rem;
  }

  .sm\:hover\:-ml-5:hover{
    margin-left: -1.25rem;
  }

  .sm\:hover\:-mt-6:hover{
    margin-top: -1.5rem;
  }

  .sm\:hover\:-mr-6:hover{
    margin-right: -1.5rem;
  }

  .sm\:hover\:-mb-6:hover{
    margin-bottom: -1.5rem;
  }

  .sm\:hover\:-ml-6:hover{
    margin-left: -1.5rem;
  }

  .sm\:hover\:-mt-8:hover{
    margin-top: -2rem;
  }

  .sm\:hover\:-mr-8:hover{
    margin-right: -2rem;
  }

  .sm\:hover\:-mb-8:hover{
    margin-bottom: -2rem;
  }

  .sm\:hover\:-ml-8:hover{
    margin-left: -2rem;
  }

  .sm\:hover\:-mt-10:hover{
    margin-top: -2.5rem;
  }

  .sm\:hover\:-mr-10:hover{
    margin-right: -2.5rem;
  }

  .sm\:hover\:-mb-10:hover{
    margin-bottom: -2.5rem;
  }

  .sm\:hover\:-ml-10:hover{
    margin-left: -2.5rem;
  }

  .sm\:hover\:-mt-12:hover{
    margin-top: -3rem;
  }

  .sm\:hover\:-mr-12:hover{
    margin-right: -3rem;
  }

  .sm\:hover\:-mb-12:hover{
    margin-bottom: -3rem;
  }

  .sm\:hover\:-ml-12:hover{
    margin-left: -3rem;
  }

  .sm\:hover\:-mt-14:hover{
    margin-top: -3.5rem;
  }

  .sm\:hover\:-mr-14:hover{
    margin-right: -3.5rem;
  }

  .sm\:hover\:-mb-14:hover{
    margin-bottom: -3.5rem;
  }

  .sm\:hover\:-ml-14:hover{
    margin-left: -3.5rem;
  }

  .sm\:hover\:-mt-16:hover{
    margin-top: -4rem;
  }

  .sm\:hover\:-mr-16:hover{
    margin-right: -4rem;
  }

  .sm\:hover\:-mb-16:hover{
    margin-bottom: -4rem;
  }

  .sm\:hover\:-ml-16:hover{
    margin-left: -4rem;
  }

  .sm\:hover\:-mt-20:hover{
    margin-top: -5rem;
  }

  .sm\:hover\:-mr-20:hover{
    margin-right: -5rem;
  }

  .sm\:hover\:-mb-20:hover{
    margin-bottom: -5rem;
  }

  .sm\:hover\:-ml-20:hover{
    margin-left: -5rem;
  }

  .sm\:hover\:-mt-24:hover{
    margin-top: -6rem;
  }

  .sm\:hover\:-mr-24:hover{
    margin-right: -6rem;
  }

  .sm\:hover\:-mb-24:hover{
    margin-bottom: -6rem;
  }

  .sm\:hover\:-ml-24:hover{
    margin-left: -6rem;
  }

  .sm\:hover\:-mt-32:hover{
    margin-top: -8rem;
  }

  .sm\:hover\:-mr-32:hover{
    margin-right: -8rem;
  }

  .sm\:hover\:-mb-32:hover{
    margin-bottom: -8rem;
  }

  .sm\:hover\:-ml-32:hover{
    margin-left: -8rem;
  }

  .sm\:hover\:-mt-40:hover{
    margin-top: -10rem;
  }

  .sm\:hover\:-mr-40:hover{
    margin-right: -10rem;
  }

  .sm\:hover\:-mb-40:hover{
    margin-bottom: -10rem;
  }

  .sm\:hover\:-ml-40:hover{
    margin-left: -10rem;
  }

  .sm\:hover\:-mt-48:hover{
    margin-top: -12rem;
  }

  .sm\:hover\:-mr-48:hover{
    margin-right: -12rem;
  }

  .sm\:hover\:-mb-48:hover{
    margin-bottom: -12rem;
  }

  .sm\:hover\:-ml-48:hover{
    margin-left: -12rem;
  }

  .sm\:hover\:-mt-56:hover{
    margin-top: -14rem;
  }

  .sm\:hover\:-mr-56:hover{
    margin-right: -14rem;
  }

  .sm\:hover\:-mb-56:hover{
    margin-bottom: -14rem;
  }

  .sm\:hover\:-ml-56:hover{
    margin-left: -14rem;
  }

  .sm\:hover\:-mt-64:hover{
    margin-top: -16rem;
  }

  .sm\:hover\:-mr-64:hover{
    margin-right: -16rem;
  }

  .sm\:hover\:-mb-64:hover{
    margin-bottom: -16rem;
  }

  .sm\:hover\:-ml-64:hover{
    margin-left: -16rem;
  }

  .sm\:hover\:-mt-px:hover{
    margin-top: -1px;
  }

  .sm\:hover\:-mr-px:hover{
    margin-right: -1px;
  }

  .sm\:hover\:-mb-px:hover{
    margin-bottom: -1px;
  }

  .sm\:hover\:-ml-px:hover{
    margin-left: -1px;
  }

  .sm\:hover\:mt-bin:hover{
    margin-top: -0.313rem;
  }

  .sm\:hover\:mr-bin:hover{
    margin-right: -0.313rem;
  }

  .sm\:hover\:mb-bin:hover{
    margin-bottom: -0.313rem;
  }

  .sm\:hover\:ml-bin:hover{
    margin-left: -0.313rem;
  }

  .sm\:hover\:-mt-0\.25:hover{
    margin-top: -0.0625rem;
  }

  .sm\:hover\:-mr-0\.25:hover{
    margin-right: -0.0625rem;
  }

  .sm\:hover\:-mb-0\.25:hover{
    margin-bottom: -0.0625rem;
  }

  .sm\:hover\:-ml-0\.25:hover{
    margin-left: -0.0625rem;
  }

  .sm\:hover\:mt-0\.25:hover{
    margin-top: 0.0625rem;
  }

  .sm\:hover\:mr-0\.25:hover{
    margin-right: 0.0625rem;
  }

  .sm\:hover\:mb-0\.25:hover{
    margin-bottom: 0.0625rem;
  }

  .sm\:hover\:ml-0\.25:hover{
    margin-left: 0.0625rem;
  }

  .sm\:hover\:mt-3\.125:hover{
    margin-top: 3.125rem;
  }

  .sm\:hover\:mr-3\.125:hover{
    margin-right: 3.125rem;
  }

  .sm\:hover\:mb-3\.125:hover{
    margin-bottom: 3.125rem;
  }

  .sm\:hover\:ml-3\.125:hover{
    margin-left: 3.125rem;
  }

  .sm\:hover\:mt-modal:hover{
    margin-top: 6.25rem;
  }

  .sm\:hover\:mr-modal:hover{
    margin-right: 6.25rem;
  }

  .sm\:hover\:mb-modal:hover{
    margin-bottom: 6.25rem;
  }

  .sm\:hover\:ml-modal:hover{
    margin-left: 6.25rem;
  }

  .sm\:hover\:mt-sidebar:hover{
    margin-top: 25rem;
  }

  .sm\:hover\:mr-sidebar:hover{
    margin-right: 25rem;
  }

  .sm\:hover\:mb-sidebar:hover{
    margin-bottom: 25rem;
  }

  .sm\:hover\:ml-sidebar:hover{
    margin-left: 25rem;
  }

  .sm\:focus\:m-0:focus{
    margin: 0;
  }

  .sm\:focus\:m-1:focus{
    margin: 0.25rem;
  }

  .sm\:focus\:m-2:focus{
    margin: 0.5rem;
  }

  .sm\:focus\:m-3:focus{
    margin: 0.75rem;
  }

  .sm\:focus\:m-4:focus{
    margin: 1rem;
  }

  .sm\:focus\:m-5:focus{
    margin: 1.25rem;
  }

  .sm\:focus\:m-6:focus{
    margin: 1.5rem;
  }

  .sm\:focus\:m-7:focus{
    margin: 1.75rem;
  }

  .sm\:focus\:m-8:focus{
    margin: 2rem;
  }

  .sm\:focus\:m-10:focus{
    margin: 2.5rem;
  }

  .sm\:focus\:m-12:focus{
    margin: 3rem;
  }

  .sm\:focus\:m-14:focus{
    margin: 3.5rem;
  }

  .sm\:focus\:m-16:focus{
    margin: 4rem;
  }

  .sm\:focus\:m-18:focus{
    margin: 4.5rem;
  }

  .sm\:focus\:m-20:focus{
    margin: 5rem;
  }

  .sm\:focus\:m-24:focus{
    margin: 6rem;
  }

  .sm\:focus\:m-32:focus{
    margin: 8rem;
  }

  .sm\:focus\:m-40:focus{
    margin: 10rem;
  }

  .sm\:focus\:m-48:focus{
    margin: 12rem;
  }

  .sm\:focus\:m-56:focus{
    margin: 14rem;
  }

  .sm\:focus\:m-64:focus{
    margin: 16rem;
  }

  .sm\:focus\:m-auto:focus{
    margin: auto;
  }

  .sm\:focus\:m-px:focus{
    margin: 1px;
  }

  .sm\:focus\:-m-1:focus{
    margin: -0.25rem;
  }

  .sm\:focus\:-m-2:focus{
    margin: -0.5rem;
  }

  .sm\:focus\:-m-3:focus{
    margin: -0.75rem;
  }

  .sm\:focus\:-m-4:focus{
    margin: -1rem;
  }

  .sm\:focus\:-m-5:focus{
    margin: -1.25rem;
  }

  .sm\:focus\:-m-6:focus{
    margin: -1.5rem;
  }

  .sm\:focus\:-m-8:focus{
    margin: -2rem;
  }

  .sm\:focus\:-m-10:focus{
    margin: -2.5rem;
  }

  .sm\:focus\:-m-12:focus{
    margin: -3rem;
  }

  .sm\:focus\:-m-14:focus{
    margin: -3.5rem;
  }

  .sm\:focus\:-m-16:focus{
    margin: -4rem;
  }

  .sm\:focus\:-m-20:focus{
    margin: -5rem;
  }

  .sm\:focus\:-m-24:focus{
    margin: -6rem;
  }

  .sm\:focus\:-m-32:focus{
    margin: -8rem;
  }

  .sm\:focus\:-m-40:focus{
    margin: -10rem;
  }

  .sm\:focus\:-m-48:focus{
    margin: -12rem;
  }

  .sm\:focus\:-m-56:focus{
    margin: -14rem;
  }

  .sm\:focus\:-m-64:focus{
    margin: -16rem;
  }

  .sm\:focus\:-m-px:focus{
    margin: -1px;
  }

  .sm\:focus\:m-bin:focus{
    margin: -0.313rem;
  }

  .sm\:focus\:-m-0\.25:focus{
    margin: -0.0625rem;
  }

  .sm\:focus\:m-0\.25:focus{
    margin: 0.0625rem;
  }

  .sm\:focus\:m-3\.125:focus{
    margin: 3.125rem;
  }

  .sm\:focus\:m-modal:focus{
    margin: 6.25rem;
  }

  .sm\:focus\:m-sidebar:focus{
    margin: 25rem;
  }

  .sm\:focus\:my-0:focus{
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm\:focus\:mx-0:focus{
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:focus\:my-1:focus{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .sm\:focus\:mx-1:focus{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .sm\:focus\:my-2:focus{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .sm\:focus\:mx-2:focus{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .sm\:focus\:my-3:focus{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .sm\:focus\:mx-3:focus{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .sm\:focus\:my-4:focus{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .sm\:focus\:mx-4:focus{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:focus\:my-5:focus{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .sm\:focus\:mx-5:focus{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .sm\:focus\:my-6:focus{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm\:focus\:mx-6:focus{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:focus\:my-7:focus{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .sm\:focus\:mx-7:focus{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .sm\:focus\:my-8:focus{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:focus\:mx-8:focus{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:focus\:my-10:focus{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .sm\:focus\:mx-10:focus{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .sm\:focus\:my-12:focus{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:focus\:mx-12:focus{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:focus\:my-14:focus{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .sm\:focus\:mx-14:focus{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .sm\:focus\:my-16:focus{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .sm\:focus\:mx-16:focus{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .sm\:focus\:my-18:focus{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .sm\:focus\:mx-18:focus{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .sm\:focus\:my-20:focus{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .sm\:focus\:mx-20:focus{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .sm\:focus\:my-24:focus{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .sm\:focus\:mx-24:focus{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .sm\:focus\:my-32:focus{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .sm\:focus\:mx-32:focus{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .sm\:focus\:my-40:focus{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .sm\:focus\:mx-40:focus{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .sm\:focus\:my-48:focus{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .sm\:focus\:mx-48:focus{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .sm\:focus\:my-56:focus{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .sm\:focus\:mx-56:focus{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .sm\:focus\:my-64:focus{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .sm\:focus\:mx-64:focus{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .sm\:focus\:my-auto:focus{
    margin-top: auto;
    margin-bottom: auto;
  }

  .sm\:focus\:mx-auto:focus{
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:focus\:my-px:focus{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .sm\:focus\:mx-px:focus{
    margin-left: 1px;
    margin-right: 1px;
  }

  .sm\:focus\:-my-1:focus{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .sm\:focus\:-mx-1:focus{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .sm\:focus\:-my-2:focus{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .sm\:focus\:-mx-2:focus{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .sm\:focus\:-my-3:focus{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .sm\:focus\:-mx-3:focus{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .sm\:focus\:-my-4:focus{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .sm\:focus\:-mx-4:focus{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .sm\:focus\:-my-5:focus{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .sm\:focus\:-mx-5:focus{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .sm\:focus\:-my-6:focus{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .sm\:focus\:-mx-6:focus{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .sm\:focus\:-my-8:focus{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .sm\:focus\:-mx-8:focus{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .sm\:focus\:-my-10:focus{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .sm\:focus\:-mx-10:focus{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .sm\:focus\:-my-12:focus{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .sm\:focus\:-mx-12:focus{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .sm\:focus\:-my-14:focus{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .sm\:focus\:-mx-14:focus{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .sm\:focus\:-my-16:focus{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .sm\:focus\:-mx-16:focus{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .sm\:focus\:-my-20:focus{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .sm\:focus\:-mx-20:focus{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .sm\:focus\:-my-24:focus{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .sm\:focus\:-mx-24:focus{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .sm\:focus\:-my-32:focus{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .sm\:focus\:-mx-32:focus{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .sm\:focus\:-my-40:focus{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .sm\:focus\:-mx-40:focus{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .sm\:focus\:-my-48:focus{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .sm\:focus\:-mx-48:focus{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .sm\:focus\:-my-56:focus{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .sm\:focus\:-mx-56:focus{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .sm\:focus\:-my-64:focus{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .sm\:focus\:-mx-64:focus{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .sm\:focus\:-my-px:focus{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .sm\:focus\:-mx-px:focus{
    margin-left: -1px;
    margin-right: -1px;
  }

  .sm\:focus\:my-bin:focus{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .sm\:focus\:mx-bin:focus{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .sm\:focus\:-my-0\.25:focus{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .sm\:focus\:-mx-0\.25:focus{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .sm\:focus\:my-0\.25:focus{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .sm\:focus\:mx-0\.25:focus{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .sm\:focus\:my-3\.125:focus{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .sm\:focus\:mx-3\.125:focus{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .sm\:focus\:my-modal:focus{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .sm\:focus\:mx-modal:focus{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .sm\:focus\:my-sidebar:focus{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .sm\:focus\:mx-sidebar:focus{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .sm\:focus\:mt-0:focus{
    margin-top: 0;
  }

  .sm\:focus\:mr-0:focus{
    margin-right: 0;
  }

  .sm\:focus\:mb-0:focus{
    margin-bottom: 0;
  }

  .sm\:focus\:ml-0:focus{
    margin-left: 0;
  }

  .sm\:focus\:mt-1:focus{
    margin-top: 0.25rem;
  }

  .sm\:focus\:mr-1:focus{
    margin-right: 0.25rem;
  }

  .sm\:focus\:mb-1:focus{
    margin-bottom: 0.25rem;
  }

  .sm\:focus\:ml-1:focus{
    margin-left: 0.25rem;
  }

  .sm\:focus\:mt-2:focus{
    margin-top: 0.5rem;
  }

  .sm\:focus\:mr-2:focus{
    margin-right: 0.5rem;
  }

  .sm\:focus\:mb-2:focus{
    margin-bottom: 0.5rem;
  }

  .sm\:focus\:ml-2:focus{
    margin-left: 0.5rem;
  }

  .sm\:focus\:mt-3:focus{
    margin-top: 0.75rem;
  }

  .sm\:focus\:mr-3:focus{
    margin-right: 0.75rem;
  }

  .sm\:focus\:mb-3:focus{
    margin-bottom: 0.75rem;
  }

  .sm\:focus\:ml-3:focus{
    margin-left: 0.75rem;
  }

  .sm\:focus\:mt-4:focus{
    margin-top: 1rem;
  }

  .sm\:focus\:mr-4:focus{
    margin-right: 1rem;
  }

  .sm\:focus\:mb-4:focus{
    margin-bottom: 1rem;
  }

  .sm\:focus\:ml-4:focus{
    margin-left: 1rem;
  }

  .sm\:focus\:mt-5:focus{
    margin-top: 1.25rem;
  }

  .sm\:focus\:mr-5:focus{
    margin-right: 1.25rem;
  }

  .sm\:focus\:mb-5:focus{
    margin-bottom: 1.25rem;
  }

  .sm\:focus\:ml-5:focus{
    margin-left: 1.25rem;
  }

  .sm\:focus\:mt-6:focus{
    margin-top: 1.5rem;
  }

  .sm\:focus\:mr-6:focus{
    margin-right: 1.5rem;
  }

  .sm\:focus\:mb-6:focus{
    margin-bottom: 1.5rem;
  }

  .sm\:focus\:ml-6:focus{
    margin-left: 1.5rem;
  }

  .sm\:focus\:mt-7:focus{
    margin-top: 1.75rem;
  }

  .sm\:focus\:mr-7:focus{
    margin-right: 1.75rem;
  }

  .sm\:focus\:mb-7:focus{
    margin-bottom: 1.75rem;
  }

  .sm\:focus\:ml-7:focus{
    margin-left: 1.75rem;
  }

  .sm\:focus\:mt-8:focus{
    margin-top: 2rem;
  }

  .sm\:focus\:mr-8:focus{
    margin-right: 2rem;
  }

  .sm\:focus\:mb-8:focus{
    margin-bottom: 2rem;
  }

  .sm\:focus\:ml-8:focus{
    margin-left: 2rem;
  }

  .sm\:focus\:mt-10:focus{
    margin-top: 2.5rem;
  }

  .sm\:focus\:mr-10:focus{
    margin-right: 2.5rem;
  }

  .sm\:focus\:mb-10:focus{
    margin-bottom: 2.5rem;
  }

  .sm\:focus\:ml-10:focus{
    margin-left: 2.5rem;
  }

  .sm\:focus\:mt-12:focus{
    margin-top: 3rem;
  }

  .sm\:focus\:mr-12:focus{
    margin-right: 3rem;
  }

  .sm\:focus\:mb-12:focus{
    margin-bottom: 3rem;
  }

  .sm\:focus\:ml-12:focus{
    margin-left: 3rem;
  }

  .sm\:focus\:mt-14:focus{
    margin-top: 3.5rem;
  }

  .sm\:focus\:mr-14:focus{
    margin-right: 3.5rem;
  }

  .sm\:focus\:mb-14:focus{
    margin-bottom: 3.5rem;
  }

  .sm\:focus\:ml-14:focus{
    margin-left: 3.5rem;
  }

  .sm\:focus\:mt-16:focus{
    margin-top: 4rem;
  }

  .sm\:focus\:mr-16:focus{
    margin-right: 4rem;
  }

  .sm\:focus\:mb-16:focus{
    margin-bottom: 4rem;
  }

  .sm\:focus\:ml-16:focus{
    margin-left: 4rem;
  }

  .sm\:focus\:mt-18:focus{
    margin-top: 4.5rem;
  }

  .sm\:focus\:mr-18:focus{
    margin-right: 4.5rem;
  }

  .sm\:focus\:mb-18:focus{
    margin-bottom: 4.5rem;
  }

  .sm\:focus\:ml-18:focus{
    margin-left: 4.5rem;
  }

  .sm\:focus\:mt-20:focus{
    margin-top: 5rem;
  }

  .sm\:focus\:mr-20:focus{
    margin-right: 5rem;
  }

  .sm\:focus\:mb-20:focus{
    margin-bottom: 5rem;
  }

  .sm\:focus\:ml-20:focus{
    margin-left: 5rem;
  }

  .sm\:focus\:mt-24:focus{
    margin-top: 6rem;
  }

  .sm\:focus\:mr-24:focus{
    margin-right: 6rem;
  }

  .sm\:focus\:mb-24:focus{
    margin-bottom: 6rem;
  }

  .sm\:focus\:ml-24:focus{
    margin-left: 6rem;
  }

  .sm\:focus\:mt-32:focus{
    margin-top: 8rem;
  }

  .sm\:focus\:mr-32:focus{
    margin-right: 8rem;
  }

  .sm\:focus\:mb-32:focus{
    margin-bottom: 8rem;
  }

  .sm\:focus\:ml-32:focus{
    margin-left: 8rem;
  }

  .sm\:focus\:mt-40:focus{
    margin-top: 10rem;
  }

  .sm\:focus\:mr-40:focus{
    margin-right: 10rem;
  }

  .sm\:focus\:mb-40:focus{
    margin-bottom: 10rem;
  }

  .sm\:focus\:ml-40:focus{
    margin-left: 10rem;
  }

  .sm\:focus\:mt-48:focus{
    margin-top: 12rem;
  }

  .sm\:focus\:mr-48:focus{
    margin-right: 12rem;
  }

  .sm\:focus\:mb-48:focus{
    margin-bottom: 12rem;
  }

  .sm\:focus\:ml-48:focus{
    margin-left: 12rem;
  }

  .sm\:focus\:mt-56:focus{
    margin-top: 14rem;
  }

  .sm\:focus\:mr-56:focus{
    margin-right: 14rem;
  }

  .sm\:focus\:mb-56:focus{
    margin-bottom: 14rem;
  }

  .sm\:focus\:ml-56:focus{
    margin-left: 14rem;
  }

  .sm\:focus\:mt-64:focus{
    margin-top: 16rem;
  }

  .sm\:focus\:mr-64:focus{
    margin-right: 16rem;
  }

  .sm\:focus\:mb-64:focus{
    margin-bottom: 16rem;
  }

  .sm\:focus\:ml-64:focus{
    margin-left: 16rem;
  }

  .sm\:focus\:mt-auto:focus{
    margin-top: auto;
  }

  .sm\:focus\:mr-auto:focus{
    margin-right: auto;
  }

  .sm\:focus\:mb-auto:focus{
    margin-bottom: auto;
  }

  .sm\:focus\:ml-auto:focus{
    margin-left: auto;
  }

  .sm\:focus\:mt-px:focus{
    margin-top: 1px;
  }

  .sm\:focus\:mr-px:focus{
    margin-right: 1px;
  }

  .sm\:focus\:mb-px:focus{
    margin-bottom: 1px;
  }

  .sm\:focus\:ml-px:focus{
    margin-left: 1px;
  }

  .sm\:focus\:-mt-1:focus{
    margin-top: -0.25rem;
  }

  .sm\:focus\:-mr-1:focus{
    margin-right: -0.25rem;
  }

  .sm\:focus\:-mb-1:focus{
    margin-bottom: -0.25rem;
  }

  .sm\:focus\:-ml-1:focus{
    margin-left: -0.25rem;
  }

  .sm\:focus\:-mt-2:focus{
    margin-top: -0.5rem;
  }

  .sm\:focus\:-mr-2:focus{
    margin-right: -0.5rem;
  }

  .sm\:focus\:-mb-2:focus{
    margin-bottom: -0.5rem;
  }

  .sm\:focus\:-ml-2:focus{
    margin-left: -0.5rem;
  }

  .sm\:focus\:-mt-3:focus{
    margin-top: -0.75rem;
  }

  .sm\:focus\:-mr-3:focus{
    margin-right: -0.75rem;
  }

  .sm\:focus\:-mb-3:focus{
    margin-bottom: -0.75rem;
  }

  .sm\:focus\:-ml-3:focus{
    margin-left: -0.75rem;
  }

  .sm\:focus\:-mt-4:focus{
    margin-top: -1rem;
  }

  .sm\:focus\:-mr-4:focus{
    margin-right: -1rem;
  }

  .sm\:focus\:-mb-4:focus{
    margin-bottom: -1rem;
  }

  .sm\:focus\:-ml-4:focus{
    margin-left: -1rem;
  }

  .sm\:focus\:-mt-5:focus{
    margin-top: -1.25rem;
  }

  .sm\:focus\:-mr-5:focus{
    margin-right: -1.25rem;
  }

  .sm\:focus\:-mb-5:focus{
    margin-bottom: -1.25rem;
  }

  .sm\:focus\:-ml-5:focus{
    margin-left: -1.25rem;
  }

  .sm\:focus\:-mt-6:focus{
    margin-top: -1.5rem;
  }

  .sm\:focus\:-mr-6:focus{
    margin-right: -1.5rem;
  }

  .sm\:focus\:-mb-6:focus{
    margin-bottom: -1.5rem;
  }

  .sm\:focus\:-ml-6:focus{
    margin-left: -1.5rem;
  }

  .sm\:focus\:-mt-8:focus{
    margin-top: -2rem;
  }

  .sm\:focus\:-mr-8:focus{
    margin-right: -2rem;
  }

  .sm\:focus\:-mb-8:focus{
    margin-bottom: -2rem;
  }

  .sm\:focus\:-ml-8:focus{
    margin-left: -2rem;
  }

  .sm\:focus\:-mt-10:focus{
    margin-top: -2.5rem;
  }

  .sm\:focus\:-mr-10:focus{
    margin-right: -2.5rem;
  }

  .sm\:focus\:-mb-10:focus{
    margin-bottom: -2.5rem;
  }

  .sm\:focus\:-ml-10:focus{
    margin-left: -2.5rem;
  }

  .sm\:focus\:-mt-12:focus{
    margin-top: -3rem;
  }

  .sm\:focus\:-mr-12:focus{
    margin-right: -3rem;
  }

  .sm\:focus\:-mb-12:focus{
    margin-bottom: -3rem;
  }

  .sm\:focus\:-ml-12:focus{
    margin-left: -3rem;
  }

  .sm\:focus\:-mt-14:focus{
    margin-top: -3.5rem;
  }

  .sm\:focus\:-mr-14:focus{
    margin-right: -3.5rem;
  }

  .sm\:focus\:-mb-14:focus{
    margin-bottom: -3.5rem;
  }

  .sm\:focus\:-ml-14:focus{
    margin-left: -3.5rem;
  }

  .sm\:focus\:-mt-16:focus{
    margin-top: -4rem;
  }

  .sm\:focus\:-mr-16:focus{
    margin-right: -4rem;
  }

  .sm\:focus\:-mb-16:focus{
    margin-bottom: -4rem;
  }

  .sm\:focus\:-ml-16:focus{
    margin-left: -4rem;
  }

  .sm\:focus\:-mt-20:focus{
    margin-top: -5rem;
  }

  .sm\:focus\:-mr-20:focus{
    margin-right: -5rem;
  }

  .sm\:focus\:-mb-20:focus{
    margin-bottom: -5rem;
  }

  .sm\:focus\:-ml-20:focus{
    margin-left: -5rem;
  }

  .sm\:focus\:-mt-24:focus{
    margin-top: -6rem;
  }

  .sm\:focus\:-mr-24:focus{
    margin-right: -6rem;
  }

  .sm\:focus\:-mb-24:focus{
    margin-bottom: -6rem;
  }

  .sm\:focus\:-ml-24:focus{
    margin-left: -6rem;
  }

  .sm\:focus\:-mt-32:focus{
    margin-top: -8rem;
  }

  .sm\:focus\:-mr-32:focus{
    margin-right: -8rem;
  }

  .sm\:focus\:-mb-32:focus{
    margin-bottom: -8rem;
  }

  .sm\:focus\:-ml-32:focus{
    margin-left: -8rem;
  }

  .sm\:focus\:-mt-40:focus{
    margin-top: -10rem;
  }

  .sm\:focus\:-mr-40:focus{
    margin-right: -10rem;
  }

  .sm\:focus\:-mb-40:focus{
    margin-bottom: -10rem;
  }

  .sm\:focus\:-ml-40:focus{
    margin-left: -10rem;
  }

  .sm\:focus\:-mt-48:focus{
    margin-top: -12rem;
  }

  .sm\:focus\:-mr-48:focus{
    margin-right: -12rem;
  }

  .sm\:focus\:-mb-48:focus{
    margin-bottom: -12rem;
  }

  .sm\:focus\:-ml-48:focus{
    margin-left: -12rem;
  }

  .sm\:focus\:-mt-56:focus{
    margin-top: -14rem;
  }

  .sm\:focus\:-mr-56:focus{
    margin-right: -14rem;
  }

  .sm\:focus\:-mb-56:focus{
    margin-bottom: -14rem;
  }

  .sm\:focus\:-ml-56:focus{
    margin-left: -14rem;
  }

  .sm\:focus\:-mt-64:focus{
    margin-top: -16rem;
  }

  .sm\:focus\:-mr-64:focus{
    margin-right: -16rem;
  }

  .sm\:focus\:-mb-64:focus{
    margin-bottom: -16rem;
  }

  .sm\:focus\:-ml-64:focus{
    margin-left: -16rem;
  }

  .sm\:focus\:-mt-px:focus{
    margin-top: -1px;
  }

  .sm\:focus\:-mr-px:focus{
    margin-right: -1px;
  }

  .sm\:focus\:-mb-px:focus{
    margin-bottom: -1px;
  }

  .sm\:focus\:-ml-px:focus{
    margin-left: -1px;
  }

  .sm\:focus\:mt-bin:focus{
    margin-top: -0.313rem;
  }

  .sm\:focus\:mr-bin:focus{
    margin-right: -0.313rem;
  }

  .sm\:focus\:mb-bin:focus{
    margin-bottom: -0.313rem;
  }

  .sm\:focus\:ml-bin:focus{
    margin-left: -0.313rem;
  }

  .sm\:focus\:-mt-0\.25:focus{
    margin-top: -0.0625rem;
  }

  .sm\:focus\:-mr-0\.25:focus{
    margin-right: -0.0625rem;
  }

  .sm\:focus\:-mb-0\.25:focus{
    margin-bottom: -0.0625rem;
  }

  .sm\:focus\:-ml-0\.25:focus{
    margin-left: -0.0625rem;
  }

  .sm\:focus\:mt-0\.25:focus{
    margin-top: 0.0625rem;
  }

  .sm\:focus\:mr-0\.25:focus{
    margin-right: 0.0625rem;
  }

  .sm\:focus\:mb-0\.25:focus{
    margin-bottom: 0.0625rem;
  }

  .sm\:focus\:ml-0\.25:focus{
    margin-left: 0.0625rem;
  }

  .sm\:focus\:mt-3\.125:focus{
    margin-top: 3.125rem;
  }

  .sm\:focus\:mr-3\.125:focus{
    margin-right: 3.125rem;
  }

  .sm\:focus\:mb-3\.125:focus{
    margin-bottom: 3.125rem;
  }

  .sm\:focus\:ml-3\.125:focus{
    margin-left: 3.125rem;
  }

  .sm\:focus\:mt-modal:focus{
    margin-top: 6.25rem;
  }

  .sm\:focus\:mr-modal:focus{
    margin-right: 6.25rem;
  }

  .sm\:focus\:mb-modal:focus{
    margin-bottom: 6.25rem;
  }

  .sm\:focus\:ml-modal:focus{
    margin-left: 6.25rem;
  }

  .sm\:focus\:mt-sidebar:focus{
    margin-top: 25rem;
  }

  .sm\:focus\:mr-sidebar:focus{
    margin-right: 25rem;
  }

  .sm\:focus\:mb-sidebar:focus{
    margin-bottom: 25rem;
  }

  .sm\:focus\:ml-sidebar:focus{
    margin-left: 25rem;
  }

  .sm\:active\:m-0:active{
    margin: 0;
  }

  .sm\:active\:m-1:active{
    margin: 0.25rem;
  }

  .sm\:active\:m-2:active{
    margin: 0.5rem;
  }

  .sm\:active\:m-3:active{
    margin: 0.75rem;
  }

  .sm\:active\:m-4:active{
    margin: 1rem;
  }

  .sm\:active\:m-5:active{
    margin: 1.25rem;
  }

  .sm\:active\:m-6:active{
    margin: 1.5rem;
  }

  .sm\:active\:m-7:active{
    margin: 1.75rem;
  }

  .sm\:active\:m-8:active{
    margin: 2rem;
  }

  .sm\:active\:m-10:active{
    margin: 2.5rem;
  }

  .sm\:active\:m-12:active{
    margin: 3rem;
  }

  .sm\:active\:m-14:active{
    margin: 3.5rem;
  }

  .sm\:active\:m-16:active{
    margin: 4rem;
  }

  .sm\:active\:m-18:active{
    margin: 4.5rem;
  }

  .sm\:active\:m-20:active{
    margin: 5rem;
  }

  .sm\:active\:m-24:active{
    margin: 6rem;
  }

  .sm\:active\:m-32:active{
    margin: 8rem;
  }

  .sm\:active\:m-40:active{
    margin: 10rem;
  }

  .sm\:active\:m-48:active{
    margin: 12rem;
  }

  .sm\:active\:m-56:active{
    margin: 14rem;
  }

  .sm\:active\:m-64:active{
    margin: 16rem;
  }

  .sm\:active\:m-auto:active{
    margin: auto;
  }

  .sm\:active\:m-px:active{
    margin: 1px;
  }

  .sm\:active\:-m-1:active{
    margin: -0.25rem;
  }

  .sm\:active\:-m-2:active{
    margin: -0.5rem;
  }

  .sm\:active\:-m-3:active{
    margin: -0.75rem;
  }

  .sm\:active\:-m-4:active{
    margin: -1rem;
  }

  .sm\:active\:-m-5:active{
    margin: -1.25rem;
  }

  .sm\:active\:-m-6:active{
    margin: -1.5rem;
  }

  .sm\:active\:-m-8:active{
    margin: -2rem;
  }

  .sm\:active\:-m-10:active{
    margin: -2.5rem;
  }

  .sm\:active\:-m-12:active{
    margin: -3rem;
  }

  .sm\:active\:-m-14:active{
    margin: -3.5rem;
  }

  .sm\:active\:-m-16:active{
    margin: -4rem;
  }

  .sm\:active\:-m-20:active{
    margin: -5rem;
  }

  .sm\:active\:-m-24:active{
    margin: -6rem;
  }

  .sm\:active\:-m-32:active{
    margin: -8rem;
  }

  .sm\:active\:-m-40:active{
    margin: -10rem;
  }

  .sm\:active\:-m-48:active{
    margin: -12rem;
  }

  .sm\:active\:-m-56:active{
    margin: -14rem;
  }

  .sm\:active\:-m-64:active{
    margin: -16rem;
  }

  .sm\:active\:-m-px:active{
    margin: -1px;
  }

  .sm\:active\:m-bin:active{
    margin: -0.313rem;
  }

  .sm\:active\:-m-0\.25:active{
    margin: -0.0625rem;
  }

  .sm\:active\:m-0\.25:active{
    margin: 0.0625rem;
  }

  .sm\:active\:m-3\.125:active{
    margin: 3.125rem;
  }

  .sm\:active\:m-modal:active{
    margin: 6.25rem;
  }

  .sm\:active\:m-sidebar:active{
    margin: 25rem;
  }

  .sm\:active\:my-0:active{
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm\:active\:mx-0:active{
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:active\:my-1:active{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .sm\:active\:mx-1:active{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .sm\:active\:my-2:active{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .sm\:active\:mx-2:active{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .sm\:active\:my-3:active{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .sm\:active\:mx-3:active{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .sm\:active\:my-4:active{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .sm\:active\:mx-4:active{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:active\:my-5:active{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .sm\:active\:mx-5:active{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .sm\:active\:my-6:active{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm\:active\:mx-6:active{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:active\:my-7:active{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .sm\:active\:mx-7:active{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .sm\:active\:my-8:active{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:active\:mx-8:active{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:active\:my-10:active{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .sm\:active\:mx-10:active{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .sm\:active\:my-12:active{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:active\:mx-12:active{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:active\:my-14:active{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .sm\:active\:mx-14:active{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .sm\:active\:my-16:active{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .sm\:active\:mx-16:active{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .sm\:active\:my-18:active{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .sm\:active\:mx-18:active{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .sm\:active\:my-20:active{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .sm\:active\:mx-20:active{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .sm\:active\:my-24:active{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .sm\:active\:mx-24:active{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .sm\:active\:my-32:active{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .sm\:active\:mx-32:active{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .sm\:active\:my-40:active{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .sm\:active\:mx-40:active{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .sm\:active\:my-48:active{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .sm\:active\:mx-48:active{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .sm\:active\:my-56:active{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .sm\:active\:mx-56:active{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .sm\:active\:my-64:active{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .sm\:active\:mx-64:active{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .sm\:active\:my-auto:active{
    margin-top: auto;
    margin-bottom: auto;
  }

  .sm\:active\:mx-auto:active{
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:active\:my-px:active{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .sm\:active\:mx-px:active{
    margin-left: 1px;
    margin-right: 1px;
  }

  .sm\:active\:-my-1:active{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .sm\:active\:-mx-1:active{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .sm\:active\:-my-2:active{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .sm\:active\:-mx-2:active{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .sm\:active\:-my-3:active{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .sm\:active\:-mx-3:active{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .sm\:active\:-my-4:active{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .sm\:active\:-mx-4:active{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .sm\:active\:-my-5:active{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .sm\:active\:-mx-5:active{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .sm\:active\:-my-6:active{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .sm\:active\:-mx-6:active{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .sm\:active\:-my-8:active{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .sm\:active\:-mx-8:active{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .sm\:active\:-my-10:active{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .sm\:active\:-mx-10:active{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .sm\:active\:-my-12:active{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .sm\:active\:-mx-12:active{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .sm\:active\:-my-14:active{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .sm\:active\:-mx-14:active{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .sm\:active\:-my-16:active{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .sm\:active\:-mx-16:active{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .sm\:active\:-my-20:active{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .sm\:active\:-mx-20:active{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .sm\:active\:-my-24:active{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .sm\:active\:-mx-24:active{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .sm\:active\:-my-32:active{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .sm\:active\:-mx-32:active{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .sm\:active\:-my-40:active{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .sm\:active\:-mx-40:active{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .sm\:active\:-my-48:active{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .sm\:active\:-mx-48:active{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .sm\:active\:-my-56:active{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .sm\:active\:-mx-56:active{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .sm\:active\:-my-64:active{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .sm\:active\:-mx-64:active{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .sm\:active\:-my-px:active{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .sm\:active\:-mx-px:active{
    margin-left: -1px;
    margin-right: -1px;
  }

  .sm\:active\:my-bin:active{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .sm\:active\:mx-bin:active{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .sm\:active\:-my-0\.25:active{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .sm\:active\:-mx-0\.25:active{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .sm\:active\:my-0\.25:active{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .sm\:active\:mx-0\.25:active{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .sm\:active\:my-3\.125:active{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .sm\:active\:mx-3\.125:active{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .sm\:active\:my-modal:active{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .sm\:active\:mx-modal:active{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .sm\:active\:my-sidebar:active{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .sm\:active\:mx-sidebar:active{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .sm\:active\:mt-0:active{
    margin-top: 0;
  }

  .sm\:active\:mr-0:active{
    margin-right: 0;
  }

  .sm\:active\:mb-0:active{
    margin-bottom: 0;
  }

  .sm\:active\:ml-0:active{
    margin-left: 0;
  }

  .sm\:active\:mt-1:active{
    margin-top: 0.25rem;
  }

  .sm\:active\:mr-1:active{
    margin-right: 0.25rem;
  }

  .sm\:active\:mb-1:active{
    margin-bottom: 0.25rem;
  }

  .sm\:active\:ml-1:active{
    margin-left: 0.25rem;
  }

  .sm\:active\:mt-2:active{
    margin-top: 0.5rem;
  }

  .sm\:active\:mr-2:active{
    margin-right: 0.5rem;
  }

  .sm\:active\:mb-2:active{
    margin-bottom: 0.5rem;
  }

  .sm\:active\:ml-2:active{
    margin-left: 0.5rem;
  }

  .sm\:active\:mt-3:active{
    margin-top: 0.75rem;
  }

  .sm\:active\:mr-3:active{
    margin-right: 0.75rem;
  }

  .sm\:active\:mb-3:active{
    margin-bottom: 0.75rem;
  }

  .sm\:active\:ml-3:active{
    margin-left: 0.75rem;
  }

  .sm\:active\:mt-4:active{
    margin-top: 1rem;
  }

  .sm\:active\:mr-4:active{
    margin-right: 1rem;
  }

  .sm\:active\:mb-4:active{
    margin-bottom: 1rem;
  }

  .sm\:active\:ml-4:active{
    margin-left: 1rem;
  }

  .sm\:active\:mt-5:active{
    margin-top: 1.25rem;
  }

  .sm\:active\:mr-5:active{
    margin-right: 1.25rem;
  }

  .sm\:active\:mb-5:active{
    margin-bottom: 1.25rem;
  }

  .sm\:active\:ml-5:active{
    margin-left: 1.25rem;
  }

  .sm\:active\:mt-6:active{
    margin-top: 1.5rem;
  }

  .sm\:active\:mr-6:active{
    margin-right: 1.5rem;
  }

  .sm\:active\:mb-6:active{
    margin-bottom: 1.5rem;
  }

  .sm\:active\:ml-6:active{
    margin-left: 1.5rem;
  }

  .sm\:active\:mt-7:active{
    margin-top: 1.75rem;
  }

  .sm\:active\:mr-7:active{
    margin-right: 1.75rem;
  }

  .sm\:active\:mb-7:active{
    margin-bottom: 1.75rem;
  }

  .sm\:active\:ml-7:active{
    margin-left: 1.75rem;
  }

  .sm\:active\:mt-8:active{
    margin-top: 2rem;
  }

  .sm\:active\:mr-8:active{
    margin-right: 2rem;
  }

  .sm\:active\:mb-8:active{
    margin-bottom: 2rem;
  }

  .sm\:active\:ml-8:active{
    margin-left: 2rem;
  }

  .sm\:active\:mt-10:active{
    margin-top: 2.5rem;
  }

  .sm\:active\:mr-10:active{
    margin-right: 2.5rem;
  }

  .sm\:active\:mb-10:active{
    margin-bottom: 2.5rem;
  }

  .sm\:active\:ml-10:active{
    margin-left: 2.5rem;
  }

  .sm\:active\:mt-12:active{
    margin-top: 3rem;
  }

  .sm\:active\:mr-12:active{
    margin-right: 3rem;
  }

  .sm\:active\:mb-12:active{
    margin-bottom: 3rem;
  }

  .sm\:active\:ml-12:active{
    margin-left: 3rem;
  }

  .sm\:active\:mt-14:active{
    margin-top: 3.5rem;
  }

  .sm\:active\:mr-14:active{
    margin-right: 3.5rem;
  }

  .sm\:active\:mb-14:active{
    margin-bottom: 3.5rem;
  }

  .sm\:active\:ml-14:active{
    margin-left: 3.5rem;
  }

  .sm\:active\:mt-16:active{
    margin-top: 4rem;
  }

  .sm\:active\:mr-16:active{
    margin-right: 4rem;
  }

  .sm\:active\:mb-16:active{
    margin-bottom: 4rem;
  }

  .sm\:active\:ml-16:active{
    margin-left: 4rem;
  }

  .sm\:active\:mt-18:active{
    margin-top: 4.5rem;
  }

  .sm\:active\:mr-18:active{
    margin-right: 4.5rem;
  }

  .sm\:active\:mb-18:active{
    margin-bottom: 4.5rem;
  }

  .sm\:active\:ml-18:active{
    margin-left: 4.5rem;
  }

  .sm\:active\:mt-20:active{
    margin-top: 5rem;
  }

  .sm\:active\:mr-20:active{
    margin-right: 5rem;
  }

  .sm\:active\:mb-20:active{
    margin-bottom: 5rem;
  }

  .sm\:active\:ml-20:active{
    margin-left: 5rem;
  }

  .sm\:active\:mt-24:active{
    margin-top: 6rem;
  }

  .sm\:active\:mr-24:active{
    margin-right: 6rem;
  }

  .sm\:active\:mb-24:active{
    margin-bottom: 6rem;
  }

  .sm\:active\:ml-24:active{
    margin-left: 6rem;
  }

  .sm\:active\:mt-32:active{
    margin-top: 8rem;
  }

  .sm\:active\:mr-32:active{
    margin-right: 8rem;
  }

  .sm\:active\:mb-32:active{
    margin-bottom: 8rem;
  }

  .sm\:active\:ml-32:active{
    margin-left: 8rem;
  }

  .sm\:active\:mt-40:active{
    margin-top: 10rem;
  }

  .sm\:active\:mr-40:active{
    margin-right: 10rem;
  }

  .sm\:active\:mb-40:active{
    margin-bottom: 10rem;
  }

  .sm\:active\:ml-40:active{
    margin-left: 10rem;
  }

  .sm\:active\:mt-48:active{
    margin-top: 12rem;
  }

  .sm\:active\:mr-48:active{
    margin-right: 12rem;
  }

  .sm\:active\:mb-48:active{
    margin-bottom: 12rem;
  }

  .sm\:active\:ml-48:active{
    margin-left: 12rem;
  }

  .sm\:active\:mt-56:active{
    margin-top: 14rem;
  }

  .sm\:active\:mr-56:active{
    margin-right: 14rem;
  }

  .sm\:active\:mb-56:active{
    margin-bottom: 14rem;
  }

  .sm\:active\:ml-56:active{
    margin-left: 14rem;
  }

  .sm\:active\:mt-64:active{
    margin-top: 16rem;
  }

  .sm\:active\:mr-64:active{
    margin-right: 16rem;
  }

  .sm\:active\:mb-64:active{
    margin-bottom: 16rem;
  }

  .sm\:active\:ml-64:active{
    margin-left: 16rem;
  }

  .sm\:active\:mt-auto:active{
    margin-top: auto;
  }

  .sm\:active\:mr-auto:active{
    margin-right: auto;
  }

  .sm\:active\:mb-auto:active{
    margin-bottom: auto;
  }

  .sm\:active\:ml-auto:active{
    margin-left: auto;
  }

  .sm\:active\:mt-px:active{
    margin-top: 1px;
  }

  .sm\:active\:mr-px:active{
    margin-right: 1px;
  }

  .sm\:active\:mb-px:active{
    margin-bottom: 1px;
  }

  .sm\:active\:ml-px:active{
    margin-left: 1px;
  }

  .sm\:active\:-mt-1:active{
    margin-top: -0.25rem;
  }

  .sm\:active\:-mr-1:active{
    margin-right: -0.25rem;
  }

  .sm\:active\:-mb-1:active{
    margin-bottom: -0.25rem;
  }

  .sm\:active\:-ml-1:active{
    margin-left: -0.25rem;
  }

  .sm\:active\:-mt-2:active{
    margin-top: -0.5rem;
  }

  .sm\:active\:-mr-2:active{
    margin-right: -0.5rem;
  }

  .sm\:active\:-mb-2:active{
    margin-bottom: -0.5rem;
  }

  .sm\:active\:-ml-2:active{
    margin-left: -0.5rem;
  }

  .sm\:active\:-mt-3:active{
    margin-top: -0.75rem;
  }

  .sm\:active\:-mr-3:active{
    margin-right: -0.75rem;
  }

  .sm\:active\:-mb-3:active{
    margin-bottom: -0.75rem;
  }

  .sm\:active\:-ml-3:active{
    margin-left: -0.75rem;
  }

  .sm\:active\:-mt-4:active{
    margin-top: -1rem;
  }

  .sm\:active\:-mr-4:active{
    margin-right: -1rem;
  }

  .sm\:active\:-mb-4:active{
    margin-bottom: -1rem;
  }

  .sm\:active\:-ml-4:active{
    margin-left: -1rem;
  }

  .sm\:active\:-mt-5:active{
    margin-top: -1.25rem;
  }

  .sm\:active\:-mr-5:active{
    margin-right: -1.25rem;
  }

  .sm\:active\:-mb-5:active{
    margin-bottom: -1.25rem;
  }

  .sm\:active\:-ml-5:active{
    margin-left: -1.25rem;
  }

  .sm\:active\:-mt-6:active{
    margin-top: -1.5rem;
  }

  .sm\:active\:-mr-6:active{
    margin-right: -1.5rem;
  }

  .sm\:active\:-mb-6:active{
    margin-bottom: -1.5rem;
  }

  .sm\:active\:-ml-6:active{
    margin-left: -1.5rem;
  }

  .sm\:active\:-mt-8:active{
    margin-top: -2rem;
  }

  .sm\:active\:-mr-8:active{
    margin-right: -2rem;
  }

  .sm\:active\:-mb-8:active{
    margin-bottom: -2rem;
  }

  .sm\:active\:-ml-8:active{
    margin-left: -2rem;
  }

  .sm\:active\:-mt-10:active{
    margin-top: -2.5rem;
  }

  .sm\:active\:-mr-10:active{
    margin-right: -2.5rem;
  }

  .sm\:active\:-mb-10:active{
    margin-bottom: -2.5rem;
  }

  .sm\:active\:-ml-10:active{
    margin-left: -2.5rem;
  }

  .sm\:active\:-mt-12:active{
    margin-top: -3rem;
  }

  .sm\:active\:-mr-12:active{
    margin-right: -3rem;
  }

  .sm\:active\:-mb-12:active{
    margin-bottom: -3rem;
  }

  .sm\:active\:-ml-12:active{
    margin-left: -3rem;
  }

  .sm\:active\:-mt-14:active{
    margin-top: -3.5rem;
  }

  .sm\:active\:-mr-14:active{
    margin-right: -3.5rem;
  }

  .sm\:active\:-mb-14:active{
    margin-bottom: -3.5rem;
  }

  .sm\:active\:-ml-14:active{
    margin-left: -3.5rem;
  }

  .sm\:active\:-mt-16:active{
    margin-top: -4rem;
  }

  .sm\:active\:-mr-16:active{
    margin-right: -4rem;
  }

  .sm\:active\:-mb-16:active{
    margin-bottom: -4rem;
  }

  .sm\:active\:-ml-16:active{
    margin-left: -4rem;
  }

  .sm\:active\:-mt-20:active{
    margin-top: -5rem;
  }

  .sm\:active\:-mr-20:active{
    margin-right: -5rem;
  }

  .sm\:active\:-mb-20:active{
    margin-bottom: -5rem;
  }

  .sm\:active\:-ml-20:active{
    margin-left: -5rem;
  }

  .sm\:active\:-mt-24:active{
    margin-top: -6rem;
  }

  .sm\:active\:-mr-24:active{
    margin-right: -6rem;
  }

  .sm\:active\:-mb-24:active{
    margin-bottom: -6rem;
  }

  .sm\:active\:-ml-24:active{
    margin-left: -6rem;
  }

  .sm\:active\:-mt-32:active{
    margin-top: -8rem;
  }

  .sm\:active\:-mr-32:active{
    margin-right: -8rem;
  }

  .sm\:active\:-mb-32:active{
    margin-bottom: -8rem;
  }

  .sm\:active\:-ml-32:active{
    margin-left: -8rem;
  }

  .sm\:active\:-mt-40:active{
    margin-top: -10rem;
  }

  .sm\:active\:-mr-40:active{
    margin-right: -10rem;
  }

  .sm\:active\:-mb-40:active{
    margin-bottom: -10rem;
  }

  .sm\:active\:-ml-40:active{
    margin-left: -10rem;
  }

  .sm\:active\:-mt-48:active{
    margin-top: -12rem;
  }

  .sm\:active\:-mr-48:active{
    margin-right: -12rem;
  }

  .sm\:active\:-mb-48:active{
    margin-bottom: -12rem;
  }

  .sm\:active\:-ml-48:active{
    margin-left: -12rem;
  }

  .sm\:active\:-mt-56:active{
    margin-top: -14rem;
  }

  .sm\:active\:-mr-56:active{
    margin-right: -14rem;
  }

  .sm\:active\:-mb-56:active{
    margin-bottom: -14rem;
  }

  .sm\:active\:-ml-56:active{
    margin-left: -14rem;
  }

  .sm\:active\:-mt-64:active{
    margin-top: -16rem;
  }

  .sm\:active\:-mr-64:active{
    margin-right: -16rem;
  }

  .sm\:active\:-mb-64:active{
    margin-bottom: -16rem;
  }

  .sm\:active\:-ml-64:active{
    margin-left: -16rem;
  }

  .sm\:active\:-mt-px:active{
    margin-top: -1px;
  }

  .sm\:active\:-mr-px:active{
    margin-right: -1px;
  }

  .sm\:active\:-mb-px:active{
    margin-bottom: -1px;
  }

  .sm\:active\:-ml-px:active{
    margin-left: -1px;
  }

  .sm\:active\:mt-bin:active{
    margin-top: -0.313rem;
  }

  .sm\:active\:mr-bin:active{
    margin-right: -0.313rem;
  }

  .sm\:active\:mb-bin:active{
    margin-bottom: -0.313rem;
  }

  .sm\:active\:ml-bin:active{
    margin-left: -0.313rem;
  }

  .sm\:active\:-mt-0\.25:active{
    margin-top: -0.0625rem;
  }

  .sm\:active\:-mr-0\.25:active{
    margin-right: -0.0625rem;
  }

  .sm\:active\:-mb-0\.25:active{
    margin-bottom: -0.0625rem;
  }

  .sm\:active\:-ml-0\.25:active{
    margin-left: -0.0625rem;
  }

  .sm\:active\:mt-0\.25:active{
    margin-top: 0.0625rem;
  }

  .sm\:active\:mr-0\.25:active{
    margin-right: 0.0625rem;
  }

  .sm\:active\:mb-0\.25:active{
    margin-bottom: 0.0625rem;
  }

  .sm\:active\:ml-0\.25:active{
    margin-left: 0.0625rem;
  }

  .sm\:active\:mt-3\.125:active{
    margin-top: 3.125rem;
  }

  .sm\:active\:mr-3\.125:active{
    margin-right: 3.125rem;
  }

  .sm\:active\:mb-3\.125:active{
    margin-bottom: 3.125rem;
  }

  .sm\:active\:ml-3\.125:active{
    margin-left: 3.125rem;
  }

  .sm\:active\:mt-modal:active{
    margin-top: 6.25rem;
  }

  .sm\:active\:mr-modal:active{
    margin-right: 6.25rem;
  }

  .sm\:active\:mb-modal:active{
    margin-bottom: 6.25rem;
  }

  .sm\:active\:ml-modal:active{
    margin-left: 6.25rem;
  }

  .sm\:active\:mt-sidebar:active{
    margin-top: 25rem;
  }

  .sm\:active\:mr-sidebar:active{
    margin-right: 25rem;
  }

  .sm\:active\:mb-sidebar:active{
    margin-bottom: 25rem;
  }

  .sm\:active\:ml-sidebar:active{
    margin-left: 25rem;
  }

  .sm\:first\:m-0:first-child{
    margin: 0;
  }

  .sm\:first\:m-1:first-child{
    margin: 0.25rem;
  }

  .sm\:first\:m-2:first-child{
    margin: 0.5rem;
  }

  .sm\:first\:m-3:first-child{
    margin: 0.75rem;
  }

  .sm\:first\:m-4:first-child{
    margin: 1rem;
  }

  .sm\:first\:m-5:first-child{
    margin: 1.25rem;
  }

  .sm\:first\:m-6:first-child{
    margin: 1.5rem;
  }

  .sm\:first\:m-7:first-child{
    margin: 1.75rem;
  }

  .sm\:first\:m-8:first-child{
    margin: 2rem;
  }

  .sm\:first\:m-10:first-child{
    margin: 2.5rem;
  }

  .sm\:first\:m-12:first-child{
    margin: 3rem;
  }

  .sm\:first\:m-14:first-child{
    margin: 3.5rem;
  }

  .sm\:first\:m-16:first-child{
    margin: 4rem;
  }

  .sm\:first\:m-18:first-child{
    margin: 4.5rem;
  }

  .sm\:first\:m-20:first-child{
    margin: 5rem;
  }

  .sm\:first\:m-24:first-child{
    margin: 6rem;
  }

  .sm\:first\:m-32:first-child{
    margin: 8rem;
  }

  .sm\:first\:m-40:first-child{
    margin: 10rem;
  }

  .sm\:first\:m-48:first-child{
    margin: 12rem;
  }

  .sm\:first\:m-56:first-child{
    margin: 14rem;
  }

  .sm\:first\:m-64:first-child{
    margin: 16rem;
  }

  .sm\:first\:m-auto:first-child{
    margin: auto;
  }

  .sm\:first\:m-px:first-child{
    margin: 1px;
  }

  .sm\:first\:-m-1:first-child{
    margin: -0.25rem;
  }

  .sm\:first\:-m-2:first-child{
    margin: -0.5rem;
  }

  .sm\:first\:-m-3:first-child{
    margin: -0.75rem;
  }

  .sm\:first\:-m-4:first-child{
    margin: -1rem;
  }

  .sm\:first\:-m-5:first-child{
    margin: -1.25rem;
  }

  .sm\:first\:-m-6:first-child{
    margin: -1.5rem;
  }

  .sm\:first\:-m-8:first-child{
    margin: -2rem;
  }

  .sm\:first\:-m-10:first-child{
    margin: -2.5rem;
  }

  .sm\:first\:-m-12:first-child{
    margin: -3rem;
  }

  .sm\:first\:-m-14:first-child{
    margin: -3.5rem;
  }

  .sm\:first\:-m-16:first-child{
    margin: -4rem;
  }

  .sm\:first\:-m-20:first-child{
    margin: -5rem;
  }

  .sm\:first\:-m-24:first-child{
    margin: -6rem;
  }

  .sm\:first\:-m-32:first-child{
    margin: -8rem;
  }

  .sm\:first\:-m-40:first-child{
    margin: -10rem;
  }

  .sm\:first\:-m-48:first-child{
    margin: -12rem;
  }

  .sm\:first\:-m-56:first-child{
    margin: -14rem;
  }

  .sm\:first\:-m-64:first-child{
    margin: -16rem;
  }

  .sm\:first\:-m-px:first-child{
    margin: -1px;
  }

  .sm\:first\:m-bin:first-child{
    margin: -0.313rem;
  }

  .sm\:first\:-m-0\.25:first-child{
    margin: -0.0625rem;
  }

  .sm\:first\:m-0\.25:first-child{
    margin: 0.0625rem;
  }

  .sm\:first\:m-3\.125:first-child{
    margin: 3.125rem;
  }

  .sm\:first\:m-modal:first-child{
    margin: 6.25rem;
  }

  .sm\:first\:m-sidebar:first-child{
    margin: 25rem;
  }

  .sm\:first\:my-0:first-child{
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm\:first\:mx-0:first-child{
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:first\:my-1:first-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .sm\:first\:mx-1:first-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .sm\:first\:my-2:first-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .sm\:first\:mx-2:first-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .sm\:first\:my-3:first-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .sm\:first\:mx-3:first-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .sm\:first\:my-4:first-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .sm\:first\:mx-4:first-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:first\:my-5:first-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .sm\:first\:mx-5:first-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .sm\:first\:my-6:first-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm\:first\:mx-6:first-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:first\:my-7:first-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .sm\:first\:mx-7:first-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .sm\:first\:my-8:first-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:first\:mx-8:first-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:first\:my-10:first-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .sm\:first\:mx-10:first-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .sm\:first\:my-12:first-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:first\:mx-12:first-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:first\:my-14:first-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .sm\:first\:mx-14:first-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .sm\:first\:my-16:first-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .sm\:first\:mx-16:first-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .sm\:first\:my-18:first-child{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .sm\:first\:mx-18:first-child{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .sm\:first\:my-20:first-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .sm\:first\:mx-20:first-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .sm\:first\:my-24:first-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .sm\:first\:mx-24:first-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .sm\:first\:my-32:first-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .sm\:first\:mx-32:first-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .sm\:first\:my-40:first-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .sm\:first\:mx-40:first-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .sm\:first\:my-48:first-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .sm\:first\:mx-48:first-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .sm\:first\:my-56:first-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .sm\:first\:mx-56:first-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .sm\:first\:my-64:first-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .sm\:first\:mx-64:first-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .sm\:first\:my-auto:first-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .sm\:first\:mx-auto:first-child{
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:first\:my-px:first-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .sm\:first\:mx-px:first-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .sm\:first\:-my-1:first-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .sm\:first\:-mx-1:first-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .sm\:first\:-my-2:first-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .sm\:first\:-mx-2:first-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .sm\:first\:-my-3:first-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .sm\:first\:-mx-3:first-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .sm\:first\:-my-4:first-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .sm\:first\:-mx-4:first-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .sm\:first\:-my-5:first-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .sm\:first\:-mx-5:first-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .sm\:first\:-my-6:first-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .sm\:first\:-mx-6:first-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .sm\:first\:-my-8:first-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .sm\:first\:-mx-8:first-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .sm\:first\:-my-10:first-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .sm\:first\:-mx-10:first-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .sm\:first\:-my-12:first-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .sm\:first\:-mx-12:first-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .sm\:first\:-my-14:first-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .sm\:first\:-mx-14:first-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .sm\:first\:-my-16:first-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .sm\:first\:-mx-16:first-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .sm\:first\:-my-20:first-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .sm\:first\:-mx-20:first-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .sm\:first\:-my-24:first-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .sm\:first\:-mx-24:first-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .sm\:first\:-my-32:first-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .sm\:first\:-mx-32:first-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .sm\:first\:-my-40:first-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .sm\:first\:-mx-40:first-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .sm\:first\:-my-48:first-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .sm\:first\:-mx-48:first-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .sm\:first\:-my-56:first-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .sm\:first\:-mx-56:first-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .sm\:first\:-my-64:first-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .sm\:first\:-mx-64:first-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .sm\:first\:-my-px:first-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .sm\:first\:-mx-px:first-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .sm\:first\:my-bin:first-child{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .sm\:first\:mx-bin:first-child{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .sm\:first\:-my-0\.25:first-child{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .sm\:first\:-mx-0\.25:first-child{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .sm\:first\:my-0\.25:first-child{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .sm\:first\:mx-0\.25:first-child{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .sm\:first\:my-3\.125:first-child{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .sm\:first\:mx-3\.125:first-child{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .sm\:first\:my-modal:first-child{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .sm\:first\:mx-modal:first-child{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .sm\:first\:my-sidebar:first-child{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .sm\:first\:mx-sidebar:first-child{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .sm\:first\:mt-0:first-child{
    margin-top: 0;
  }

  .sm\:first\:mr-0:first-child{
    margin-right: 0;
  }

  .sm\:first\:mb-0:first-child{
    margin-bottom: 0;
  }

  .sm\:first\:ml-0:first-child{
    margin-left: 0;
  }

  .sm\:first\:mt-1:first-child{
    margin-top: 0.25rem;
  }

  .sm\:first\:mr-1:first-child{
    margin-right: 0.25rem;
  }

  .sm\:first\:mb-1:first-child{
    margin-bottom: 0.25rem;
  }

  .sm\:first\:ml-1:first-child{
    margin-left: 0.25rem;
  }

  .sm\:first\:mt-2:first-child{
    margin-top: 0.5rem;
  }

  .sm\:first\:mr-2:first-child{
    margin-right: 0.5rem;
  }

  .sm\:first\:mb-2:first-child{
    margin-bottom: 0.5rem;
  }

  .sm\:first\:ml-2:first-child{
    margin-left: 0.5rem;
  }

  .sm\:first\:mt-3:first-child{
    margin-top: 0.75rem;
  }

  .sm\:first\:mr-3:first-child{
    margin-right: 0.75rem;
  }

  .sm\:first\:mb-3:first-child{
    margin-bottom: 0.75rem;
  }

  .sm\:first\:ml-3:first-child{
    margin-left: 0.75rem;
  }

  .sm\:first\:mt-4:first-child{
    margin-top: 1rem;
  }

  .sm\:first\:mr-4:first-child{
    margin-right: 1rem;
  }

  .sm\:first\:mb-4:first-child{
    margin-bottom: 1rem;
  }

  .sm\:first\:ml-4:first-child{
    margin-left: 1rem;
  }

  .sm\:first\:mt-5:first-child{
    margin-top: 1.25rem;
  }

  .sm\:first\:mr-5:first-child{
    margin-right: 1.25rem;
  }

  .sm\:first\:mb-5:first-child{
    margin-bottom: 1.25rem;
  }

  .sm\:first\:ml-5:first-child{
    margin-left: 1.25rem;
  }

  .sm\:first\:mt-6:first-child{
    margin-top: 1.5rem;
  }

  .sm\:first\:mr-6:first-child{
    margin-right: 1.5rem;
  }

  .sm\:first\:mb-6:first-child{
    margin-bottom: 1.5rem;
  }

  .sm\:first\:ml-6:first-child{
    margin-left: 1.5rem;
  }

  .sm\:first\:mt-7:first-child{
    margin-top: 1.75rem;
  }

  .sm\:first\:mr-7:first-child{
    margin-right: 1.75rem;
  }

  .sm\:first\:mb-7:first-child{
    margin-bottom: 1.75rem;
  }

  .sm\:first\:ml-7:first-child{
    margin-left: 1.75rem;
  }

  .sm\:first\:mt-8:first-child{
    margin-top: 2rem;
  }

  .sm\:first\:mr-8:first-child{
    margin-right: 2rem;
  }

  .sm\:first\:mb-8:first-child{
    margin-bottom: 2rem;
  }

  .sm\:first\:ml-8:first-child{
    margin-left: 2rem;
  }

  .sm\:first\:mt-10:first-child{
    margin-top: 2.5rem;
  }

  .sm\:first\:mr-10:first-child{
    margin-right: 2.5rem;
  }

  .sm\:first\:mb-10:first-child{
    margin-bottom: 2.5rem;
  }

  .sm\:first\:ml-10:first-child{
    margin-left: 2.5rem;
  }

  .sm\:first\:mt-12:first-child{
    margin-top: 3rem;
  }

  .sm\:first\:mr-12:first-child{
    margin-right: 3rem;
  }

  .sm\:first\:mb-12:first-child{
    margin-bottom: 3rem;
  }

  .sm\:first\:ml-12:first-child{
    margin-left: 3rem;
  }

  .sm\:first\:mt-14:first-child{
    margin-top: 3.5rem;
  }

  .sm\:first\:mr-14:first-child{
    margin-right: 3.5rem;
  }

  .sm\:first\:mb-14:first-child{
    margin-bottom: 3.5rem;
  }

  .sm\:first\:ml-14:first-child{
    margin-left: 3.5rem;
  }

  .sm\:first\:mt-16:first-child{
    margin-top: 4rem;
  }

  .sm\:first\:mr-16:first-child{
    margin-right: 4rem;
  }

  .sm\:first\:mb-16:first-child{
    margin-bottom: 4rem;
  }

  .sm\:first\:ml-16:first-child{
    margin-left: 4rem;
  }

  .sm\:first\:mt-18:first-child{
    margin-top: 4.5rem;
  }

  .sm\:first\:mr-18:first-child{
    margin-right: 4.5rem;
  }

  .sm\:first\:mb-18:first-child{
    margin-bottom: 4.5rem;
  }

  .sm\:first\:ml-18:first-child{
    margin-left: 4.5rem;
  }

  .sm\:first\:mt-20:first-child{
    margin-top: 5rem;
  }

  .sm\:first\:mr-20:first-child{
    margin-right: 5rem;
  }

  .sm\:first\:mb-20:first-child{
    margin-bottom: 5rem;
  }

  .sm\:first\:ml-20:first-child{
    margin-left: 5rem;
  }

  .sm\:first\:mt-24:first-child{
    margin-top: 6rem;
  }

  .sm\:first\:mr-24:first-child{
    margin-right: 6rem;
  }

  .sm\:first\:mb-24:first-child{
    margin-bottom: 6rem;
  }

  .sm\:first\:ml-24:first-child{
    margin-left: 6rem;
  }

  .sm\:first\:mt-32:first-child{
    margin-top: 8rem;
  }

  .sm\:first\:mr-32:first-child{
    margin-right: 8rem;
  }

  .sm\:first\:mb-32:first-child{
    margin-bottom: 8rem;
  }

  .sm\:first\:ml-32:first-child{
    margin-left: 8rem;
  }

  .sm\:first\:mt-40:first-child{
    margin-top: 10rem;
  }

  .sm\:first\:mr-40:first-child{
    margin-right: 10rem;
  }

  .sm\:first\:mb-40:first-child{
    margin-bottom: 10rem;
  }

  .sm\:first\:ml-40:first-child{
    margin-left: 10rem;
  }

  .sm\:first\:mt-48:first-child{
    margin-top: 12rem;
  }

  .sm\:first\:mr-48:first-child{
    margin-right: 12rem;
  }

  .sm\:first\:mb-48:first-child{
    margin-bottom: 12rem;
  }

  .sm\:first\:ml-48:first-child{
    margin-left: 12rem;
  }

  .sm\:first\:mt-56:first-child{
    margin-top: 14rem;
  }

  .sm\:first\:mr-56:first-child{
    margin-right: 14rem;
  }

  .sm\:first\:mb-56:first-child{
    margin-bottom: 14rem;
  }

  .sm\:first\:ml-56:first-child{
    margin-left: 14rem;
  }

  .sm\:first\:mt-64:first-child{
    margin-top: 16rem;
  }

  .sm\:first\:mr-64:first-child{
    margin-right: 16rem;
  }

  .sm\:first\:mb-64:first-child{
    margin-bottom: 16rem;
  }

  .sm\:first\:ml-64:first-child{
    margin-left: 16rem;
  }

  .sm\:first\:mt-auto:first-child{
    margin-top: auto;
  }

  .sm\:first\:mr-auto:first-child{
    margin-right: auto;
  }

  .sm\:first\:mb-auto:first-child{
    margin-bottom: auto;
  }

  .sm\:first\:ml-auto:first-child{
    margin-left: auto;
  }

  .sm\:first\:mt-px:first-child{
    margin-top: 1px;
  }

  .sm\:first\:mr-px:first-child{
    margin-right: 1px;
  }

  .sm\:first\:mb-px:first-child{
    margin-bottom: 1px;
  }

  .sm\:first\:ml-px:first-child{
    margin-left: 1px;
  }

  .sm\:first\:-mt-1:first-child{
    margin-top: -0.25rem;
  }

  .sm\:first\:-mr-1:first-child{
    margin-right: -0.25rem;
  }

  .sm\:first\:-mb-1:first-child{
    margin-bottom: -0.25rem;
  }

  .sm\:first\:-ml-1:first-child{
    margin-left: -0.25rem;
  }

  .sm\:first\:-mt-2:first-child{
    margin-top: -0.5rem;
  }

  .sm\:first\:-mr-2:first-child{
    margin-right: -0.5rem;
  }

  .sm\:first\:-mb-2:first-child{
    margin-bottom: -0.5rem;
  }

  .sm\:first\:-ml-2:first-child{
    margin-left: -0.5rem;
  }

  .sm\:first\:-mt-3:first-child{
    margin-top: -0.75rem;
  }

  .sm\:first\:-mr-3:first-child{
    margin-right: -0.75rem;
  }

  .sm\:first\:-mb-3:first-child{
    margin-bottom: -0.75rem;
  }

  .sm\:first\:-ml-3:first-child{
    margin-left: -0.75rem;
  }

  .sm\:first\:-mt-4:first-child{
    margin-top: -1rem;
  }

  .sm\:first\:-mr-4:first-child{
    margin-right: -1rem;
  }

  .sm\:first\:-mb-4:first-child{
    margin-bottom: -1rem;
  }

  .sm\:first\:-ml-4:first-child{
    margin-left: -1rem;
  }

  .sm\:first\:-mt-5:first-child{
    margin-top: -1.25rem;
  }

  .sm\:first\:-mr-5:first-child{
    margin-right: -1.25rem;
  }

  .sm\:first\:-mb-5:first-child{
    margin-bottom: -1.25rem;
  }

  .sm\:first\:-ml-5:first-child{
    margin-left: -1.25rem;
  }

  .sm\:first\:-mt-6:first-child{
    margin-top: -1.5rem;
  }

  .sm\:first\:-mr-6:first-child{
    margin-right: -1.5rem;
  }

  .sm\:first\:-mb-6:first-child{
    margin-bottom: -1.5rem;
  }

  .sm\:first\:-ml-6:first-child{
    margin-left: -1.5rem;
  }

  .sm\:first\:-mt-8:first-child{
    margin-top: -2rem;
  }

  .sm\:first\:-mr-8:first-child{
    margin-right: -2rem;
  }

  .sm\:first\:-mb-8:first-child{
    margin-bottom: -2rem;
  }

  .sm\:first\:-ml-8:first-child{
    margin-left: -2rem;
  }

  .sm\:first\:-mt-10:first-child{
    margin-top: -2.5rem;
  }

  .sm\:first\:-mr-10:first-child{
    margin-right: -2.5rem;
  }

  .sm\:first\:-mb-10:first-child{
    margin-bottom: -2.5rem;
  }

  .sm\:first\:-ml-10:first-child{
    margin-left: -2.5rem;
  }

  .sm\:first\:-mt-12:first-child{
    margin-top: -3rem;
  }

  .sm\:first\:-mr-12:first-child{
    margin-right: -3rem;
  }

  .sm\:first\:-mb-12:first-child{
    margin-bottom: -3rem;
  }

  .sm\:first\:-ml-12:first-child{
    margin-left: -3rem;
  }

  .sm\:first\:-mt-14:first-child{
    margin-top: -3.5rem;
  }

  .sm\:first\:-mr-14:first-child{
    margin-right: -3.5rem;
  }

  .sm\:first\:-mb-14:first-child{
    margin-bottom: -3.5rem;
  }

  .sm\:first\:-ml-14:first-child{
    margin-left: -3.5rem;
  }

  .sm\:first\:-mt-16:first-child{
    margin-top: -4rem;
  }

  .sm\:first\:-mr-16:first-child{
    margin-right: -4rem;
  }

  .sm\:first\:-mb-16:first-child{
    margin-bottom: -4rem;
  }

  .sm\:first\:-ml-16:first-child{
    margin-left: -4rem;
  }

  .sm\:first\:-mt-20:first-child{
    margin-top: -5rem;
  }

  .sm\:first\:-mr-20:first-child{
    margin-right: -5rem;
  }

  .sm\:first\:-mb-20:first-child{
    margin-bottom: -5rem;
  }

  .sm\:first\:-ml-20:first-child{
    margin-left: -5rem;
  }

  .sm\:first\:-mt-24:first-child{
    margin-top: -6rem;
  }

  .sm\:first\:-mr-24:first-child{
    margin-right: -6rem;
  }

  .sm\:first\:-mb-24:first-child{
    margin-bottom: -6rem;
  }

  .sm\:first\:-ml-24:first-child{
    margin-left: -6rem;
  }

  .sm\:first\:-mt-32:first-child{
    margin-top: -8rem;
  }

  .sm\:first\:-mr-32:first-child{
    margin-right: -8rem;
  }

  .sm\:first\:-mb-32:first-child{
    margin-bottom: -8rem;
  }

  .sm\:first\:-ml-32:first-child{
    margin-left: -8rem;
  }

  .sm\:first\:-mt-40:first-child{
    margin-top: -10rem;
  }

  .sm\:first\:-mr-40:first-child{
    margin-right: -10rem;
  }

  .sm\:first\:-mb-40:first-child{
    margin-bottom: -10rem;
  }

  .sm\:first\:-ml-40:first-child{
    margin-left: -10rem;
  }

  .sm\:first\:-mt-48:first-child{
    margin-top: -12rem;
  }

  .sm\:first\:-mr-48:first-child{
    margin-right: -12rem;
  }

  .sm\:first\:-mb-48:first-child{
    margin-bottom: -12rem;
  }

  .sm\:first\:-ml-48:first-child{
    margin-left: -12rem;
  }

  .sm\:first\:-mt-56:first-child{
    margin-top: -14rem;
  }

  .sm\:first\:-mr-56:first-child{
    margin-right: -14rem;
  }

  .sm\:first\:-mb-56:first-child{
    margin-bottom: -14rem;
  }

  .sm\:first\:-ml-56:first-child{
    margin-left: -14rem;
  }

  .sm\:first\:-mt-64:first-child{
    margin-top: -16rem;
  }

  .sm\:first\:-mr-64:first-child{
    margin-right: -16rem;
  }

  .sm\:first\:-mb-64:first-child{
    margin-bottom: -16rem;
  }

  .sm\:first\:-ml-64:first-child{
    margin-left: -16rem;
  }

  .sm\:first\:-mt-px:first-child{
    margin-top: -1px;
  }

  .sm\:first\:-mr-px:first-child{
    margin-right: -1px;
  }

  .sm\:first\:-mb-px:first-child{
    margin-bottom: -1px;
  }

  .sm\:first\:-ml-px:first-child{
    margin-left: -1px;
  }

  .sm\:first\:mt-bin:first-child{
    margin-top: -0.313rem;
  }

  .sm\:first\:mr-bin:first-child{
    margin-right: -0.313rem;
  }

  .sm\:first\:mb-bin:first-child{
    margin-bottom: -0.313rem;
  }

  .sm\:first\:ml-bin:first-child{
    margin-left: -0.313rem;
  }

  .sm\:first\:-mt-0\.25:first-child{
    margin-top: -0.0625rem;
  }

  .sm\:first\:-mr-0\.25:first-child{
    margin-right: -0.0625rem;
  }

  .sm\:first\:-mb-0\.25:first-child{
    margin-bottom: -0.0625rem;
  }

  .sm\:first\:-ml-0\.25:first-child{
    margin-left: -0.0625rem;
  }

  .sm\:first\:mt-0\.25:first-child{
    margin-top: 0.0625rem;
  }

  .sm\:first\:mr-0\.25:first-child{
    margin-right: 0.0625rem;
  }

  .sm\:first\:mb-0\.25:first-child{
    margin-bottom: 0.0625rem;
  }

  .sm\:first\:ml-0\.25:first-child{
    margin-left: 0.0625rem;
  }

  .sm\:first\:mt-3\.125:first-child{
    margin-top: 3.125rem;
  }

  .sm\:first\:mr-3\.125:first-child{
    margin-right: 3.125rem;
  }

  .sm\:first\:mb-3\.125:first-child{
    margin-bottom: 3.125rem;
  }

  .sm\:first\:ml-3\.125:first-child{
    margin-left: 3.125rem;
  }

  .sm\:first\:mt-modal:first-child{
    margin-top: 6.25rem;
  }

  .sm\:first\:mr-modal:first-child{
    margin-right: 6.25rem;
  }

  .sm\:first\:mb-modal:first-child{
    margin-bottom: 6.25rem;
  }

  .sm\:first\:ml-modal:first-child{
    margin-left: 6.25rem;
  }

  .sm\:first\:mt-sidebar:first-child{
    margin-top: 25rem;
  }

  .sm\:first\:mr-sidebar:first-child{
    margin-right: 25rem;
  }

  .sm\:first\:mb-sidebar:first-child{
    margin-bottom: 25rem;
  }

  .sm\:first\:ml-sidebar:first-child{
    margin-left: 25rem;
  }

  .sm\:last\:m-0:last-child{
    margin: 0;
  }

  .sm\:last\:m-1:last-child{
    margin: 0.25rem;
  }

  .sm\:last\:m-2:last-child{
    margin: 0.5rem;
  }

  .sm\:last\:m-3:last-child{
    margin: 0.75rem;
  }

  .sm\:last\:m-4:last-child{
    margin: 1rem;
  }

  .sm\:last\:m-5:last-child{
    margin: 1.25rem;
  }

  .sm\:last\:m-6:last-child{
    margin: 1.5rem;
  }

  .sm\:last\:m-7:last-child{
    margin: 1.75rem;
  }

  .sm\:last\:m-8:last-child{
    margin: 2rem;
  }

  .sm\:last\:m-10:last-child{
    margin: 2.5rem;
  }

  .sm\:last\:m-12:last-child{
    margin: 3rem;
  }

  .sm\:last\:m-14:last-child{
    margin: 3.5rem;
  }

  .sm\:last\:m-16:last-child{
    margin: 4rem;
  }

  .sm\:last\:m-18:last-child{
    margin: 4.5rem;
  }

  .sm\:last\:m-20:last-child{
    margin: 5rem;
  }

  .sm\:last\:m-24:last-child{
    margin: 6rem;
  }

  .sm\:last\:m-32:last-child{
    margin: 8rem;
  }

  .sm\:last\:m-40:last-child{
    margin: 10rem;
  }

  .sm\:last\:m-48:last-child{
    margin: 12rem;
  }

  .sm\:last\:m-56:last-child{
    margin: 14rem;
  }

  .sm\:last\:m-64:last-child{
    margin: 16rem;
  }

  .sm\:last\:m-auto:last-child{
    margin: auto;
  }

  .sm\:last\:m-px:last-child{
    margin: 1px;
  }

  .sm\:last\:-m-1:last-child{
    margin: -0.25rem;
  }

  .sm\:last\:-m-2:last-child{
    margin: -0.5rem;
  }

  .sm\:last\:-m-3:last-child{
    margin: -0.75rem;
  }

  .sm\:last\:-m-4:last-child{
    margin: -1rem;
  }

  .sm\:last\:-m-5:last-child{
    margin: -1.25rem;
  }

  .sm\:last\:-m-6:last-child{
    margin: -1.5rem;
  }

  .sm\:last\:-m-8:last-child{
    margin: -2rem;
  }

  .sm\:last\:-m-10:last-child{
    margin: -2.5rem;
  }

  .sm\:last\:-m-12:last-child{
    margin: -3rem;
  }

  .sm\:last\:-m-14:last-child{
    margin: -3.5rem;
  }

  .sm\:last\:-m-16:last-child{
    margin: -4rem;
  }

  .sm\:last\:-m-20:last-child{
    margin: -5rem;
  }

  .sm\:last\:-m-24:last-child{
    margin: -6rem;
  }

  .sm\:last\:-m-32:last-child{
    margin: -8rem;
  }

  .sm\:last\:-m-40:last-child{
    margin: -10rem;
  }

  .sm\:last\:-m-48:last-child{
    margin: -12rem;
  }

  .sm\:last\:-m-56:last-child{
    margin: -14rem;
  }

  .sm\:last\:-m-64:last-child{
    margin: -16rem;
  }

  .sm\:last\:-m-px:last-child{
    margin: -1px;
  }

  .sm\:last\:m-bin:last-child{
    margin: -0.313rem;
  }

  .sm\:last\:-m-0\.25:last-child{
    margin: -0.0625rem;
  }

  .sm\:last\:m-0\.25:last-child{
    margin: 0.0625rem;
  }

  .sm\:last\:m-3\.125:last-child{
    margin: 3.125rem;
  }

  .sm\:last\:m-modal:last-child{
    margin: 6.25rem;
  }

  .sm\:last\:m-sidebar:last-child{
    margin: 25rem;
  }

  .sm\:last\:my-0:last-child{
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm\:last\:mx-0:last-child{
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:last\:my-1:last-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .sm\:last\:mx-1:last-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .sm\:last\:my-2:last-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .sm\:last\:mx-2:last-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .sm\:last\:my-3:last-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .sm\:last\:mx-3:last-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .sm\:last\:my-4:last-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .sm\:last\:mx-4:last-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:last\:my-5:last-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .sm\:last\:mx-5:last-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .sm\:last\:my-6:last-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm\:last\:mx-6:last-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:last\:my-7:last-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .sm\:last\:mx-7:last-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .sm\:last\:my-8:last-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:last\:mx-8:last-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:last\:my-10:last-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .sm\:last\:mx-10:last-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .sm\:last\:my-12:last-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:last\:mx-12:last-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:last\:my-14:last-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .sm\:last\:mx-14:last-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .sm\:last\:my-16:last-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .sm\:last\:mx-16:last-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .sm\:last\:my-18:last-child{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .sm\:last\:mx-18:last-child{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .sm\:last\:my-20:last-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .sm\:last\:mx-20:last-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .sm\:last\:my-24:last-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .sm\:last\:mx-24:last-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .sm\:last\:my-32:last-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .sm\:last\:mx-32:last-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .sm\:last\:my-40:last-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .sm\:last\:mx-40:last-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .sm\:last\:my-48:last-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .sm\:last\:mx-48:last-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .sm\:last\:my-56:last-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .sm\:last\:mx-56:last-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .sm\:last\:my-64:last-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .sm\:last\:mx-64:last-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .sm\:last\:my-auto:last-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .sm\:last\:mx-auto:last-child{
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:last\:my-px:last-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .sm\:last\:mx-px:last-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .sm\:last\:-my-1:last-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .sm\:last\:-mx-1:last-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .sm\:last\:-my-2:last-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .sm\:last\:-mx-2:last-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .sm\:last\:-my-3:last-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .sm\:last\:-mx-3:last-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .sm\:last\:-my-4:last-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .sm\:last\:-mx-4:last-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .sm\:last\:-my-5:last-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .sm\:last\:-mx-5:last-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .sm\:last\:-my-6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .sm\:last\:-mx-6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .sm\:last\:-my-8:last-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .sm\:last\:-mx-8:last-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .sm\:last\:-my-10:last-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .sm\:last\:-mx-10:last-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .sm\:last\:-my-12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .sm\:last\:-mx-12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .sm\:last\:-my-14:last-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .sm\:last\:-mx-14:last-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .sm\:last\:-my-16:last-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .sm\:last\:-mx-16:last-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .sm\:last\:-my-20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .sm\:last\:-mx-20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .sm\:last\:-my-24:last-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .sm\:last\:-mx-24:last-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .sm\:last\:-my-32:last-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .sm\:last\:-mx-32:last-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .sm\:last\:-my-40:last-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .sm\:last\:-mx-40:last-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .sm\:last\:-my-48:last-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .sm\:last\:-mx-48:last-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .sm\:last\:-my-56:last-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .sm\:last\:-mx-56:last-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .sm\:last\:-my-64:last-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .sm\:last\:-mx-64:last-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .sm\:last\:-my-px:last-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .sm\:last\:-mx-px:last-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .sm\:last\:my-bin:last-child{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .sm\:last\:mx-bin:last-child{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .sm\:last\:-my-0\.25:last-child{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .sm\:last\:-mx-0\.25:last-child{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .sm\:last\:my-0\.25:last-child{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .sm\:last\:mx-0\.25:last-child{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .sm\:last\:my-3\.125:last-child{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .sm\:last\:mx-3\.125:last-child{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .sm\:last\:my-modal:last-child{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .sm\:last\:mx-modal:last-child{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .sm\:last\:my-sidebar:last-child{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .sm\:last\:mx-sidebar:last-child{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .sm\:last\:mt-0:last-child{
    margin-top: 0;
  }

  .sm\:last\:mr-0:last-child{
    margin-right: 0;
  }

  .sm\:last\:mb-0:last-child{
    margin-bottom: 0;
  }

  .sm\:last\:ml-0:last-child{
    margin-left: 0;
  }

  .sm\:last\:mt-1:last-child{
    margin-top: 0.25rem;
  }

  .sm\:last\:mr-1:last-child{
    margin-right: 0.25rem;
  }

  .sm\:last\:mb-1:last-child{
    margin-bottom: 0.25rem;
  }

  .sm\:last\:ml-1:last-child{
    margin-left: 0.25rem;
  }

  .sm\:last\:mt-2:last-child{
    margin-top: 0.5rem;
  }

  .sm\:last\:mr-2:last-child{
    margin-right: 0.5rem;
  }

  .sm\:last\:mb-2:last-child{
    margin-bottom: 0.5rem;
  }

  .sm\:last\:ml-2:last-child{
    margin-left: 0.5rem;
  }

  .sm\:last\:mt-3:last-child{
    margin-top: 0.75rem;
  }

  .sm\:last\:mr-3:last-child{
    margin-right: 0.75rem;
  }

  .sm\:last\:mb-3:last-child{
    margin-bottom: 0.75rem;
  }

  .sm\:last\:ml-3:last-child{
    margin-left: 0.75rem;
  }

  .sm\:last\:mt-4:last-child{
    margin-top: 1rem;
  }

  .sm\:last\:mr-4:last-child{
    margin-right: 1rem;
  }

  .sm\:last\:mb-4:last-child{
    margin-bottom: 1rem;
  }

  .sm\:last\:ml-4:last-child{
    margin-left: 1rem;
  }

  .sm\:last\:mt-5:last-child{
    margin-top: 1.25rem;
  }

  .sm\:last\:mr-5:last-child{
    margin-right: 1.25rem;
  }

  .sm\:last\:mb-5:last-child{
    margin-bottom: 1.25rem;
  }

  .sm\:last\:ml-5:last-child{
    margin-left: 1.25rem;
  }

  .sm\:last\:mt-6:last-child{
    margin-top: 1.5rem;
  }

  .sm\:last\:mr-6:last-child{
    margin-right: 1.5rem;
  }

  .sm\:last\:mb-6:last-child{
    margin-bottom: 1.5rem;
  }

  .sm\:last\:ml-6:last-child{
    margin-left: 1.5rem;
  }

  .sm\:last\:mt-7:last-child{
    margin-top: 1.75rem;
  }

  .sm\:last\:mr-7:last-child{
    margin-right: 1.75rem;
  }

  .sm\:last\:mb-7:last-child{
    margin-bottom: 1.75rem;
  }

  .sm\:last\:ml-7:last-child{
    margin-left: 1.75rem;
  }

  .sm\:last\:mt-8:last-child{
    margin-top: 2rem;
  }

  .sm\:last\:mr-8:last-child{
    margin-right: 2rem;
  }

  .sm\:last\:mb-8:last-child{
    margin-bottom: 2rem;
  }

  .sm\:last\:ml-8:last-child{
    margin-left: 2rem;
  }

  .sm\:last\:mt-10:last-child{
    margin-top: 2.5rem;
  }

  .sm\:last\:mr-10:last-child{
    margin-right: 2.5rem;
  }

  .sm\:last\:mb-10:last-child{
    margin-bottom: 2.5rem;
  }

  .sm\:last\:ml-10:last-child{
    margin-left: 2.5rem;
  }

  .sm\:last\:mt-12:last-child{
    margin-top: 3rem;
  }

  .sm\:last\:mr-12:last-child{
    margin-right: 3rem;
  }

  .sm\:last\:mb-12:last-child{
    margin-bottom: 3rem;
  }

  .sm\:last\:ml-12:last-child{
    margin-left: 3rem;
  }

  .sm\:last\:mt-14:last-child{
    margin-top: 3.5rem;
  }

  .sm\:last\:mr-14:last-child{
    margin-right: 3.5rem;
  }

  .sm\:last\:mb-14:last-child{
    margin-bottom: 3.5rem;
  }

  .sm\:last\:ml-14:last-child{
    margin-left: 3.5rem;
  }

  .sm\:last\:mt-16:last-child{
    margin-top: 4rem;
  }

  .sm\:last\:mr-16:last-child{
    margin-right: 4rem;
  }

  .sm\:last\:mb-16:last-child{
    margin-bottom: 4rem;
  }

  .sm\:last\:ml-16:last-child{
    margin-left: 4rem;
  }

  .sm\:last\:mt-18:last-child{
    margin-top: 4.5rem;
  }

  .sm\:last\:mr-18:last-child{
    margin-right: 4.5rem;
  }

  .sm\:last\:mb-18:last-child{
    margin-bottom: 4.5rem;
  }

  .sm\:last\:ml-18:last-child{
    margin-left: 4.5rem;
  }

  .sm\:last\:mt-20:last-child{
    margin-top: 5rem;
  }

  .sm\:last\:mr-20:last-child{
    margin-right: 5rem;
  }

  .sm\:last\:mb-20:last-child{
    margin-bottom: 5rem;
  }

  .sm\:last\:ml-20:last-child{
    margin-left: 5rem;
  }

  .sm\:last\:mt-24:last-child{
    margin-top: 6rem;
  }

  .sm\:last\:mr-24:last-child{
    margin-right: 6rem;
  }

  .sm\:last\:mb-24:last-child{
    margin-bottom: 6rem;
  }

  .sm\:last\:ml-24:last-child{
    margin-left: 6rem;
  }

  .sm\:last\:mt-32:last-child{
    margin-top: 8rem;
  }

  .sm\:last\:mr-32:last-child{
    margin-right: 8rem;
  }

  .sm\:last\:mb-32:last-child{
    margin-bottom: 8rem;
  }

  .sm\:last\:ml-32:last-child{
    margin-left: 8rem;
  }

  .sm\:last\:mt-40:last-child{
    margin-top: 10rem;
  }

  .sm\:last\:mr-40:last-child{
    margin-right: 10rem;
  }

  .sm\:last\:mb-40:last-child{
    margin-bottom: 10rem;
  }

  .sm\:last\:ml-40:last-child{
    margin-left: 10rem;
  }

  .sm\:last\:mt-48:last-child{
    margin-top: 12rem;
  }

  .sm\:last\:mr-48:last-child{
    margin-right: 12rem;
  }

  .sm\:last\:mb-48:last-child{
    margin-bottom: 12rem;
  }

  .sm\:last\:ml-48:last-child{
    margin-left: 12rem;
  }

  .sm\:last\:mt-56:last-child{
    margin-top: 14rem;
  }

  .sm\:last\:mr-56:last-child{
    margin-right: 14rem;
  }

  .sm\:last\:mb-56:last-child{
    margin-bottom: 14rem;
  }

  .sm\:last\:ml-56:last-child{
    margin-left: 14rem;
  }

  .sm\:last\:mt-64:last-child{
    margin-top: 16rem;
  }

  .sm\:last\:mr-64:last-child{
    margin-right: 16rem;
  }

  .sm\:last\:mb-64:last-child{
    margin-bottom: 16rem;
  }

  .sm\:last\:ml-64:last-child{
    margin-left: 16rem;
  }

  .sm\:last\:mt-auto:last-child{
    margin-top: auto;
  }

  .sm\:last\:mr-auto:last-child{
    margin-right: auto;
  }

  .sm\:last\:mb-auto:last-child{
    margin-bottom: auto;
  }

  .sm\:last\:ml-auto:last-child{
    margin-left: auto;
  }

  .sm\:last\:mt-px:last-child{
    margin-top: 1px;
  }

  .sm\:last\:mr-px:last-child{
    margin-right: 1px;
  }

  .sm\:last\:mb-px:last-child{
    margin-bottom: 1px;
  }

  .sm\:last\:ml-px:last-child{
    margin-left: 1px;
  }

  .sm\:last\:-mt-1:last-child{
    margin-top: -0.25rem;
  }

  .sm\:last\:-mr-1:last-child{
    margin-right: -0.25rem;
  }

  .sm\:last\:-mb-1:last-child{
    margin-bottom: -0.25rem;
  }

  .sm\:last\:-ml-1:last-child{
    margin-left: -0.25rem;
  }

  .sm\:last\:-mt-2:last-child{
    margin-top: -0.5rem;
  }

  .sm\:last\:-mr-2:last-child{
    margin-right: -0.5rem;
  }

  .sm\:last\:-mb-2:last-child{
    margin-bottom: -0.5rem;
  }

  .sm\:last\:-ml-2:last-child{
    margin-left: -0.5rem;
  }

  .sm\:last\:-mt-3:last-child{
    margin-top: -0.75rem;
  }

  .sm\:last\:-mr-3:last-child{
    margin-right: -0.75rem;
  }

  .sm\:last\:-mb-3:last-child{
    margin-bottom: -0.75rem;
  }

  .sm\:last\:-ml-3:last-child{
    margin-left: -0.75rem;
  }

  .sm\:last\:-mt-4:last-child{
    margin-top: -1rem;
  }

  .sm\:last\:-mr-4:last-child{
    margin-right: -1rem;
  }

  .sm\:last\:-mb-4:last-child{
    margin-bottom: -1rem;
  }

  .sm\:last\:-ml-4:last-child{
    margin-left: -1rem;
  }

  .sm\:last\:-mt-5:last-child{
    margin-top: -1.25rem;
  }

  .sm\:last\:-mr-5:last-child{
    margin-right: -1.25rem;
  }

  .sm\:last\:-mb-5:last-child{
    margin-bottom: -1.25rem;
  }

  .sm\:last\:-ml-5:last-child{
    margin-left: -1.25rem;
  }

  .sm\:last\:-mt-6:last-child{
    margin-top: -1.5rem;
  }

  .sm\:last\:-mr-6:last-child{
    margin-right: -1.5rem;
  }

  .sm\:last\:-mb-6:last-child{
    margin-bottom: -1.5rem;
  }

  .sm\:last\:-ml-6:last-child{
    margin-left: -1.5rem;
  }

  .sm\:last\:-mt-8:last-child{
    margin-top: -2rem;
  }

  .sm\:last\:-mr-8:last-child{
    margin-right: -2rem;
  }

  .sm\:last\:-mb-8:last-child{
    margin-bottom: -2rem;
  }

  .sm\:last\:-ml-8:last-child{
    margin-left: -2rem;
  }

  .sm\:last\:-mt-10:last-child{
    margin-top: -2.5rem;
  }

  .sm\:last\:-mr-10:last-child{
    margin-right: -2.5rem;
  }

  .sm\:last\:-mb-10:last-child{
    margin-bottom: -2.5rem;
  }

  .sm\:last\:-ml-10:last-child{
    margin-left: -2.5rem;
  }

  .sm\:last\:-mt-12:last-child{
    margin-top: -3rem;
  }

  .sm\:last\:-mr-12:last-child{
    margin-right: -3rem;
  }

  .sm\:last\:-mb-12:last-child{
    margin-bottom: -3rem;
  }

  .sm\:last\:-ml-12:last-child{
    margin-left: -3rem;
  }

  .sm\:last\:-mt-14:last-child{
    margin-top: -3.5rem;
  }

  .sm\:last\:-mr-14:last-child{
    margin-right: -3.5rem;
  }

  .sm\:last\:-mb-14:last-child{
    margin-bottom: -3.5rem;
  }

  .sm\:last\:-ml-14:last-child{
    margin-left: -3.5rem;
  }

  .sm\:last\:-mt-16:last-child{
    margin-top: -4rem;
  }

  .sm\:last\:-mr-16:last-child{
    margin-right: -4rem;
  }

  .sm\:last\:-mb-16:last-child{
    margin-bottom: -4rem;
  }

  .sm\:last\:-ml-16:last-child{
    margin-left: -4rem;
  }

  .sm\:last\:-mt-20:last-child{
    margin-top: -5rem;
  }

  .sm\:last\:-mr-20:last-child{
    margin-right: -5rem;
  }

  .sm\:last\:-mb-20:last-child{
    margin-bottom: -5rem;
  }

  .sm\:last\:-ml-20:last-child{
    margin-left: -5rem;
  }

  .sm\:last\:-mt-24:last-child{
    margin-top: -6rem;
  }

  .sm\:last\:-mr-24:last-child{
    margin-right: -6rem;
  }

  .sm\:last\:-mb-24:last-child{
    margin-bottom: -6rem;
  }

  .sm\:last\:-ml-24:last-child{
    margin-left: -6rem;
  }

  .sm\:last\:-mt-32:last-child{
    margin-top: -8rem;
  }

  .sm\:last\:-mr-32:last-child{
    margin-right: -8rem;
  }

  .sm\:last\:-mb-32:last-child{
    margin-bottom: -8rem;
  }

  .sm\:last\:-ml-32:last-child{
    margin-left: -8rem;
  }

  .sm\:last\:-mt-40:last-child{
    margin-top: -10rem;
  }

  .sm\:last\:-mr-40:last-child{
    margin-right: -10rem;
  }

  .sm\:last\:-mb-40:last-child{
    margin-bottom: -10rem;
  }

  .sm\:last\:-ml-40:last-child{
    margin-left: -10rem;
  }

  .sm\:last\:-mt-48:last-child{
    margin-top: -12rem;
  }

  .sm\:last\:-mr-48:last-child{
    margin-right: -12rem;
  }

  .sm\:last\:-mb-48:last-child{
    margin-bottom: -12rem;
  }

  .sm\:last\:-ml-48:last-child{
    margin-left: -12rem;
  }

  .sm\:last\:-mt-56:last-child{
    margin-top: -14rem;
  }

  .sm\:last\:-mr-56:last-child{
    margin-right: -14rem;
  }

  .sm\:last\:-mb-56:last-child{
    margin-bottom: -14rem;
  }

  .sm\:last\:-ml-56:last-child{
    margin-left: -14rem;
  }

  .sm\:last\:-mt-64:last-child{
    margin-top: -16rem;
  }

  .sm\:last\:-mr-64:last-child{
    margin-right: -16rem;
  }

  .sm\:last\:-mb-64:last-child{
    margin-bottom: -16rem;
  }

  .sm\:last\:-ml-64:last-child{
    margin-left: -16rem;
  }

  .sm\:last\:-mt-px:last-child{
    margin-top: -1px;
  }

  .sm\:last\:-mr-px:last-child{
    margin-right: -1px;
  }

  .sm\:last\:-mb-px:last-child{
    margin-bottom: -1px;
  }

  .sm\:last\:-ml-px:last-child{
    margin-left: -1px;
  }

  .sm\:last\:mt-bin:last-child{
    margin-top: -0.313rem;
  }

  .sm\:last\:mr-bin:last-child{
    margin-right: -0.313rem;
  }

  .sm\:last\:mb-bin:last-child{
    margin-bottom: -0.313rem;
  }

  .sm\:last\:ml-bin:last-child{
    margin-left: -0.313rem;
  }

  .sm\:last\:-mt-0\.25:last-child{
    margin-top: -0.0625rem;
  }

  .sm\:last\:-mr-0\.25:last-child{
    margin-right: -0.0625rem;
  }

  .sm\:last\:-mb-0\.25:last-child{
    margin-bottom: -0.0625rem;
  }

  .sm\:last\:-ml-0\.25:last-child{
    margin-left: -0.0625rem;
  }

  .sm\:last\:mt-0\.25:last-child{
    margin-top: 0.0625rem;
  }

  .sm\:last\:mr-0\.25:last-child{
    margin-right: 0.0625rem;
  }

  .sm\:last\:mb-0\.25:last-child{
    margin-bottom: 0.0625rem;
  }

  .sm\:last\:ml-0\.25:last-child{
    margin-left: 0.0625rem;
  }

  .sm\:last\:mt-3\.125:last-child{
    margin-top: 3.125rem;
  }

  .sm\:last\:mr-3\.125:last-child{
    margin-right: 3.125rem;
  }

  .sm\:last\:mb-3\.125:last-child{
    margin-bottom: 3.125rem;
  }

  .sm\:last\:ml-3\.125:last-child{
    margin-left: 3.125rem;
  }

  .sm\:last\:mt-modal:last-child{
    margin-top: 6.25rem;
  }

  .sm\:last\:mr-modal:last-child{
    margin-right: 6.25rem;
  }

  .sm\:last\:mb-modal:last-child{
    margin-bottom: 6.25rem;
  }

  .sm\:last\:ml-modal:last-child{
    margin-left: 6.25rem;
  }

  .sm\:last\:mt-sidebar:last-child{
    margin-top: 25rem;
  }

  .sm\:last\:mr-sidebar:last-child{
    margin-right: 25rem;
  }

  .sm\:last\:mb-sidebar:last-child{
    margin-bottom: 25rem;
  }

  .sm\:last\:ml-sidebar:last-child{
    margin-left: 25rem;
  }

  .sm\:max-h-full{
    max-height: 100%;
  }

  .sm\:max-h-screen{
    max-height: 100vh;
  }

  .sm\:hover\:max-h-full:hover{
    max-height: 100%;
  }

  .sm\:hover\:max-h-screen:hover{
    max-height: 100vh;
  }

  .sm\:focus\:max-h-full:focus{
    max-height: 100%;
  }

  .sm\:focus\:max-h-screen:focus{
    max-height: 100vh;
  }

  .sm\:active\:max-h-full:active{
    max-height: 100%;
  }

  .sm\:active\:max-h-screen:active{
    max-height: 100vh;
  }

  .sm\:first\:max-h-full:first-child{
    max-height: 100%;
  }

  .sm\:first\:max-h-screen:first-child{
    max-height: 100vh;
  }

  .sm\:last\:max-h-full:last-child{
    max-height: 100%;
  }

  .sm\:last\:max-h-screen:last-child{
    max-height: 100vh;
  }

  .sm\:max-w-none{
    max-width: none;
  }

  .sm\:max-w-xs{
    max-width: 20rem;
  }

  .sm\:max-w-sm{
    max-width: 24rem;
  }

  .sm\:max-w-md{
    max-width: 28rem;
  }

  .sm\:max-w-lg{
    max-width: 32rem;
  }

  .sm\:max-w-xl{
    max-width: 36rem;
  }

  .sm\:max-w-2xl{
    max-width: 42rem;
  }

  .sm\:max-w-3xl{
    max-width: 48rem;
  }

  .sm\:max-w-4xl{
    max-width: 56rem;
  }

  .sm\:max-w-5xl{
    max-width: 64rem;
  }

  .sm\:max-w-6xl{
    max-width: 72rem;
  }

  .sm\:max-w-full{
    max-width: 100%;
  }

  .sm\:max-w-screen-sm{
    max-width: 640px;
  }

  .sm\:max-w-screen-s1440{
    max-width: 1430px;
  }

  .sm\:max-w-screen-s1920{
    max-width: 1910px;
  }

  .sm\:max-w-page{
    max-width: 80rem;
  }

  .sm\:max-w-container{
    max-width: 77.25rem;
  }

  .sm\:max-w-modalMd{
    max-width: 37.5rem;
  }

  .sm\:max-w-modalMdXl{
    max-width: 52.5rem;
  }

  .sm\:max-w-modalLg{
    max-width: 77.25rem;
  }

  .sm\:max-w-input{
    max-width: 32.5rem;
  }

  .sm\:max-w-halfInput{
    max-width: 16.25rem;
  }

  .sm\:max-w-formContainer{
    max-width: 47.875rem;
  }

  .sm\:max-w-sidebar{
    max-width: 27rem;
  }

  .sm\:max-w-doubleSidebar{
    max-width: 475px;
  }

  .sm\:max-w-practiceSidebarContent{
    max-width: 49.5rem;
  }

  .sm\:max-w-doubleSidebarContent{
    max-width: 950px;
  }

  .sm\:hover\:max-w-none:hover{
    max-width: none;
  }

  .sm\:hover\:max-w-xs:hover{
    max-width: 20rem;
  }

  .sm\:hover\:max-w-sm:hover{
    max-width: 24rem;
  }

  .sm\:hover\:max-w-md:hover{
    max-width: 28rem;
  }

  .sm\:hover\:max-w-lg:hover{
    max-width: 32rem;
  }

  .sm\:hover\:max-w-xl:hover{
    max-width: 36rem;
  }

  .sm\:hover\:max-w-2xl:hover{
    max-width: 42rem;
  }

  .sm\:hover\:max-w-3xl:hover{
    max-width: 48rem;
  }

  .sm\:hover\:max-w-4xl:hover{
    max-width: 56rem;
  }

  .sm\:hover\:max-w-5xl:hover{
    max-width: 64rem;
  }

  .sm\:hover\:max-w-6xl:hover{
    max-width: 72rem;
  }

  .sm\:hover\:max-w-full:hover{
    max-width: 100%;
  }

  .sm\:hover\:max-w-screen-sm:hover{
    max-width: 640px;
  }

  .sm\:hover\:max-w-screen-s1440:hover{
    max-width: 1430px;
  }

  .sm\:hover\:max-w-screen-s1920:hover{
    max-width: 1910px;
  }

  .sm\:hover\:max-w-page:hover{
    max-width: 80rem;
  }

  .sm\:hover\:max-w-container:hover{
    max-width: 77.25rem;
  }

  .sm\:hover\:max-w-modalMd:hover{
    max-width: 37.5rem;
  }

  .sm\:hover\:max-w-modalMdXl:hover{
    max-width: 52.5rem;
  }

  .sm\:hover\:max-w-modalLg:hover{
    max-width: 77.25rem;
  }

  .sm\:hover\:max-w-input:hover{
    max-width: 32.5rem;
  }

  .sm\:hover\:max-w-halfInput:hover{
    max-width: 16.25rem;
  }

  .sm\:hover\:max-w-formContainer:hover{
    max-width: 47.875rem;
  }

  .sm\:hover\:max-w-sidebar:hover{
    max-width: 27rem;
  }

  .sm\:hover\:max-w-doubleSidebar:hover{
    max-width: 475px;
  }

  .sm\:hover\:max-w-practiceSidebarContent:hover{
    max-width: 49.5rem;
  }

  .sm\:hover\:max-w-doubleSidebarContent:hover{
    max-width: 950px;
  }

  .sm\:focus\:max-w-none:focus{
    max-width: none;
  }

  .sm\:focus\:max-w-xs:focus{
    max-width: 20rem;
  }

  .sm\:focus\:max-w-sm:focus{
    max-width: 24rem;
  }

  .sm\:focus\:max-w-md:focus{
    max-width: 28rem;
  }

  .sm\:focus\:max-w-lg:focus{
    max-width: 32rem;
  }

  .sm\:focus\:max-w-xl:focus{
    max-width: 36rem;
  }

  .sm\:focus\:max-w-2xl:focus{
    max-width: 42rem;
  }

  .sm\:focus\:max-w-3xl:focus{
    max-width: 48rem;
  }

  .sm\:focus\:max-w-4xl:focus{
    max-width: 56rem;
  }

  .sm\:focus\:max-w-5xl:focus{
    max-width: 64rem;
  }

  .sm\:focus\:max-w-6xl:focus{
    max-width: 72rem;
  }

  .sm\:focus\:max-w-full:focus{
    max-width: 100%;
  }

  .sm\:focus\:max-w-screen-sm:focus{
    max-width: 640px;
  }

  .sm\:focus\:max-w-screen-s1440:focus{
    max-width: 1430px;
  }

  .sm\:focus\:max-w-screen-s1920:focus{
    max-width: 1910px;
  }

  .sm\:focus\:max-w-page:focus{
    max-width: 80rem;
  }

  .sm\:focus\:max-w-container:focus{
    max-width: 77.25rem;
  }

  .sm\:focus\:max-w-modalMd:focus{
    max-width: 37.5rem;
  }

  .sm\:focus\:max-w-modalMdXl:focus{
    max-width: 52.5rem;
  }

  .sm\:focus\:max-w-modalLg:focus{
    max-width: 77.25rem;
  }

  .sm\:focus\:max-w-input:focus{
    max-width: 32.5rem;
  }

  .sm\:focus\:max-w-halfInput:focus{
    max-width: 16.25rem;
  }

  .sm\:focus\:max-w-formContainer:focus{
    max-width: 47.875rem;
  }

  .sm\:focus\:max-w-sidebar:focus{
    max-width: 27rem;
  }

  .sm\:focus\:max-w-doubleSidebar:focus{
    max-width: 475px;
  }

  .sm\:focus\:max-w-practiceSidebarContent:focus{
    max-width: 49.5rem;
  }

  .sm\:focus\:max-w-doubleSidebarContent:focus{
    max-width: 950px;
  }

  .sm\:active\:max-w-none:active{
    max-width: none;
  }

  .sm\:active\:max-w-xs:active{
    max-width: 20rem;
  }

  .sm\:active\:max-w-sm:active{
    max-width: 24rem;
  }

  .sm\:active\:max-w-md:active{
    max-width: 28rem;
  }

  .sm\:active\:max-w-lg:active{
    max-width: 32rem;
  }

  .sm\:active\:max-w-xl:active{
    max-width: 36rem;
  }

  .sm\:active\:max-w-2xl:active{
    max-width: 42rem;
  }

  .sm\:active\:max-w-3xl:active{
    max-width: 48rem;
  }

  .sm\:active\:max-w-4xl:active{
    max-width: 56rem;
  }

  .sm\:active\:max-w-5xl:active{
    max-width: 64rem;
  }

  .sm\:active\:max-w-6xl:active{
    max-width: 72rem;
  }

  .sm\:active\:max-w-full:active{
    max-width: 100%;
  }

  .sm\:active\:max-w-screen-sm:active{
    max-width: 640px;
  }

  .sm\:active\:max-w-screen-s1440:active{
    max-width: 1430px;
  }

  .sm\:active\:max-w-screen-s1920:active{
    max-width: 1910px;
  }

  .sm\:active\:max-w-page:active{
    max-width: 80rem;
  }

  .sm\:active\:max-w-container:active{
    max-width: 77.25rem;
  }

  .sm\:active\:max-w-modalMd:active{
    max-width: 37.5rem;
  }

  .sm\:active\:max-w-modalMdXl:active{
    max-width: 52.5rem;
  }

  .sm\:active\:max-w-modalLg:active{
    max-width: 77.25rem;
  }

  .sm\:active\:max-w-input:active{
    max-width: 32.5rem;
  }

  .sm\:active\:max-w-halfInput:active{
    max-width: 16.25rem;
  }

  .sm\:active\:max-w-formContainer:active{
    max-width: 47.875rem;
  }

  .sm\:active\:max-w-sidebar:active{
    max-width: 27rem;
  }

  .sm\:active\:max-w-doubleSidebar:active{
    max-width: 475px;
  }

  .sm\:active\:max-w-practiceSidebarContent:active{
    max-width: 49.5rem;
  }

  .sm\:active\:max-w-doubleSidebarContent:active{
    max-width: 950px;
  }

  .sm\:first\:max-w-none:first-child{
    max-width: none;
  }

  .sm\:first\:max-w-xs:first-child{
    max-width: 20rem;
  }

  .sm\:first\:max-w-sm:first-child{
    max-width: 24rem;
  }

  .sm\:first\:max-w-md:first-child{
    max-width: 28rem;
  }

  .sm\:first\:max-w-lg:first-child{
    max-width: 32rem;
  }

  .sm\:first\:max-w-xl:first-child{
    max-width: 36rem;
  }

  .sm\:first\:max-w-2xl:first-child{
    max-width: 42rem;
  }

  .sm\:first\:max-w-3xl:first-child{
    max-width: 48rem;
  }

  .sm\:first\:max-w-4xl:first-child{
    max-width: 56rem;
  }

  .sm\:first\:max-w-5xl:first-child{
    max-width: 64rem;
  }

  .sm\:first\:max-w-6xl:first-child{
    max-width: 72rem;
  }

  .sm\:first\:max-w-full:first-child{
    max-width: 100%;
  }

  .sm\:first\:max-w-screen-sm:first-child{
    max-width: 640px;
  }

  .sm\:first\:max-w-screen-s1440:first-child{
    max-width: 1430px;
  }

  .sm\:first\:max-w-screen-s1920:first-child{
    max-width: 1910px;
  }

  .sm\:first\:max-w-page:first-child{
    max-width: 80rem;
  }

  .sm\:first\:max-w-container:first-child{
    max-width: 77.25rem;
  }

  .sm\:first\:max-w-modalMd:first-child{
    max-width: 37.5rem;
  }

  .sm\:first\:max-w-modalMdXl:first-child{
    max-width: 52.5rem;
  }

  .sm\:first\:max-w-modalLg:first-child{
    max-width: 77.25rem;
  }

  .sm\:first\:max-w-input:first-child{
    max-width: 32.5rem;
  }

  .sm\:first\:max-w-halfInput:first-child{
    max-width: 16.25rem;
  }

  .sm\:first\:max-w-formContainer:first-child{
    max-width: 47.875rem;
  }

  .sm\:first\:max-w-sidebar:first-child{
    max-width: 27rem;
  }

  .sm\:first\:max-w-doubleSidebar:first-child{
    max-width: 475px;
  }

  .sm\:first\:max-w-practiceSidebarContent:first-child{
    max-width: 49.5rem;
  }

  .sm\:first\:max-w-doubleSidebarContent:first-child{
    max-width: 950px;
  }

  .sm\:last\:max-w-none:last-child{
    max-width: none;
  }

  .sm\:last\:max-w-xs:last-child{
    max-width: 20rem;
  }

  .sm\:last\:max-w-sm:last-child{
    max-width: 24rem;
  }

  .sm\:last\:max-w-md:last-child{
    max-width: 28rem;
  }

  .sm\:last\:max-w-lg:last-child{
    max-width: 32rem;
  }

  .sm\:last\:max-w-xl:last-child{
    max-width: 36rem;
  }

  .sm\:last\:max-w-2xl:last-child{
    max-width: 42rem;
  }

  .sm\:last\:max-w-3xl:last-child{
    max-width: 48rem;
  }

  .sm\:last\:max-w-4xl:last-child{
    max-width: 56rem;
  }

  .sm\:last\:max-w-5xl:last-child{
    max-width: 64rem;
  }

  .sm\:last\:max-w-6xl:last-child{
    max-width: 72rem;
  }

  .sm\:last\:max-w-full:last-child{
    max-width: 100%;
  }

  .sm\:last\:max-w-screen-sm:last-child{
    max-width: 640px;
  }

  .sm\:last\:max-w-screen-s1440:last-child{
    max-width: 1430px;
  }

  .sm\:last\:max-w-screen-s1920:last-child{
    max-width: 1910px;
  }

  .sm\:last\:max-w-page:last-child{
    max-width: 80rem;
  }

  .sm\:last\:max-w-container:last-child{
    max-width: 77.25rem;
  }

  .sm\:last\:max-w-modalMd:last-child{
    max-width: 37.5rem;
  }

  .sm\:last\:max-w-modalMdXl:last-child{
    max-width: 52.5rem;
  }

  .sm\:last\:max-w-modalLg:last-child{
    max-width: 77.25rem;
  }

  .sm\:last\:max-w-input:last-child{
    max-width: 32.5rem;
  }

  .sm\:last\:max-w-halfInput:last-child{
    max-width: 16.25rem;
  }

  .sm\:last\:max-w-formContainer:last-child{
    max-width: 47.875rem;
  }

  .sm\:last\:max-w-sidebar:last-child{
    max-width: 27rem;
  }

  .sm\:last\:max-w-doubleSidebar:last-child{
    max-width: 475px;
  }

  .sm\:last\:max-w-practiceSidebarContent:last-child{
    max-width: 49.5rem;
  }

  .sm\:last\:max-w-doubleSidebarContent:last-child{
    max-width: 950px;
  }

  .sm\:min-h-0{
    min-height: 0;
  }

  .sm\:min-h-1{
    min-height: 0.25rem;
  }

  .sm\:min-h-2{
    min-height: 0.5rem;
  }

  .sm\:min-h-3{
    min-height: 0.75rem;
  }

  .sm\:min-h-4{
    min-height: 1rem;
  }

  .sm\:min-h-5{
    min-height: 1.25rem;
  }

  .sm\:min-h-6{
    min-height: 1.5rem;
  }

  .sm\:min-h-8{
    min-height: 2rem;
  }

  .sm\:min-h-10{
    min-height: 2.5rem;
  }

  .sm\:min-h-12{
    min-height: 3rem;
  }

  .sm\:min-h-14{
    min-height: 3.5rem;
  }

  .sm\:min-h-16{
    min-height: 4rem;
  }

  .sm\:min-h-20{
    min-height: 5rem;
  }

  .sm\:min-h-24{
    min-height: 6rem;
  }

  .sm\:min-h-28{
    min-height: 7rem;
  }

  .sm\:min-h-32{
    min-height: 8rem;
  }

  .sm\:min-h-40{
    min-height: 10rem;
  }

  .sm\:min-h-48{
    min-height: 12rem;
  }

  .sm\:min-h-56{
    min-height: 14rem;
  }

  .sm\:min-h-64{
    min-height: 16rem;
  }

  .sm\:min-h-full{
    min-height: 100%;
  }

  .sm\:min-h-screen{
    min-height: 100vh;
  }

  .sm\:min-h-auto{
    min-height: auto;
  }

  .sm\:min-h-px{
    min-height: 1px;
  }

  .sm\:min-h-modal{
    min-height: 20rem;
  }

  .sm\:hover\:min-h-0:hover{
    min-height: 0;
  }

  .sm\:hover\:min-h-1:hover{
    min-height: 0.25rem;
  }

  .sm\:hover\:min-h-2:hover{
    min-height: 0.5rem;
  }

  .sm\:hover\:min-h-3:hover{
    min-height: 0.75rem;
  }

  .sm\:hover\:min-h-4:hover{
    min-height: 1rem;
  }

  .sm\:hover\:min-h-5:hover{
    min-height: 1.25rem;
  }

  .sm\:hover\:min-h-6:hover{
    min-height: 1.5rem;
  }

  .sm\:hover\:min-h-8:hover{
    min-height: 2rem;
  }

  .sm\:hover\:min-h-10:hover{
    min-height: 2.5rem;
  }

  .sm\:hover\:min-h-12:hover{
    min-height: 3rem;
  }

  .sm\:hover\:min-h-14:hover{
    min-height: 3.5rem;
  }

  .sm\:hover\:min-h-16:hover{
    min-height: 4rem;
  }

  .sm\:hover\:min-h-20:hover{
    min-height: 5rem;
  }

  .sm\:hover\:min-h-24:hover{
    min-height: 6rem;
  }

  .sm\:hover\:min-h-28:hover{
    min-height: 7rem;
  }

  .sm\:hover\:min-h-32:hover{
    min-height: 8rem;
  }

  .sm\:hover\:min-h-40:hover{
    min-height: 10rem;
  }

  .sm\:hover\:min-h-48:hover{
    min-height: 12rem;
  }

  .sm\:hover\:min-h-56:hover{
    min-height: 14rem;
  }

  .sm\:hover\:min-h-64:hover{
    min-height: 16rem;
  }

  .sm\:hover\:min-h-full:hover{
    min-height: 100%;
  }

  .sm\:hover\:min-h-screen:hover{
    min-height: 100vh;
  }

  .sm\:hover\:min-h-auto:hover{
    min-height: auto;
  }

  .sm\:hover\:min-h-px:hover{
    min-height: 1px;
  }

  .sm\:hover\:min-h-modal:hover{
    min-height: 20rem;
  }

  .sm\:focus\:min-h-0:focus{
    min-height: 0;
  }

  .sm\:focus\:min-h-1:focus{
    min-height: 0.25rem;
  }

  .sm\:focus\:min-h-2:focus{
    min-height: 0.5rem;
  }

  .sm\:focus\:min-h-3:focus{
    min-height: 0.75rem;
  }

  .sm\:focus\:min-h-4:focus{
    min-height: 1rem;
  }

  .sm\:focus\:min-h-5:focus{
    min-height: 1.25rem;
  }

  .sm\:focus\:min-h-6:focus{
    min-height: 1.5rem;
  }

  .sm\:focus\:min-h-8:focus{
    min-height: 2rem;
  }

  .sm\:focus\:min-h-10:focus{
    min-height: 2.5rem;
  }

  .sm\:focus\:min-h-12:focus{
    min-height: 3rem;
  }

  .sm\:focus\:min-h-14:focus{
    min-height: 3.5rem;
  }

  .sm\:focus\:min-h-16:focus{
    min-height: 4rem;
  }

  .sm\:focus\:min-h-20:focus{
    min-height: 5rem;
  }

  .sm\:focus\:min-h-24:focus{
    min-height: 6rem;
  }

  .sm\:focus\:min-h-28:focus{
    min-height: 7rem;
  }

  .sm\:focus\:min-h-32:focus{
    min-height: 8rem;
  }

  .sm\:focus\:min-h-40:focus{
    min-height: 10rem;
  }

  .sm\:focus\:min-h-48:focus{
    min-height: 12rem;
  }

  .sm\:focus\:min-h-56:focus{
    min-height: 14rem;
  }

  .sm\:focus\:min-h-64:focus{
    min-height: 16rem;
  }

  .sm\:focus\:min-h-full:focus{
    min-height: 100%;
  }

  .sm\:focus\:min-h-screen:focus{
    min-height: 100vh;
  }

  .sm\:focus\:min-h-auto:focus{
    min-height: auto;
  }

  .sm\:focus\:min-h-px:focus{
    min-height: 1px;
  }

  .sm\:focus\:min-h-modal:focus{
    min-height: 20rem;
  }

  .sm\:active\:min-h-0:active{
    min-height: 0;
  }

  .sm\:active\:min-h-1:active{
    min-height: 0.25rem;
  }

  .sm\:active\:min-h-2:active{
    min-height: 0.5rem;
  }

  .sm\:active\:min-h-3:active{
    min-height: 0.75rem;
  }

  .sm\:active\:min-h-4:active{
    min-height: 1rem;
  }

  .sm\:active\:min-h-5:active{
    min-height: 1.25rem;
  }

  .sm\:active\:min-h-6:active{
    min-height: 1.5rem;
  }

  .sm\:active\:min-h-8:active{
    min-height: 2rem;
  }

  .sm\:active\:min-h-10:active{
    min-height: 2.5rem;
  }

  .sm\:active\:min-h-12:active{
    min-height: 3rem;
  }

  .sm\:active\:min-h-14:active{
    min-height: 3.5rem;
  }

  .sm\:active\:min-h-16:active{
    min-height: 4rem;
  }

  .sm\:active\:min-h-20:active{
    min-height: 5rem;
  }

  .sm\:active\:min-h-24:active{
    min-height: 6rem;
  }

  .sm\:active\:min-h-28:active{
    min-height: 7rem;
  }

  .sm\:active\:min-h-32:active{
    min-height: 8rem;
  }

  .sm\:active\:min-h-40:active{
    min-height: 10rem;
  }

  .sm\:active\:min-h-48:active{
    min-height: 12rem;
  }

  .sm\:active\:min-h-56:active{
    min-height: 14rem;
  }

  .sm\:active\:min-h-64:active{
    min-height: 16rem;
  }

  .sm\:active\:min-h-full:active{
    min-height: 100%;
  }

  .sm\:active\:min-h-screen:active{
    min-height: 100vh;
  }

  .sm\:active\:min-h-auto:active{
    min-height: auto;
  }

  .sm\:active\:min-h-px:active{
    min-height: 1px;
  }

  .sm\:active\:min-h-modal:active{
    min-height: 20rem;
  }

  .sm\:first\:min-h-0:first-child{
    min-height: 0;
  }

  .sm\:first\:min-h-1:first-child{
    min-height: 0.25rem;
  }

  .sm\:first\:min-h-2:first-child{
    min-height: 0.5rem;
  }

  .sm\:first\:min-h-3:first-child{
    min-height: 0.75rem;
  }

  .sm\:first\:min-h-4:first-child{
    min-height: 1rem;
  }

  .sm\:first\:min-h-5:first-child{
    min-height: 1.25rem;
  }

  .sm\:first\:min-h-6:first-child{
    min-height: 1.5rem;
  }

  .sm\:first\:min-h-8:first-child{
    min-height: 2rem;
  }

  .sm\:first\:min-h-10:first-child{
    min-height: 2.5rem;
  }

  .sm\:first\:min-h-12:first-child{
    min-height: 3rem;
  }

  .sm\:first\:min-h-14:first-child{
    min-height: 3.5rem;
  }

  .sm\:first\:min-h-16:first-child{
    min-height: 4rem;
  }

  .sm\:first\:min-h-20:first-child{
    min-height: 5rem;
  }

  .sm\:first\:min-h-24:first-child{
    min-height: 6rem;
  }

  .sm\:first\:min-h-28:first-child{
    min-height: 7rem;
  }

  .sm\:first\:min-h-32:first-child{
    min-height: 8rem;
  }

  .sm\:first\:min-h-40:first-child{
    min-height: 10rem;
  }

  .sm\:first\:min-h-48:first-child{
    min-height: 12rem;
  }

  .sm\:first\:min-h-56:first-child{
    min-height: 14rem;
  }

  .sm\:first\:min-h-64:first-child{
    min-height: 16rem;
  }

  .sm\:first\:min-h-full:first-child{
    min-height: 100%;
  }

  .sm\:first\:min-h-screen:first-child{
    min-height: 100vh;
  }

  .sm\:first\:min-h-auto:first-child{
    min-height: auto;
  }

  .sm\:first\:min-h-px:first-child{
    min-height: 1px;
  }

  .sm\:first\:min-h-modal:first-child{
    min-height: 20rem;
  }

  .sm\:last\:min-h-0:last-child{
    min-height: 0;
  }

  .sm\:last\:min-h-1:last-child{
    min-height: 0.25rem;
  }

  .sm\:last\:min-h-2:last-child{
    min-height: 0.5rem;
  }

  .sm\:last\:min-h-3:last-child{
    min-height: 0.75rem;
  }

  .sm\:last\:min-h-4:last-child{
    min-height: 1rem;
  }

  .sm\:last\:min-h-5:last-child{
    min-height: 1.25rem;
  }

  .sm\:last\:min-h-6:last-child{
    min-height: 1.5rem;
  }

  .sm\:last\:min-h-8:last-child{
    min-height: 2rem;
  }

  .sm\:last\:min-h-10:last-child{
    min-height: 2.5rem;
  }

  .sm\:last\:min-h-12:last-child{
    min-height: 3rem;
  }

  .sm\:last\:min-h-14:last-child{
    min-height: 3.5rem;
  }

  .sm\:last\:min-h-16:last-child{
    min-height: 4rem;
  }

  .sm\:last\:min-h-20:last-child{
    min-height: 5rem;
  }

  .sm\:last\:min-h-24:last-child{
    min-height: 6rem;
  }

  .sm\:last\:min-h-28:last-child{
    min-height: 7rem;
  }

  .sm\:last\:min-h-32:last-child{
    min-height: 8rem;
  }

  .sm\:last\:min-h-40:last-child{
    min-height: 10rem;
  }

  .sm\:last\:min-h-48:last-child{
    min-height: 12rem;
  }

  .sm\:last\:min-h-56:last-child{
    min-height: 14rem;
  }

  .sm\:last\:min-h-64:last-child{
    min-height: 16rem;
  }

  .sm\:last\:min-h-full:last-child{
    min-height: 100%;
  }

  .sm\:last\:min-h-screen:last-child{
    min-height: 100vh;
  }

  .sm\:last\:min-h-auto:last-child{
    min-height: auto;
  }

  .sm\:last\:min-h-px:last-child{
    min-height: 1px;
  }

  .sm\:last\:min-h-modal:last-child{
    min-height: 20rem;
  }

  .sm\:min-w-0{
    min-width: 0;
  }

  .sm\:min-w-1{
    min-width: 0.25rem;
  }

  .sm\:min-w-2{
    min-width: 0.5rem;
  }

  .sm\:min-w-3{
    min-width: 0.75rem;
  }

  .sm\:min-w-4{
    min-width: 1rem;
  }

  .sm\:min-w-5{
    min-width: 1.25rem;
  }

  .sm\:min-w-6{
    min-width: 1.5rem;
  }

  .sm\:min-w-8{
    min-width: 2rem;
  }

  .sm\:min-w-10{
    min-width: 2.5rem;
  }

  .sm\:min-w-12{
    min-width: 3rem;
  }

  .sm\:min-w-14{
    min-width: 3.5rem;
  }

  .sm\:min-w-16{
    min-width: 4rem;
  }

  .sm\:min-w-20{
    min-width: 5rem;
  }

  .sm\:min-w-24{
    min-width: 6rem;
  }

  .sm\:min-w-32{
    min-width: 8rem;
  }

  .sm\:min-w-36{
    min-width: 9rem;
  }

  .sm\:min-w-40{
    min-width: 10rem;
  }

  .sm\:min-w-48{
    min-width: 12rem;
  }

  .sm\:min-w-56{
    min-width: 14rem;
  }

  .sm\:min-w-64{
    min-width: 16rem;
  }

  .sm\:min-w-full{
    min-width: 100%;
  }

  .sm\:min-w-auto{
    min-width: auto;
  }

  .sm\:min-w-px{
    min-width: 1px;
  }

  .sm\:min-w-1\/2{
    min-width: 50%;
  }

  .sm\:min-w-1\/3{
    min-width: 33.333333%;
  }

  .sm\:min-w-2\/3{
    min-width: 66.666667%;
  }

  .sm\:min-w-1\/4{
    min-width: 25%;
  }

  .sm\:min-w-2\/4{
    min-width: 50%;
  }

  .sm\:min-w-3\/4{
    min-width: 75%;
  }

  .sm\:min-w-1\/5{
    min-width: 20%;
  }

  .sm\:min-w-2\/5{
    min-width: 40%;
  }

  .sm\:min-w-3\/5{
    min-width: 60%;
  }

  .sm\:min-w-4\/5{
    min-width: 80%;
  }

  .sm\:min-w-1\/6{
    min-width: 16.666667%;
  }

  .sm\:min-w-2\/6{
    min-width: 33.333333%;
  }

  .sm\:min-w-3\/6{
    min-width: 50%;
  }

  .sm\:min-w-4\/6{
    min-width: 66.666667%;
  }

  .sm\:min-w-5\/6{
    min-width: 83.333333%;
  }

  .sm\:min-w-1\/12{
    min-width: 8.333333%;
  }

  .sm\:min-w-2\/12{
    min-width: 16.666667%;
  }

  .sm\:min-w-3\/12{
    min-width: 25%;
  }

  .sm\:min-w-4\/12{
    min-width: 33.333333%;
  }

  .sm\:min-w-5\/12{
    min-width: 41.666667%;
  }

  .sm\:min-w-6\/12{
    min-width: 50%;
  }

  .sm\:min-w-7\/12{
    min-width: 58.333333%;
  }

  .sm\:min-w-8\/12{
    min-width: 66.666667%;
  }

  .sm\:min-w-9\/12{
    min-width: 75%;
  }

  .sm\:min-w-10\/12{
    min-width: 83.333333%;
  }

  .sm\:min-w-11\/12{
    min-width: 91.666667%;
  }

  .sm\:min-w-screen{
    min-width: 100vw;
  }

  .sm\:min-w-widePage{
    min-width: 120rem;
  }

  .sm\:min-w-page{
    min-width: 80rem;
  }

  .sm\:min-w-container{
    min-width: 77.25rem;
  }

  .sm\:min-w-tooltip{
    min-width: 25rem;
  }

  .sm\:min-w-smallTooltip{
    min-width: 15rem;
  }

  .sm\:min-w-xsmallTooltip{
    min-width: 6.0rem;
  }

  .sm\:min-w-sidebar{
    min-width: 27rem;
  }

  .sm\:min-w-doubleSidebar{
    min-width: 360px;
  }

  .sm\:min-w-practiceSidebar{
    min-width: 22.5rem;
  }

  .sm\:min-w-3\/8{
    min-width: 37.5%;
  }

  .sm\:min-w-1\/10{
    min-width: 10%;
  }

  .sm\:min-w-2\/10{
    min-width: 20%;
  }

  .sm\:min-w-3\/10{
    min-width: 30%;
  }

  .sm\:min-w-4\/10{
    min-width: 40%;
  }

  .sm\:min-w-5\/10{
    min-width: 50%;
  }

  .sm\:min-w-6\/10{
    min-width: 60%;
  }

  .sm\:min-w-7\/10{
    min-width: 70%;
  }

  .sm\:min-w-8\/10{
    min-width: 80%;
  }

  .sm\:min-w-9\/10{
    min-width: 90%;
  }

  .sm\:min-w-input{
    min-width: 15.75rem;
  }

  .sm\:min-w-inherit{
    min-width: inherit;
  }

  .sm\:min-w-modalMd{
    min-width: 37.5rem;
  }

  .sm\:min-w-modalMdXl{
    min-width: 52.5rem;
  }

  .sm\:min-w-modalLg{
    min-width: 77.25rem;
  }

  .sm\:min-w-doubleSidebarContent{
    min-width: 720px;
  }

  .sm\:hover\:min-w-0:hover{
    min-width: 0;
  }

  .sm\:hover\:min-w-1:hover{
    min-width: 0.25rem;
  }

  .sm\:hover\:min-w-2:hover{
    min-width: 0.5rem;
  }

  .sm\:hover\:min-w-3:hover{
    min-width: 0.75rem;
  }

  .sm\:hover\:min-w-4:hover{
    min-width: 1rem;
  }

  .sm\:hover\:min-w-5:hover{
    min-width: 1.25rem;
  }

  .sm\:hover\:min-w-6:hover{
    min-width: 1.5rem;
  }

  .sm\:hover\:min-w-8:hover{
    min-width: 2rem;
  }

  .sm\:hover\:min-w-10:hover{
    min-width: 2.5rem;
  }

  .sm\:hover\:min-w-12:hover{
    min-width: 3rem;
  }

  .sm\:hover\:min-w-14:hover{
    min-width: 3.5rem;
  }

  .sm\:hover\:min-w-16:hover{
    min-width: 4rem;
  }

  .sm\:hover\:min-w-20:hover{
    min-width: 5rem;
  }

  .sm\:hover\:min-w-24:hover{
    min-width: 6rem;
  }

  .sm\:hover\:min-w-32:hover{
    min-width: 8rem;
  }

  .sm\:hover\:min-w-36:hover{
    min-width: 9rem;
  }

  .sm\:hover\:min-w-40:hover{
    min-width: 10rem;
  }

  .sm\:hover\:min-w-48:hover{
    min-width: 12rem;
  }

  .sm\:hover\:min-w-56:hover{
    min-width: 14rem;
  }

  .sm\:hover\:min-w-64:hover{
    min-width: 16rem;
  }

  .sm\:hover\:min-w-full:hover{
    min-width: 100%;
  }

  .sm\:hover\:min-w-auto:hover{
    min-width: auto;
  }

  .sm\:hover\:min-w-px:hover{
    min-width: 1px;
  }

  .sm\:hover\:min-w-1\/2:hover{
    min-width: 50%;
  }

  .sm\:hover\:min-w-1\/3:hover{
    min-width: 33.333333%;
  }

  .sm\:hover\:min-w-2\/3:hover{
    min-width: 66.666667%;
  }

  .sm\:hover\:min-w-1\/4:hover{
    min-width: 25%;
  }

  .sm\:hover\:min-w-2\/4:hover{
    min-width: 50%;
  }

  .sm\:hover\:min-w-3\/4:hover{
    min-width: 75%;
  }

  .sm\:hover\:min-w-1\/5:hover{
    min-width: 20%;
  }

  .sm\:hover\:min-w-2\/5:hover{
    min-width: 40%;
  }

  .sm\:hover\:min-w-3\/5:hover{
    min-width: 60%;
  }

  .sm\:hover\:min-w-4\/5:hover{
    min-width: 80%;
  }

  .sm\:hover\:min-w-1\/6:hover{
    min-width: 16.666667%;
  }

  .sm\:hover\:min-w-2\/6:hover{
    min-width: 33.333333%;
  }

  .sm\:hover\:min-w-3\/6:hover{
    min-width: 50%;
  }

  .sm\:hover\:min-w-4\/6:hover{
    min-width: 66.666667%;
  }

  .sm\:hover\:min-w-5\/6:hover{
    min-width: 83.333333%;
  }

  .sm\:hover\:min-w-1\/12:hover{
    min-width: 8.333333%;
  }

  .sm\:hover\:min-w-2\/12:hover{
    min-width: 16.666667%;
  }

  .sm\:hover\:min-w-3\/12:hover{
    min-width: 25%;
  }

  .sm\:hover\:min-w-4\/12:hover{
    min-width: 33.333333%;
  }

  .sm\:hover\:min-w-5\/12:hover{
    min-width: 41.666667%;
  }

  .sm\:hover\:min-w-6\/12:hover{
    min-width: 50%;
  }

  .sm\:hover\:min-w-7\/12:hover{
    min-width: 58.333333%;
  }

  .sm\:hover\:min-w-8\/12:hover{
    min-width: 66.666667%;
  }

  .sm\:hover\:min-w-9\/12:hover{
    min-width: 75%;
  }

  .sm\:hover\:min-w-10\/12:hover{
    min-width: 83.333333%;
  }

  .sm\:hover\:min-w-11\/12:hover{
    min-width: 91.666667%;
  }

  .sm\:hover\:min-w-screen:hover{
    min-width: 100vw;
  }

  .sm\:hover\:min-w-widePage:hover{
    min-width: 120rem;
  }

  .sm\:hover\:min-w-page:hover{
    min-width: 80rem;
  }

  .sm\:hover\:min-w-container:hover{
    min-width: 77.25rem;
  }

  .sm\:hover\:min-w-tooltip:hover{
    min-width: 25rem;
  }

  .sm\:hover\:min-w-smallTooltip:hover{
    min-width: 15rem;
  }

  .sm\:hover\:min-w-xsmallTooltip:hover{
    min-width: 6.0rem;
  }

  .sm\:hover\:min-w-sidebar:hover{
    min-width: 27rem;
  }

  .sm\:hover\:min-w-doubleSidebar:hover{
    min-width: 360px;
  }

  .sm\:hover\:min-w-practiceSidebar:hover{
    min-width: 22.5rem;
  }

  .sm\:hover\:min-w-3\/8:hover{
    min-width: 37.5%;
  }

  .sm\:hover\:min-w-1\/10:hover{
    min-width: 10%;
  }

  .sm\:hover\:min-w-2\/10:hover{
    min-width: 20%;
  }

  .sm\:hover\:min-w-3\/10:hover{
    min-width: 30%;
  }

  .sm\:hover\:min-w-4\/10:hover{
    min-width: 40%;
  }

  .sm\:hover\:min-w-5\/10:hover{
    min-width: 50%;
  }

  .sm\:hover\:min-w-6\/10:hover{
    min-width: 60%;
  }

  .sm\:hover\:min-w-7\/10:hover{
    min-width: 70%;
  }

  .sm\:hover\:min-w-8\/10:hover{
    min-width: 80%;
  }

  .sm\:hover\:min-w-9\/10:hover{
    min-width: 90%;
  }

  .sm\:hover\:min-w-input:hover{
    min-width: 15.75rem;
  }

  .sm\:hover\:min-w-inherit:hover{
    min-width: inherit;
  }

  .sm\:hover\:min-w-modalMd:hover{
    min-width: 37.5rem;
  }

  .sm\:hover\:min-w-modalMdXl:hover{
    min-width: 52.5rem;
  }

  .sm\:hover\:min-w-modalLg:hover{
    min-width: 77.25rem;
  }

  .sm\:hover\:min-w-doubleSidebarContent:hover{
    min-width: 720px;
  }

  .sm\:focus\:min-w-0:focus{
    min-width: 0;
  }

  .sm\:focus\:min-w-1:focus{
    min-width: 0.25rem;
  }

  .sm\:focus\:min-w-2:focus{
    min-width: 0.5rem;
  }

  .sm\:focus\:min-w-3:focus{
    min-width: 0.75rem;
  }

  .sm\:focus\:min-w-4:focus{
    min-width: 1rem;
  }

  .sm\:focus\:min-w-5:focus{
    min-width: 1.25rem;
  }

  .sm\:focus\:min-w-6:focus{
    min-width: 1.5rem;
  }

  .sm\:focus\:min-w-8:focus{
    min-width: 2rem;
  }

  .sm\:focus\:min-w-10:focus{
    min-width: 2.5rem;
  }

  .sm\:focus\:min-w-12:focus{
    min-width: 3rem;
  }

  .sm\:focus\:min-w-14:focus{
    min-width: 3.5rem;
  }

  .sm\:focus\:min-w-16:focus{
    min-width: 4rem;
  }

  .sm\:focus\:min-w-20:focus{
    min-width: 5rem;
  }

  .sm\:focus\:min-w-24:focus{
    min-width: 6rem;
  }

  .sm\:focus\:min-w-32:focus{
    min-width: 8rem;
  }

  .sm\:focus\:min-w-36:focus{
    min-width: 9rem;
  }

  .sm\:focus\:min-w-40:focus{
    min-width: 10rem;
  }

  .sm\:focus\:min-w-48:focus{
    min-width: 12rem;
  }

  .sm\:focus\:min-w-56:focus{
    min-width: 14rem;
  }

  .sm\:focus\:min-w-64:focus{
    min-width: 16rem;
  }

  .sm\:focus\:min-w-full:focus{
    min-width: 100%;
  }

  .sm\:focus\:min-w-auto:focus{
    min-width: auto;
  }

  .sm\:focus\:min-w-px:focus{
    min-width: 1px;
  }

  .sm\:focus\:min-w-1\/2:focus{
    min-width: 50%;
  }

  .sm\:focus\:min-w-1\/3:focus{
    min-width: 33.333333%;
  }

  .sm\:focus\:min-w-2\/3:focus{
    min-width: 66.666667%;
  }

  .sm\:focus\:min-w-1\/4:focus{
    min-width: 25%;
  }

  .sm\:focus\:min-w-2\/4:focus{
    min-width: 50%;
  }

  .sm\:focus\:min-w-3\/4:focus{
    min-width: 75%;
  }

  .sm\:focus\:min-w-1\/5:focus{
    min-width: 20%;
  }

  .sm\:focus\:min-w-2\/5:focus{
    min-width: 40%;
  }

  .sm\:focus\:min-w-3\/5:focus{
    min-width: 60%;
  }

  .sm\:focus\:min-w-4\/5:focus{
    min-width: 80%;
  }

  .sm\:focus\:min-w-1\/6:focus{
    min-width: 16.666667%;
  }

  .sm\:focus\:min-w-2\/6:focus{
    min-width: 33.333333%;
  }

  .sm\:focus\:min-w-3\/6:focus{
    min-width: 50%;
  }

  .sm\:focus\:min-w-4\/6:focus{
    min-width: 66.666667%;
  }

  .sm\:focus\:min-w-5\/6:focus{
    min-width: 83.333333%;
  }

  .sm\:focus\:min-w-1\/12:focus{
    min-width: 8.333333%;
  }

  .sm\:focus\:min-w-2\/12:focus{
    min-width: 16.666667%;
  }

  .sm\:focus\:min-w-3\/12:focus{
    min-width: 25%;
  }

  .sm\:focus\:min-w-4\/12:focus{
    min-width: 33.333333%;
  }

  .sm\:focus\:min-w-5\/12:focus{
    min-width: 41.666667%;
  }

  .sm\:focus\:min-w-6\/12:focus{
    min-width: 50%;
  }

  .sm\:focus\:min-w-7\/12:focus{
    min-width: 58.333333%;
  }

  .sm\:focus\:min-w-8\/12:focus{
    min-width: 66.666667%;
  }

  .sm\:focus\:min-w-9\/12:focus{
    min-width: 75%;
  }

  .sm\:focus\:min-w-10\/12:focus{
    min-width: 83.333333%;
  }

  .sm\:focus\:min-w-11\/12:focus{
    min-width: 91.666667%;
  }

  .sm\:focus\:min-w-screen:focus{
    min-width: 100vw;
  }

  .sm\:focus\:min-w-widePage:focus{
    min-width: 120rem;
  }

  .sm\:focus\:min-w-page:focus{
    min-width: 80rem;
  }

  .sm\:focus\:min-w-container:focus{
    min-width: 77.25rem;
  }

  .sm\:focus\:min-w-tooltip:focus{
    min-width: 25rem;
  }

  .sm\:focus\:min-w-smallTooltip:focus{
    min-width: 15rem;
  }

  .sm\:focus\:min-w-xsmallTooltip:focus{
    min-width: 6.0rem;
  }

  .sm\:focus\:min-w-sidebar:focus{
    min-width: 27rem;
  }

  .sm\:focus\:min-w-doubleSidebar:focus{
    min-width: 360px;
  }

  .sm\:focus\:min-w-practiceSidebar:focus{
    min-width: 22.5rem;
  }

  .sm\:focus\:min-w-3\/8:focus{
    min-width: 37.5%;
  }

  .sm\:focus\:min-w-1\/10:focus{
    min-width: 10%;
  }

  .sm\:focus\:min-w-2\/10:focus{
    min-width: 20%;
  }

  .sm\:focus\:min-w-3\/10:focus{
    min-width: 30%;
  }

  .sm\:focus\:min-w-4\/10:focus{
    min-width: 40%;
  }

  .sm\:focus\:min-w-5\/10:focus{
    min-width: 50%;
  }

  .sm\:focus\:min-w-6\/10:focus{
    min-width: 60%;
  }

  .sm\:focus\:min-w-7\/10:focus{
    min-width: 70%;
  }

  .sm\:focus\:min-w-8\/10:focus{
    min-width: 80%;
  }

  .sm\:focus\:min-w-9\/10:focus{
    min-width: 90%;
  }

  .sm\:focus\:min-w-input:focus{
    min-width: 15.75rem;
  }

  .sm\:focus\:min-w-inherit:focus{
    min-width: inherit;
  }

  .sm\:focus\:min-w-modalMd:focus{
    min-width: 37.5rem;
  }

  .sm\:focus\:min-w-modalMdXl:focus{
    min-width: 52.5rem;
  }

  .sm\:focus\:min-w-modalLg:focus{
    min-width: 77.25rem;
  }

  .sm\:focus\:min-w-doubleSidebarContent:focus{
    min-width: 720px;
  }

  .sm\:active\:min-w-0:active{
    min-width: 0;
  }

  .sm\:active\:min-w-1:active{
    min-width: 0.25rem;
  }

  .sm\:active\:min-w-2:active{
    min-width: 0.5rem;
  }

  .sm\:active\:min-w-3:active{
    min-width: 0.75rem;
  }

  .sm\:active\:min-w-4:active{
    min-width: 1rem;
  }

  .sm\:active\:min-w-5:active{
    min-width: 1.25rem;
  }

  .sm\:active\:min-w-6:active{
    min-width: 1.5rem;
  }

  .sm\:active\:min-w-8:active{
    min-width: 2rem;
  }

  .sm\:active\:min-w-10:active{
    min-width: 2.5rem;
  }

  .sm\:active\:min-w-12:active{
    min-width: 3rem;
  }

  .sm\:active\:min-w-14:active{
    min-width: 3.5rem;
  }

  .sm\:active\:min-w-16:active{
    min-width: 4rem;
  }

  .sm\:active\:min-w-20:active{
    min-width: 5rem;
  }

  .sm\:active\:min-w-24:active{
    min-width: 6rem;
  }

  .sm\:active\:min-w-32:active{
    min-width: 8rem;
  }

  .sm\:active\:min-w-36:active{
    min-width: 9rem;
  }

  .sm\:active\:min-w-40:active{
    min-width: 10rem;
  }

  .sm\:active\:min-w-48:active{
    min-width: 12rem;
  }

  .sm\:active\:min-w-56:active{
    min-width: 14rem;
  }

  .sm\:active\:min-w-64:active{
    min-width: 16rem;
  }

  .sm\:active\:min-w-full:active{
    min-width: 100%;
  }

  .sm\:active\:min-w-auto:active{
    min-width: auto;
  }

  .sm\:active\:min-w-px:active{
    min-width: 1px;
  }

  .sm\:active\:min-w-1\/2:active{
    min-width: 50%;
  }

  .sm\:active\:min-w-1\/3:active{
    min-width: 33.333333%;
  }

  .sm\:active\:min-w-2\/3:active{
    min-width: 66.666667%;
  }

  .sm\:active\:min-w-1\/4:active{
    min-width: 25%;
  }

  .sm\:active\:min-w-2\/4:active{
    min-width: 50%;
  }

  .sm\:active\:min-w-3\/4:active{
    min-width: 75%;
  }

  .sm\:active\:min-w-1\/5:active{
    min-width: 20%;
  }

  .sm\:active\:min-w-2\/5:active{
    min-width: 40%;
  }

  .sm\:active\:min-w-3\/5:active{
    min-width: 60%;
  }

  .sm\:active\:min-w-4\/5:active{
    min-width: 80%;
  }

  .sm\:active\:min-w-1\/6:active{
    min-width: 16.666667%;
  }

  .sm\:active\:min-w-2\/6:active{
    min-width: 33.333333%;
  }

  .sm\:active\:min-w-3\/6:active{
    min-width: 50%;
  }

  .sm\:active\:min-w-4\/6:active{
    min-width: 66.666667%;
  }

  .sm\:active\:min-w-5\/6:active{
    min-width: 83.333333%;
  }

  .sm\:active\:min-w-1\/12:active{
    min-width: 8.333333%;
  }

  .sm\:active\:min-w-2\/12:active{
    min-width: 16.666667%;
  }

  .sm\:active\:min-w-3\/12:active{
    min-width: 25%;
  }

  .sm\:active\:min-w-4\/12:active{
    min-width: 33.333333%;
  }

  .sm\:active\:min-w-5\/12:active{
    min-width: 41.666667%;
  }

  .sm\:active\:min-w-6\/12:active{
    min-width: 50%;
  }

  .sm\:active\:min-w-7\/12:active{
    min-width: 58.333333%;
  }

  .sm\:active\:min-w-8\/12:active{
    min-width: 66.666667%;
  }

  .sm\:active\:min-w-9\/12:active{
    min-width: 75%;
  }

  .sm\:active\:min-w-10\/12:active{
    min-width: 83.333333%;
  }

  .sm\:active\:min-w-11\/12:active{
    min-width: 91.666667%;
  }

  .sm\:active\:min-w-screen:active{
    min-width: 100vw;
  }

  .sm\:active\:min-w-widePage:active{
    min-width: 120rem;
  }

  .sm\:active\:min-w-page:active{
    min-width: 80rem;
  }

  .sm\:active\:min-w-container:active{
    min-width: 77.25rem;
  }

  .sm\:active\:min-w-tooltip:active{
    min-width: 25rem;
  }

  .sm\:active\:min-w-smallTooltip:active{
    min-width: 15rem;
  }

  .sm\:active\:min-w-xsmallTooltip:active{
    min-width: 6.0rem;
  }

  .sm\:active\:min-w-sidebar:active{
    min-width: 27rem;
  }

  .sm\:active\:min-w-doubleSidebar:active{
    min-width: 360px;
  }

  .sm\:active\:min-w-practiceSidebar:active{
    min-width: 22.5rem;
  }

  .sm\:active\:min-w-3\/8:active{
    min-width: 37.5%;
  }

  .sm\:active\:min-w-1\/10:active{
    min-width: 10%;
  }

  .sm\:active\:min-w-2\/10:active{
    min-width: 20%;
  }

  .sm\:active\:min-w-3\/10:active{
    min-width: 30%;
  }

  .sm\:active\:min-w-4\/10:active{
    min-width: 40%;
  }

  .sm\:active\:min-w-5\/10:active{
    min-width: 50%;
  }

  .sm\:active\:min-w-6\/10:active{
    min-width: 60%;
  }

  .sm\:active\:min-w-7\/10:active{
    min-width: 70%;
  }

  .sm\:active\:min-w-8\/10:active{
    min-width: 80%;
  }

  .sm\:active\:min-w-9\/10:active{
    min-width: 90%;
  }

  .sm\:active\:min-w-input:active{
    min-width: 15.75rem;
  }

  .sm\:active\:min-w-inherit:active{
    min-width: inherit;
  }

  .sm\:active\:min-w-modalMd:active{
    min-width: 37.5rem;
  }

  .sm\:active\:min-w-modalMdXl:active{
    min-width: 52.5rem;
  }

  .sm\:active\:min-w-modalLg:active{
    min-width: 77.25rem;
  }

  .sm\:active\:min-w-doubleSidebarContent:active{
    min-width: 720px;
  }

  .sm\:first\:min-w-0:first-child{
    min-width: 0;
  }

  .sm\:first\:min-w-1:first-child{
    min-width: 0.25rem;
  }

  .sm\:first\:min-w-2:first-child{
    min-width: 0.5rem;
  }

  .sm\:first\:min-w-3:first-child{
    min-width: 0.75rem;
  }

  .sm\:first\:min-w-4:first-child{
    min-width: 1rem;
  }

  .sm\:first\:min-w-5:first-child{
    min-width: 1.25rem;
  }

  .sm\:first\:min-w-6:first-child{
    min-width: 1.5rem;
  }

  .sm\:first\:min-w-8:first-child{
    min-width: 2rem;
  }

  .sm\:first\:min-w-10:first-child{
    min-width: 2.5rem;
  }

  .sm\:first\:min-w-12:first-child{
    min-width: 3rem;
  }

  .sm\:first\:min-w-14:first-child{
    min-width: 3.5rem;
  }

  .sm\:first\:min-w-16:first-child{
    min-width: 4rem;
  }

  .sm\:first\:min-w-20:first-child{
    min-width: 5rem;
  }

  .sm\:first\:min-w-24:first-child{
    min-width: 6rem;
  }

  .sm\:first\:min-w-32:first-child{
    min-width: 8rem;
  }

  .sm\:first\:min-w-36:first-child{
    min-width: 9rem;
  }

  .sm\:first\:min-w-40:first-child{
    min-width: 10rem;
  }

  .sm\:first\:min-w-48:first-child{
    min-width: 12rem;
  }

  .sm\:first\:min-w-56:first-child{
    min-width: 14rem;
  }

  .sm\:first\:min-w-64:first-child{
    min-width: 16rem;
  }

  .sm\:first\:min-w-full:first-child{
    min-width: 100%;
  }

  .sm\:first\:min-w-auto:first-child{
    min-width: auto;
  }

  .sm\:first\:min-w-px:first-child{
    min-width: 1px;
  }

  .sm\:first\:min-w-1\/2:first-child{
    min-width: 50%;
  }

  .sm\:first\:min-w-1\/3:first-child{
    min-width: 33.333333%;
  }

  .sm\:first\:min-w-2\/3:first-child{
    min-width: 66.666667%;
  }

  .sm\:first\:min-w-1\/4:first-child{
    min-width: 25%;
  }

  .sm\:first\:min-w-2\/4:first-child{
    min-width: 50%;
  }

  .sm\:first\:min-w-3\/4:first-child{
    min-width: 75%;
  }

  .sm\:first\:min-w-1\/5:first-child{
    min-width: 20%;
  }

  .sm\:first\:min-w-2\/5:first-child{
    min-width: 40%;
  }

  .sm\:first\:min-w-3\/5:first-child{
    min-width: 60%;
  }

  .sm\:first\:min-w-4\/5:first-child{
    min-width: 80%;
  }

  .sm\:first\:min-w-1\/6:first-child{
    min-width: 16.666667%;
  }

  .sm\:first\:min-w-2\/6:first-child{
    min-width: 33.333333%;
  }

  .sm\:first\:min-w-3\/6:first-child{
    min-width: 50%;
  }

  .sm\:first\:min-w-4\/6:first-child{
    min-width: 66.666667%;
  }

  .sm\:first\:min-w-5\/6:first-child{
    min-width: 83.333333%;
  }

  .sm\:first\:min-w-1\/12:first-child{
    min-width: 8.333333%;
  }

  .sm\:first\:min-w-2\/12:first-child{
    min-width: 16.666667%;
  }

  .sm\:first\:min-w-3\/12:first-child{
    min-width: 25%;
  }

  .sm\:first\:min-w-4\/12:first-child{
    min-width: 33.333333%;
  }

  .sm\:first\:min-w-5\/12:first-child{
    min-width: 41.666667%;
  }

  .sm\:first\:min-w-6\/12:first-child{
    min-width: 50%;
  }

  .sm\:first\:min-w-7\/12:first-child{
    min-width: 58.333333%;
  }

  .sm\:first\:min-w-8\/12:first-child{
    min-width: 66.666667%;
  }

  .sm\:first\:min-w-9\/12:first-child{
    min-width: 75%;
  }

  .sm\:first\:min-w-10\/12:first-child{
    min-width: 83.333333%;
  }

  .sm\:first\:min-w-11\/12:first-child{
    min-width: 91.666667%;
  }

  .sm\:first\:min-w-screen:first-child{
    min-width: 100vw;
  }

  .sm\:first\:min-w-widePage:first-child{
    min-width: 120rem;
  }

  .sm\:first\:min-w-page:first-child{
    min-width: 80rem;
  }

  .sm\:first\:min-w-container:first-child{
    min-width: 77.25rem;
  }

  .sm\:first\:min-w-tooltip:first-child{
    min-width: 25rem;
  }

  .sm\:first\:min-w-smallTooltip:first-child{
    min-width: 15rem;
  }

  .sm\:first\:min-w-xsmallTooltip:first-child{
    min-width: 6.0rem;
  }

  .sm\:first\:min-w-sidebar:first-child{
    min-width: 27rem;
  }

  .sm\:first\:min-w-doubleSidebar:first-child{
    min-width: 360px;
  }

  .sm\:first\:min-w-practiceSidebar:first-child{
    min-width: 22.5rem;
  }

  .sm\:first\:min-w-3\/8:first-child{
    min-width: 37.5%;
  }

  .sm\:first\:min-w-1\/10:first-child{
    min-width: 10%;
  }

  .sm\:first\:min-w-2\/10:first-child{
    min-width: 20%;
  }

  .sm\:first\:min-w-3\/10:first-child{
    min-width: 30%;
  }

  .sm\:first\:min-w-4\/10:first-child{
    min-width: 40%;
  }

  .sm\:first\:min-w-5\/10:first-child{
    min-width: 50%;
  }

  .sm\:first\:min-w-6\/10:first-child{
    min-width: 60%;
  }

  .sm\:first\:min-w-7\/10:first-child{
    min-width: 70%;
  }

  .sm\:first\:min-w-8\/10:first-child{
    min-width: 80%;
  }

  .sm\:first\:min-w-9\/10:first-child{
    min-width: 90%;
  }

  .sm\:first\:min-w-input:first-child{
    min-width: 15.75rem;
  }

  .sm\:first\:min-w-inherit:first-child{
    min-width: inherit;
  }

  .sm\:first\:min-w-modalMd:first-child{
    min-width: 37.5rem;
  }

  .sm\:first\:min-w-modalMdXl:first-child{
    min-width: 52.5rem;
  }

  .sm\:first\:min-w-modalLg:first-child{
    min-width: 77.25rem;
  }

  .sm\:first\:min-w-doubleSidebarContent:first-child{
    min-width: 720px;
  }

  .sm\:last\:min-w-0:last-child{
    min-width: 0;
  }

  .sm\:last\:min-w-1:last-child{
    min-width: 0.25rem;
  }

  .sm\:last\:min-w-2:last-child{
    min-width: 0.5rem;
  }

  .sm\:last\:min-w-3:last-child{
    min-width: 0.75rem;
  }

  .sm\:last\:min-w-4:last-child{
    min-width: 1rem;
  }

  .sm\:last\:min-w-5:last-child{
    min-width: 1.25rem;
  }

  .sm\:last\:min-w-6:last-child{
    min-width: 1.5rem;
  }

  .sm\:last\:min-w-8:last-child{
    min-width: 2rem;
  }

  .sm\:last\:min-w-10:last-child{
    min-width: 2.5rem;
  }

  .sm\:last\:min-w-12:last-child{
    min-width: 3rem;
  }

  .sm\:last\:min-w-14:last-child{
    min-width: 3.5rem;
  }

  .sm\:last\:min-w-16:last-child{
    min-width: 4rem;
  }

  .sm\:last\:min-w-20:last-child{
    min-width: 5rem;
  }

  .sm\:last\:min-w-24:last-child{
    min-width: 6rem;
  }

  .sm\:last\:min-w-32:last-child{
    min-width: 8rem;
  }

  .sm\:last\:min-w-36:last-child{
    min-width: 9rem;
  }

  .sm\:last\:min-w-40:last-child{
    min-width: 10rem;
  }

  .sm\:last\:min-w-48:last-child{
    min-width: 12rem;
  }

  .sm\:last\:min-w-56:last-child{
    min-width: 14rem;
  }

  .sm\:last\:min-w-64:last-child{
    min-width: 16rem;
  }

  .sm\:last\:min-w-full:last-child{
    min-width: 100%;
  }

  .sm\:last\:min-w-auto:last-child{
    min-width: auto;
  }

  .sm\:last\:min-w-px:last-child{
    min-width: 1px;
  }

  .sm\:last\:min-w-1\/2:last-child{
    min-width: 50%;
  }

  .sm\:last\:min-w-1\/3:last-child{
    min-width: 33.333333%;
  }

  .sm\:last\:min-w-2\/3:last-child{
    min-width: 66.666667%;
  }

  .sm\:last\:min-w-1\/4:last-child{
    min-width: 25%;
  }

  .sm\:last\:min-w-2\/4:last-child{
    min-width: 50%;
  }

  .sm\:last\:min-w-3\/4:last-child{
    min-width: 75%;
  }

  .sm\:last\:min-w-1\/5:last-child{
    min-width: 20%;
  }

  .sm\:last\:min-w-2\/5:last-child{
    min-width: 40%;
  }

  .sm\:last\:min-w-3\/5:last-child{
    min-width: 60%;
  }

  .sm\:last\:min-w-4\/5:last-child{
    min-width: 80%;
  }

  .sm\:last\:min-w-1\/6:last-child{
    min-width: 16.666667%;
  }

  .sm\:last\:min-w-2\/6:last-child{
    min-width: 33.333333%;
  }

  .sm\:last\:min-w-3\/6:last-child{
    min-width: 50%;
  }

  .sm\:last\:min-w-4\/6:last-child{
    min-width: 66.666667%;
  }

  .sm\:last\:min-w-5\/6:last-child{
    min-width: 83.333333%;
  }

  .sm\:last\:min-w-1\/12:last-child{
    min-width: 8.333333%;
  }

  .sm\:last\:min-w-2\/12:last-child{
    min-width: 16.666667%;
  }

  .sm\:last\:min-w-3\/12:last-child{
    min-width: 25%;
  }

  .sm\:last\:min-w-4\/12:last-child{
    min-width: 33.333333%;
  }

  .sm\:last\:min-w-5\/12:last-child{
    min-width: 41.666667%;
  }

  .sm\:last\:min-w-6\/12:last-child{
    min-width: 50%;
  }

  .sm\:last\:min-w-7\/12:last-child{
    min-width: 58.333333%;
  }

  .sm\:last\:min-w-8\/12:last-child{
    min-width: 66.666667%;
  }

  .sm\:last\:min-w-9\/12:last-child{
    min-width: 75%;
  }

  .sm\:last\:min-w-10\/12:last-child{
    min-width: 83.333333%;
  }

  .sm\:last\:min-w-11\/12:last-child{
    min-width: 91.666667%;
  }

  .sm\:last\:min-w-screen:last-child{
    min-width: 100vw;
  }

  .sm\:last\:min-w-widePage:last-child{
    min-width: 120rem;
  }

  .sm\:last\:min-w-page:last-child{
    min-width: 80rem;
  }

  .sm\:last\:min-w-container:last-child{
    min-width: 77.25rem;
  }

  .sm\:last\:min-w-tooltip:last-child{
    min-width: 25rem;
  }

  .sm\:last\:min-w-smallTooltip:last-child{
    min-width: 15rem;
  }

  .sm\:last\:min-w-xsmallTooltip:last-child{
    min-width: 6.0rem;
  }

  .sm\:last\:min-w-sidebar:last-child{
    min-width: 27rem;
  }

  .sm\:last\:min-w-doubleSidebar:last-child{
    min-width: 360px;
  }

  .sm\:last\:min-w-practiceSidebar:last-child{
    min-width: 22.5rem;
  }

  .sm\:last\:min-w-3\/8:last-child{
    min-width: 37.5%;
  }

  .sm\:last\:min-w-1\/10:last-child{
    min-width: 10%;
  }

  .sm\:last\:min-w-2\/10:last-child{
    min-width: 20%;
  }

  .sm\:last\:min-w-3\/10:last-child{
    min-width: 30%;
  }

  .sm\:last\:min-w-4\/10:last-child{
    min-width: 40%;
  }

  .sm\:last\:min-w-5\/10:last-child{
    min-width: 50%;
  }

  .sm\:last\:min-w-6\/10:last-child{
    min-width: 60%;
  }

  .sm\:last\:min-w-7\/10:last-child{
    min-width: 70%;
  }

  .sm\:last\:min-w-8\/10:last-child{
    min-width: 80%;
  }

  .sm\:last\:min-w-9\/10:last-child{
    min-width: 90%;
  }

  .sm\:last\:min-w-input:last-child{
    min-width: 15.75rem;
  }

  .sm\:last\:min-w-inherit:last-child{
    min-width: inherit;
  }

  .sm\:last\:min-w-modalMd:last-child{
    min-width: 37.5rem;
  }

  .sm\:last\:min-w-modalMdXl:last-child{
    min-width: 52.5rem;
  }

  .sm\:last\:min-w-modalLg:last-child{
    min-width: 77.25rem;
  }

  .sm\:last\:min-w-doubleSidebarContent:last-child{
    min-width: 720px;
  }

  .sm\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .sm\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .sm\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .sm\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .sm\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .sm\:hover\:object-contain:hover{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .sm\:hover\:object-cover:hover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .sm\:hover\:object-fill:hover{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .sm\:hover\:object-none:hover{
    -o-object-fit: none;
       object-fit: none;
  }

  .sm\:hover\:object-scale-down:hover{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .sm\:focus\:object-contain:focus{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .sm\:focus\:object-cover:focus{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .sm\:focus\:object-fill:focus{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .sm\:focus\:object-none:focus{
    -o-object-fit: none;
       object-fit: none;
  }

  .sm\:focus\:object-scale-down:focus{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .sm\:active\:object-contain:active{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .sm\:active\:object-cover:active{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .sm\:active\:object-fill:active{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .sm\:active\:object-none:active{
    -o-object-fit: none;
       object-fit: none;
  }

  .sm\:active\:object-scale-down:active{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .sm\:first\:object-contain:first-child{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .sm\:first\:object-cover:first-child{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .sm\:first\:object-fill:first-child{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .sm\:first\:object-none:first-child{
    -o-object-fit: none;
       object-fit: none;
  }

  .sm\:first\:object-scale-down:first-child{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .sm\:last\:object-contain:last-child{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .sm\:last\:object-cover:last-child{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .sm\:last\:object-fill:last-child{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .sm\:last\:object-none:last-child{
    -o-object-fit: none;
       object-fit: none;
  }

  .sm\:last\:object-scale-down:last-child{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .sm\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .sm\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .sm\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .sm\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .sm\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .sm\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .sm\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .sm\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .sm\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .sm\:hover\:object-bottom:hover{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .sm\:hover\:object-center:hover{
    -o-object-position: center;
       object-position: center;
  }

  .sm\:hover\:object-left:hover{
    -o-object-position: left;
       object-position: left;
  }

  .sm\:hover\:object-left-bottom:hover{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .sm\:hover\:object-left-top:hover{
    -o-object-position: left top;
       object-position: left top;
  }

  .sm\:hover\:object-right:hover{
    -o-object-position: right;
       object-position: right;
  }

  .sm\:hover\:object-right-bottom:hover{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .sm\:hover\:object-right-top:hover{
    -o-object-position: right top;
       object-position: right top;
  }

  .sm\:hover\:object-top:hover{
    -o-object-position: top;
       object-position: top;
  }

  .sm\:focus\:object-bottom:focus{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .sm\:focus\:object-center:focus{
    -o-object-position: center;
       object-position: center;
  }

  .sm\:focus\:object-left:focus{
    -o-object-position: left;
       object-position: left;
  }

  .sm\:focus\:object-left-bottom:focus{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .sm\:focus\:object-left-top:focus{
    -o-object-position: left top;
       object-position: left top;
  }

  .sm\:focus\:object-right:focus{
    -o-object-position: right;
       object-position: right;
  }

  .sm\:focus\:object-right-bottom:focus{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .sm\:focus\:object-right-top:focus{
    -o-object-position: right top;
       object-position: right top;
  }

  .sm\:focus\:object-top:focus{
    -o-object-position: top;
       object-position: top;
  }

  .sm\:active\:object-bottom:active{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .sm\:active\:object-center:active{
    -o-object-position: center;
       object-position: center;
  }

  .sm\:active\:object-left:active{
    -o-object-position: left;
       object-position: left;
  }

  .sm\:active\:object-left-bottom:active{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .sm\:active\:object-left-top:active{
    -o-object-position: left top;
       object-position: left top;
  }

  .sm\:active\:object-right:active{
    -o-object-position: right;
       object-position: right;
  }

  .sm\:active\:object-right-bottom:active{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .sm\:active\:object-right-top:active{
    -o-object-position: right top;
       object-position: right top;
  }

  .sm\:active\:object-top:active{
    -o-object-position: top;
       object-position: top;
  }

  .sm\:first\:object-bottom:first-child{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .sm\:first\:object-center:first-child{
    -o-object-position: center;
       object-position: center;
  }

  .sm\:first\:object-left:first-child{
    -o-object-position: left;
       object-position: left;
  }

  .sm\:first\:object-left-bottom:first-child{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .sm\:first\:object-left-top:first-child{
    -o-object-position: left top;
       object-position: left top;
  }

  .sm\:first\:object-right:first-child{
    -o-object-position: right;
       object-position: right;
  }

  .sm\:first\:object-right-bottom:first-child{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .sm\:first\:object-right-top:first-child{
    -o-object-position: right top;
       object-position: right top;
  }

  .sm\:first\:object-top:first-child{
    -o-object-position: top;
       object-position: top;
  }

  .sm\:last\:object-bottom:last-child{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .sm\:last\:object-center:last-child{
    -o-object-position: center;
       object-position: center;
  }

  .sm\:last\:object-left:last-child{
    -o-object-position: left;
       object-position: left;
  }

  .sm\:last\:object-left-bottom:last-child{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .sm\:last\:object-left-top:last-child{
    -o-object-position: left top;
       object-position: left top;
  }

  .sm\:last\:object-right:last-child{
    -o-object-position: right;
       object-position: right;
  }

  .sm\:last\:object-right-bottom:last-child{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .sm\:last\:object-right-top:last-child{
    -o-object-position: right top;
       object-position: right top;
  }

  .sm\:last\:object-top:last-child{
    -o-object-position: top;
       object-position: top;
  }

  .sm\:opacity-0{
    opacity: 0;
  }

  .sm\:opacity-25{
    opacity: 0.25;
  }

  .sm\:opacity-50{
    opacity: .5;
  }

  .sm\:opacity-75{
    opacity: 0.75;
  }

  .sm\:opacity-80{
    opacity: .8;
  }

  .sm\:opacity-100{
    opacity: 1;
  }

  .sm\:hover\:opacity-0:hover{
    opacity: 0;
  }

  .sm\:hover\:opacity-25:hover{
    opacity: 0.25;
  }

  .sm\:hover\:opacity-50:hover{
    opacity: .5;
  }

  .sm\:hover\:opacity-75:hover{
    opacity: 0.75;
  }

  .sm\:hover\:opacity-80:hover{
    opacity: .8;
  }

  .sm\:hover\:opacity-100:hover{
    opacity: 1;
  }

  .sm\:focus\:opacity-0:focus{
    opacity: 0;
  }

  .sm\:focus\:opacity-25:focus{
    opacity: 0.25;
  }

  .sm\:focus\:opacity-50:focus{
    opacity: .5;
  }

  .sm\:focus\:opacity-75:focus{
    opacity: 0.75;
  }

  .sm\:focus\:opacity-80:focus{
    opacity: .8;
  }

  .sm\:focus\:opacity-100:focus{
    opacity: 1;
  }

  .sm\:active\:opacity-0:active{
    opacity: 0;
  }

  .sm\:active\:opacity-25:active{
    opacity: 0.25;
  }

  .sm\:active\:opacity-50:active{
    opacity: .5;
  }

  .sm\:active\:opacity-75:active{
    opacity: 0.75;
  }

  .sm\:active\:opacity-80:active{
    opacity: .8;
  }

  .sm\:active\:opacity-100:active{
    opacity: 1;
  }

  .sm\:first\:opacity-0:first-child{
    opacity: 0;
  }

  .sm\:first\:opacity-25:first-child{
    opacity: 0.25;
  }

  .sm\:first\:opacity-50:first-child{
    opacity: .5;
  }

  .sm\:first\:opacity-75:first-child{
    opacity: 0.75;
  }

  .sm\:first\:opacity-80:first-child{
    opacity: .8;
  }

  .sm\:first\:opacity-100:first-child{
    opacity: 1;
  }

  .sm\:last\:opacity-0:last-child{
    opacity: 0;
  }

  .sm\:last\:opacity-25:last-child{
    opacity: 0.25;
  }

  .sm\:last\:opacity-50:last-child{
    opacity: .5;
  }

  .sm\:last\:opacity-75:last-child{
    opacity: 0.75;
  }

  .sm\:last\:opacity-80:last-child{
    opacity: .8;
  }

  .sm\:last\:opacity-100:last-child{
    opacity: 1;
  }

  .sm\:outline-none{
    outline: 0;
  }

  .sm\:hover\:outline-none:hover{
    outline: 0;
  }

  .sm\:focus\:outline-none:focus{
    outline: 0;
  }

  .sm\:active\:outline-none:active{
    outline: 0;
  }

  .sm\:first\:outline-none:first-child{
    outline: 0;
  }

  .sm\:last\:outline-none:last-child{
    outline: 0;
  }

  .sm\:overflow-auto{
    overflow: auto;
  }

  .sm\:overflow-hidden{
    overflow: hidden;
  }

  .sm\:overflow-visible{
    overflow: visible;
  }

  .sm\:overflow-scroll{
    overflow: scroll;
  }

  .sm\:overflow-x-auto{
    overflow-x: auto;
  }

  .sm\:overflow-y-auto{
    overflow-y: auto;
  }

  .sm\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .sm\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .sm\:overflow-x-visible{
    overflow-x: visible;
  }

  .sm\:overflow-y-visible{
    overflow-y: visible;
  }

  .sm\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .sm\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .sm\:scrolling-touch{
    -webkit-overflow-scrolling: touch;
  }

  .sm\:scrolling-auto{
    -webkit-overflow-scrolling: auto;
  }

  .sm\:hover\:overflow-auto:hover{
    overflow: auto;
  }

  .sm\:hover\:overflow-hidden:hover{
    overflow: hidden;
  }

  .sm\:hover\:overflow-visible:hover{
    overflow: visible;
  }

  .sm\:hover\:overflow-scroll:hover{
    overflow: scroll;
  }

  .sm\:hover\:overflow-x-auto:hover{
    overflow-x: auto;
  }

  .sm\:hover\:overflow-y-auto:hover{
    overflow-y: auto;
  }

  .sm\:hover\:overflow-x-hidden:hover{
    overflow-x: hidden;
  }

  .sm\:hover\:overflow-y-hidden:hover{
    overflow-y: hidden;
  }

  .sm\:hover\:overflow-x-visible:hover{
    overflow-x: visible;
  }

  .sm\:hover\:overflow-y-visible:hover{
    overflow-y: visible;
  }

  .sm\:hover\:overflow-x-scroll:hover{
    overflow-x: scroll;
  }

  .sm\:hover\:overflow-y-scroll:hover{
    overflow-y: scroll;
  }

  .sm\:hover\:scrolling-touch:hover{
    -webkit-overflow-scrolling: touch;
  }

  .sm\:hover\:scrolling-auto:hover{
    -webkit-overflow-scrolling: auto;
  }

  .sm\:focus\:overflow-auto:focus{
    overflow: auto;
  }

  .sm\:focus\:overflow-hidden:focus{
    overflow: hidden;
  }

  .sm\:focus\:overflow-visible:focus{
    overflow: visible;
  }

  .sm\:focus\:overflow-scroll:focus{
    overflow: scroll;
  }

  .sm\:focus\:overflow-x-auto:focus{
    overflow-x: auto;
  }

  .sm\:focus\:overflow-y-auto:focus{
    overflow-y: auto;
  }

  .sm\:focus\:overflow-x-hidden:focus{
    overflow-x: hidden;
  }

  .sm\:focus\:overflow-y-hidden:focus{
    overflow-y: hidden;
  }

  .sm\:focus\:overflow-x-visible:focus{
    overflow-x: visible;
  }

  .sm\:focus\:overflow-y-visible:focus{
    overflow-y: visible;
  }

  .sm\:focus\:overflow-x-scroll:focus{
    overflow-x: scroll;
  }

  .sm\:focus\:overflow-y-scroll:focus{
    overflow-y: scroll;
  }

  .sm\:focus\:scrolling-touch:focus{
    -webkit-overflow-scrolling: touch;
  }

  .sm\:focus\:scrolling-auto:focus{
    -webkit-overflow-scrolling: auto;
  }

  .sm\:active\:overflow-auto:active{
    overflow: auto;
  }

  .sm\:active\:overflow-hidden:active{
    overflow: hidden;
  }

  .sm\:active\:overflow-visible:active{
    overflow: visible;
  }

  .sm\:active\:overflow-scroll:active{
    overflow: scroll;
  }

  .sm\:active\:overflow-x-auto:active{
    overflow-x: auto;
  }

  .sm\:active\:overflow-y-auto:active{
    overflow-y: auto;
  }

  .sm\:active\:overflow-x-hidden:active{
    overflow-x: hidden;
  }

  .sm\:active\:overflow-y-hidden:active{
    overflow-y: hidden;
  }

  .sm\:active\:overflow-x-visible:active{
    overflow-x: visible;
  }

  .sm\:active\:overflow-y-visible:active{
    overflow-y: visible;
  }

  .sm\:active\:overflow-x-scroll:active{
    overflow-x: scroll;
  }

  .sm\:active\:overflow-y-scroll:active{
    overflow-y: scroll;
  }

  .sm\:active\:scrolling-touch:active{
    -webkit-overflow-scrolling: touch;
  }

  .sm\:active\:scrolling-auto:active{
    -webkit-overflow-scrolling: auto;
  }

  .sm\:first\:overflow-auto:first-child{
    overflow: auto;
  }

  .sm\:first\:overflow-hidden:first-child{
    overflow: hidden;
  }

  .sm\:first\:overflow-visible:first-child{
    overflow: visible;
  }

  .sm\:first\:overflow-scroll:first-child{
    overflow: scroll;
  }

  .sm\:first\:overflow-x-auto:first-child{
    overflow-x: auto;
  }

  .sm\:first\:overflow-y-auto:first-child{
    overflow-y: auto;
  }

  .sm\:first\:overflow-x-hidden:first-child{
    overflow-x: hidden;
  }

  .sm\:first\:overflow-y-hidden:first-child{
    overflow-y: hidden;
  }

  .sm\:first\:overflow-x-visible:first-child{
    overflow-x: visible;
  }

  .sm\:first\:overflow-y-visible:first-child{
    overflow-y: visible;
  }

  .sm\:first\:overflow-x-scroll:first-child{
    overflow-x: scroll;
  }

  .sm\:first\:overflow-y-scroll:first-child{
    overflow-y: scroll;
  }

  .sm\:first\:scrolling-touch:first-child{
    -webkit-overflow-scrolling: touch;
  }

  .sm\:first\:scrolling-auto:first-child{
    -webkit-overflow-scrolling: auto;
  }

  .sm\:last\:overflow-auto:last-child{
    overflow: auto;
  }

  .sm\:last\:overflow-hidden:last-child{
    overflow: hidden;
  }

  .sm\:last\:overflow-visible:last-child{
    overflow: visible;
  }

  .sm\:last\:overflow-scroll:last-child{
    overflow: scroll;
  }

  .sm\:last\:overflow-x-auto:last-child{
    overflow-x: auto;
  }

  .sm\:last\:overflow-y-auto:last-child{
    overflow-y: auto;
  }

  .sm\:last\:overflow-x-hidden:last-child{
    overflow-x: hidden;
  }

  .sm\:last\:overflow-y-hidden:last-child{
    overflow-y: hidden;
  }

  .sm\:last\:overflow-x-visible:last-child{
    overflow-x: visible;
  }

  .sm\:last\:overflow-y-visible:last-child{
    overflow-y: visible;
  }

  .sm\:last\:overflow-x-scroll:last-child{
    overflow-x: scroll;
  }

  .sm\:last\:overflow-y-scroll:last-child{
    overflow-y: scroll;
  }

  .sm\:last\:scrolling-touch:last-child{
    -webkit-overflow-scrolling: touch;
  }

  .sm\:last\:scrolling-auto:last-child{
    -webkit-overflow-scrolling: auto;
  }

  .sm\:overscroll-auto{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .sm\:overscroll-contain{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .sm\:overscroll-none{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .sm\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .sm\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .sm\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .sm\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .sm\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .sm\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .sm\:hover\:overscroll-auto:hover{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .sm\:hover\:overscroll-contain:hover{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .sm\:hover\:overscroll-none:hover{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .sm\:hover\:overscroll-y-auto:hover{
    overscroll-behavior-y: auto;
  }

  .sm\:hover\:overscroll-y-contain:hover{
    overscroll-behavior-y: contain;
  }

  .sm\:hover\:overscroll-y-none:hover{
    overscroll-behavior-y: none;
  }

  .sm\:hover\:overscroll-x-auto:hover{
    overscroll-behavior-x: auto;
  }

  .sm\:hover\:overscroll-x-contain:hover{
    overscroll-behavior-x: contain;
  }

  .sm\:hover\:overscroll-x-none:hover{
    overscroll-behavior-x: none;
  }

  .sm\:focus\:overscroll-auto:focus{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .sm\:focus\:overscroll-contain:focus{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .sm\:focus\:overscroll-none:focus{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .sm\:focus\:overscroll-y-auto:focus{
    overscroll-behavior-y: auto;
  }

  .sm\:focus\:overscroll-y-contain:focus{
    overscroll-behavior-y: contain;
  }

  .sm\:focus\:overscroll-y-none:focus{
    overscroll-behavior-y: none;
  }

  .sm\:focus\:overscroll-x-auto:focus{
    overscroll-behavior-x: auto;
  }

  .sm\:focus\:overscroll-x-contain:focus{
    overscroll-behavior-x: contain;
  }

  .sm\:focus\:overscroll-x-none:focus{
    overscroll-behavior-x: none;
  }

  .sm\:active\:overscroll-auto:active{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .sm\:active\:overscroll-contain:active{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .sm\:active\:overscroll-none:active{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .sm\:active\:overscroll-y-auto:active{
    overscroll-behavior-y: auto;
  }

  .sm\:active\:overscroll-y-contain:active{
    overscroll-behavior-y: contain;
  }

  .sm\:active\:overscroll-y-none:active{
    overscroll-behavior-y: none;
  }

  .sm\:active\:overscroll-x-auto:active{
    overscroll-behavior-x: auto;
  }

  .sm\:active\:overscroll-x-contain:active{
    overscroll-behavior-x: contain;
  }

  .sm\:active\:overscroll-x-none:active{
    overscroll-behavior-x: none;
  }

  .sm\:first\:overscroll-auto:first-child{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .sm\:first\:overscroll-contain:first-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .sm\:first\:overscroll-none:first-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .sm\:first\:overscroll-y-auto:first-child{
    overscroll-behavior-y: auto;
  }

  .sm\:first\:overscroll-y-contain:first-child{
    overscroll-behavior-y: contain;
  }

  .sm\:first\:overscroll-y-none:first-child{
    overscroll-behavior-y: none;
  }

  .sm\:first\:overscroll-x-auto:first-child{
    overscroll-behavior-x: auto;
  }

  .sm\:first\:overscroll-x-contain:first-child{
    overscroll-behavior-x: contain;
  }

  .sm\:first\:overscroll-x-none:first-child{
    overscroll-behavior-x: none;
  }

  .sm\:last\:overscroll-auto:last-child{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .sm\:last\:overscroll-contain:last-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .sm\:last\:overscroll-none:last-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .sm\:last\:overscroll-y-auto:last-child{
    overscroll-behavior-y: auto;
  }

  .sm\:last\:overscroll-y-contain:last-child{
    overscroll-behavior-y: contain;
  }

  .sm\:last\:overscroll-y-none:last-child{
    overscroll-behavior-y: none;
  }

  .sm\:last\:overscroll-x-auto:last-child{
    overscroll-behavior-x: auto;
  }

  .sm\:last\:overscroll-x-contain:last-child{
    overscroll-behavior-x: contain;
  }

  .sm\:last\:overscroll-x-none:last-child{
    overscroll-behavior-x: none;
  }

  .sm\:p-0{
    padding: 0;
  }

  .sm\:p-1{
    padding: 0.25rem;
  }

  .sm\:p-2{
    padding: 0.5rem;
  }

  .sm\:p-3{
    padding: 0.75rem;
  }

  .sm\:p-4{
    padding: 1rem;
  }

  .sm\:p-5{
    padding: 1.25rem;
  }

  .sm\:p-6{
    padding: 1.5rem;
  }

  .sm\:p-8{
    padding: 2rem;
  }

  .sm\:p-9{
    padding: 2.25rem;
  }

  .sm\:p-10{
    padding: 2.5rem;
  }

  .sm\:p-11{
    padding: 3rem;
  }

  .sm\:p-12{
    padding: 3rem;
  }

  .sm\:p-14{
    padding: 3.5rem;
  }

  .sm\:p-16{
    padding: 4rem;
  }

  .sm\:p-20{
    padding: 5rem;
  }

  .sm\:p-24{
    padding: 6rem;
  }

  .sm\:p-32{
    padding: 8rem;
  }

  .sm\:p-40{
    padding: 10rem;
  }

  .sm\:p-48{
    padding: 12rem;
  }

  .sm\:p-56{
    padding: 14rem;
  }

  .sm\:p-64{
    padding: 16rem;
  }

  .sm\:p-px{
    padding: 1px;
  }

  .sm\:p-0\.25{
    padding: 0.0625rem;
  }

  .sm\:p-1\.5{
    padding: 0.375rem;
  }

  .sm\:p-2\.5{
    padding: 0.625rem;
  }

  .sm\:p-3\.25{
    padding: 0.8125rem;
  }

  .sm\:p-3\.5{
    padding: 0.875rem;
  }

  .sm\:p-5\.25{
    padding: 1.3125rem;
  }

  .sm\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:px-0{
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .sm\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .sm\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:py-9{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .sm\:px-9{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:py-11{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:px-11{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .sm\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .sm\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .sm\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .sm\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .sm\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .sm\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .sm\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .sm\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .sm\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .sm\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .sm\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .sm\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .sm\:py-0\.25{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .sm\:px-0\.25{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .sm\:py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .sm\:px-1\.5{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .sm\:py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .sm\:px-2\.5{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .sm\:py-3\.25{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .sm\:px-3\.25{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .sm\:py-3\.5{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .sm\:px-3\.5{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .sm\:py-5\.25{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .sm\:px-5\.25{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .sm\:pt-0{
    padding-top: 0;
  }

  .sm\:pr-0{
    padding-right: 0;
  }

  .sm\:pb-0{
    padding-bottom: 0;
  }

  .sm\:pl-0{
    padding-left: 0;
  }

  .sm\:pt-1{
    padding-top: 0.25rem;
  }

  .sm\:pr-1{
    padding-right: 0.25rem;
  }

  .sm\:pb-1{
    padding-bottom: 0.25rem;
  }

  .sm\:pl-1{
    padding-left: 0.25rem;
  }

  .sm\:pt-2{
    padding-top: 0.5rem;
  }

  .sm\:pr-2{
    padding-right: 0.5rem;
  }

  .sm\:pb-2{
    padding-bottom: 0.5rem;
  }

  .sm\:pl-2{
    padding-left: 0.5rem;
  }

  .sm\:pt-3{
    padding-top: 0.75rem;
  }

  .sm\:pr-3{
    padding-right: 0.75rem;
  }

  .sm\:pb-3{
    padding-bottom: 0.75rem;
  }

  .sm\:pl-3{
    padding-left: 0.75rem;
  }

  .sm\:pt-4{
    padding-top: 1rem;
  }

  .sm\:pr-4{
    padding-right: 1rem;
  }

  .sm\:pb-4{
    padding-bottom: 1rem;
  }

  .sm\:pl-4{
    padding-left: 1rem;
  }

  .sm\:pt-5{
    padding-top: 1.25rem;
  }

  .sm\:pr-5{
    padding-right: 1.25rem;
  }

  .sm\:pb-5{
    padding-bottom: 1.25rem;
  }

  .sm\:pl-5{
    padding-left: 1.25rem;
  }

  .sm\:pt-6{
    padding-top: 1.5rem;
  }

  .sm\:pr-6{
    padding-right: 1.5rem;
  }

  .sm\:pb-6{
    padding-bottom: 1.5rem;
  }

  .sm\:pl-6{
    padding-left: 1.5rem;
  }

  .sm\:pt-8{
    padding-top: 2rem;
  }

  .sm\:pr-8{
    padding-right: 2rem;
  }

  .sm\:pb-8{
    padding-bottom: 2rem;
  }

  .sm\:pl-8{
    padding-left: 2rem;
  }

  .sm\:pt-9{
    padding-top: 2.25rem;
  }

  .sm\:pr-9{
    padding-right: 2.25rem;
  }

  .sm\:pb-9{
    padding-bottom: 2.25rem;
  }

  .sm\:pl-9{
    padding-left: 2.25rem;
  }

  .sm\:pt-10{
    padding-top: 2.5rem;
  }

  .sm\:pr-10{
    padding-right: 2.5rem;
  }

  .sm\:pb-10{
    padding-bottom: 2.5rem;
  }

  .sm\:pl-10{
    padding-left: 2.5rem;
  }

  .sm\:pt-11{
    padding-top: 3rem;
  }

  .sm\:pr-11{
    padding-right: 3rem;
  }

  .sm\:pb-11{
    padding-bottom: 3rem;
  }

  .sm\:pl-11{
    padding-left: 3rem;
  }

  .sm\:pt-12{
    padding-top: 3rem;
  }

  .sm\:pr-12{
    padding-right: 3rem;
  }

  .sm\:pb-12{
    padding-bottom: 3rem;
  }

  .sm\:pl-12{
    padding-left: 3rem;
  }

  .sm\:pt-14{
    padding-top: 3.5rem;
  }

  .sm\:pr-14{
    padding-right: 3.5rem;
  }

  .sm\:pb-14{
    padding-bottom: 3.5rem;
  }

  .sm\:pl-14{
    padding-left: 3.5rem;
  }

  .sm\:pt-16{
    padding-top: 4rem;
  }

  .sm\:pr-16{
    padding-right: 4rem;
  }

  .sm\:pb-16{
    padding-bottom: 4rem;
  }

  .sm\:pl-16{
    padding-left: 4rem;
  }

  .sm\:pt-20{
    padding-top: 5rem;
  }

  .sm\:pr-20{
    padding-right: 5rem;
  }

  .sm\:pb-20{
    padding-bottom: 5rem;
  }

  .sm\:pl-20{
    padding-left: 5rem;
  }

  .sm\:pt-24{
    padding-top: 6rem;
  }

  .sm\:pr-24{
    padding-right: 6rem;
  }

  .sm\:pb-24{
    padding-bottom: 6rem;
  }

  .sm\:pl-24{
    padding-left: 6rem;
  }

  .sm\:pt-32{
    padding-top: 8rem;
  }

  .sm\:pr-32{
    padding-right: 8rem;
  }

  .sm\:pb-32{
    padding-bottom: 8rem;
  }

  .sm\:pl-32{
    padding-left: 8rem;
  }

  .sm\:pt-40{
    padding-top: 10rem;
  }

  .sm\:pr-40{
    padding-right: 10rem;
  }

  .sm\:pb-40{
    padding-bottom: 10rem;
  }

  .sm\:pl-40{
    padding-left: 10rem;
  }

  .sm\:pt-48{
    padding-top: 12rem;
  }

  .sm\:pr-48{
    padding-right: 12rem;
  }

  .sm\:pb-48{
    padding-bottom: 12rem;
  }

  .sm\:pl-48{
    padding-left: 12rem;
  }

  .sm\:pt-56{
    padding-top: 14rem;
  }

  .sm\:pr-56{
    padding-right: 14rem;
  }

  .sm\:pb-56{
    padding-bottom: 14rem;
  }

  .sm\:pl-56{
    padding-left: 14rem;
  }

  .sm\:pt-64{
    padding-top: 16rem;
  }

  .sm\:pr-64{
    padding-right: 16rem;
  }

  .sm\:pb-64{
    padding-bottom: 16rem;
  }

  .sm\:pl-64{
    padding-left: 16rem;
  }

  .sm\:pt-px{
    padding-top: 1px;
  }

  .sm\:pr-px{
    padding-right: 1px;
  }

  .sm\:pb-px{
    padding-bottom: 1px;
  }

  .sm\:pl-px{
    padding-left: 1px;
  }

  .sm\:pt-0\.25{
    padding-top: 0.0625rem;
  }

  .sm\:pr-0\.25{
    padding-right: 0.0625rem;
  }

  .sm\:pb-0\.25{
    padding-bottom: 0.0625rem;
  }

  .sm\:pl-0\.25{
    padding-left: 0.0625rem;
  }

  .sm\:pt-1\.5{
    padding-top: 0.375rem;
  }

  .sm\:pr-1\.5{
    padding-right: 0.375rem;
  }

  .sm\:pb-1\.5{
    padding-bottom: 0.375rem;
  }

  .sm\:pl-1\.5{
    padding-left: 0.375rem;
  }

  .sm\:pt-2\.5{
    padding-top: 0.625rem;
  }

  .sm\:pr-2\.5{
    padding-right: 0.625rem;
  }

  .sm\:pb-2\.5{
    padding-bottom: 0.625rem;
  }

  .sm\:pl-2\.5{
    padding-left: 0.625rem;
  }

  .sm\:pt-3\.25{
    padding-top: 0.8125rem;
  }

  .sm\:pr-3\.25{
    padding-right: 0.8125rem;
  }

  .sm\:pb-3\.25{
    padding-bottom: 0.8125rem;
  }

  .sm\:pl-3\.25{
    padding-left: 0.8125rem;
  }

  .sm\:pt-3\.5{
    padding-top: 0.875rem;
  }

  .sm\:pr-3\.5{
    padding-right: 0.875rem;
  }

  .sm\:pb-3\.5{
    padding-bottom: 0.875rem;
  }

  .sm\:pl-3\.5{
    padding-left: 0.875rem;
  }

  .sm\:pt-5\.25{
    padding-top: 1.3125rem;
  }

  .sm\:pr-5\.25{
    padding-right: 1.3125rem;
  }

  .sm\:pb-5\.25{
    padding-bottom: 1.3125rem;
  }

  .sm\:pl-5\.25{
    padding-left: 1.3125rem;
  }

  .sm\:hover\:p-0:hover{
    padding: 0;
  }

  .sm\:hover\:p-1:hover{
    padding: 0.25rem;
  }

  .sm\:hover\:p-2:hover{
    padding: 0.5rem;
  }

  .sm\:hover\:p-3:hover{
    padding: 0.75rem;
  }

  .sm\:hover\:p-4:hover{
    padding: 1rem;
  }

  .sm\:hover\:p-5:hover{
    padding: 1.25rem;
  }

  .sm\:hover\:p-6:hover{
    padding: 1.5rem;
  }

  .sm\:hover\:p-8:hover{
    padding: 2rem;
  }

  .sm\:hover\:p-9:hover{
    padding: 2.25rem;
  }

  .sm\:hover\:p-10:hover{
    padding: 2.5rem;
  }

  .sm\:hover\:p-11:hover{
    padding: 3rem;
  }

  .sm\:hover\:p-12:hover{
    padding: 3rem;
  }

  .sm\:hover\:p-14:hover{
    padding: 3.5rem;
  }

  .sm\:hover\:p-16:hover{
    padding: 4rem;
  }

  .sm\:hover\:p-20:hover{
    padding: 5rem;
  }

  .sm\:hover\:p-24:hover{
    padding: 6rem;
  }

  .sm\:hover\:p-32:hover{
    padding: 8rem;
  }

  .sm\:hover\:p-40:hover{
    padding: 10rem;
  }

  .sm\:hover\:p-48:hover{
    padding: 12rem;
  }

  .sm\:hover\:p-56:hover{
    padding: 14rem;
  }

  .sm\:hover\:p-64:hover{
    padding: 16rem;
  }

  .sm\:hover\:p-px:hover{
    padding: 1px;
  }

  .sm\:hover\:p-0\.25:hover{
    padding: 0.0625rem;
  }

  .sm\:hover\:p-1\.5:hover{
    padding: 0.375rem;
  }

  .sm\:hover\:p-2\.5:hover{
    padding: 0.625rem;
  }

  .sm\:hover\:p-3\.25:hover{
    padding: 0.8125rem;
  }

  .sm\:hover\:p-3\.5:hover{
    padding: 0.875rem;
  }

  .sm\:hover\:p-5\.25:hover{
    padding: 1.3125rem;
  }

  .sm\:hover\:py-0:hover{
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:hover\:px-0:hover{
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:hover\:py-1:hover{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .sm\:hover\:px-1:hover{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .sm\:hover\:py-2:hover{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:hover\:px-2:hover{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:hover\:py-3:hover{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:hover\:px-3:hover{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:hover\:py-4:hover{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:hover\:px-4:hover{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:hover\:py-5:hover{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:hover\:px-5:hover{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:hover\:py-6:hover{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:hover\:px-6:hover{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:hover\:py-8:hover{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:hover\:px-8:hover{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:hover\:py-9:hover{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .sm\:hover\:px-9:hover{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:hover\:py-10:hover{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:hover\:px-10:hover{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:hover\:py-11:hover{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:hover\:px-11:hover{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:hover\:py-12:hover{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:hover\:px-12:hover{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:hover\:py-14:hover{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .sm\:hover\:px-14:hover{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .sm\:hover\:py-16:hover{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:hover\:px-16:hover{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:hover\:py-20:hover{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:hover\:px-20:hover{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm\:hover\:py-24:hover{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:hover\:px-24:hover{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .sm\:hover\:py-32:hover{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:hover\:px-32:hover{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .sm\:hover\:py-40:hover{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .sm\:hover\:px-40:hover{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .sm\:hover\:py-48:hover{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .sm\:hover\:px-48:hover{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .sm\:hover\:py-56:hover{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .sm\:hover\:px-56:hover{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .sm\:hover\:py-64:hover{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .sm\:hover\:px-64:hover{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .sm\:hover\:py-px:hover{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:hover\:px-px:hover{
    padding-left: 1px;
    padding-right: 1px;
  }

  .sm\:hover\:py-0\.25:hover{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .sm\:hover\:px-0\.25:hover{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .sm\:hover\:py-1\.5:hover{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .sm\:hover\:px-1\.5:hover{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .sm\:hover\:py-2\.5:hover{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .sm\:hover\:px-2\.5:hover{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .sm\:hover\:py-3\.25:hover{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .sm\:hover\:px-3\.25:hover{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .sm\:hover\:py-3\.5:hover{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .sm\:hover\:px-3\.5:hover{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .sm\:hover\:py-5\.25:hover{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .sm\:hover\:px-5\.25:hover{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .sm\:hover\:pt-0:hover{
    padding-top: 0;
  }

  .sm\:hover\:pr-0:hover{
    padding-right: 0;
  }

  .sm\:hover\:pb-0:hover{
    padding-bottom: 0;
  }

  .sm\:hover\:pl-0:hover{
    padding-left: 0;
  }

  .sm\:hover\:pt-1:hover{
    padding-top: 0.25rem;
  }

  .sm\:hover\:pr-1:hover{
    padding-right: 0.25rem;
  }

  .sm\:hover\:pb-1:hover{
    padding-bottom: 0.25rem;
  }

  .sm\:hover\:pl-1:hover{
    padding-left: 0.25rem;
  }

  .sm\:hover\:pt-2:hover{
    padding-top: 0.5rem;
  }

  .sm\:hover\:pr-2:hover{
    padding-right: 0.5rem;
  }

  .sm\:hover\:pb-2:hover{
    padding-bottom: 0.5rem;
  }

  .sm\:hover\:pl-2:hover{
    padding-left: 0.5rem;
  }

  .sm\:hover\:pt-3:hover{
    padding-top: 0.75rem;
  }

  .sm\:hover\:pr-3:hover{
    padding-right: 0.75rem;
  }

  .sm\:hover\:pb-3:hover{
    padding-bottom: 0.75rem;
  }

  .sm\:hover\:pl-3:hover{
    padding-left: 0.75rem;
  }

  .sm\:hover\:pt-4:hover{
    padding-top: 1rem;
  }

  .sm\:hover\:pr-4:hover{
    padding-right: 1rem;
  }

  .sm\:hover\:pb-4:hover{
    padding-bottom: 1rem;
  }

  .sm\:hover\:pl-4:hover{
    padding-left: 1rem;
  }

  .sm\:hover\:pt-5:hover{
    padding-top: 1.25rem;
  }

  .sm\:hover\:pr-5:hover{
    padding-right: 1.25rem;
  }

  .sm\:hover\:pb-5:hover{
    padding-bottom: 1.25rem;
  }

  .sm\:hover\:pl-5:hover{
    padding-left: 1.25rem;
  }

  .sm\:hover\:pt-6:hover{
    padding-top: 1.5rem;
  }

  .sm\:hover\:pr-6:hover{
    padding-right: 1.5rem;
  }

  .sm\:hover\:pb-6:hover{
    padding-bottom: 1.5rem;
  }

  .sm\:hover\:pl-6:hover{
    padding-left: 1.5rem;
  }

  .sm\:hover\:pt-8:hover{
    padding-top: 2rem;
  }

  .sm\:hover\:pr-8:hover{
    padding-right: 2rem;
  }

  .sm\:hover\:pb-8:hover{
    padding-bottom: 2rem;
  }

  .sm\:hover\:pl-8:hover{
    padding-left: 2rem;
  }

  .sm\:hover\:pt-9:hover{
    padding-top: 2.25rem;
  }

  .sm\:hover\:pr-9:hover{
    padding-right: 2.25rem;
  }

  .sm\:hover\:pb-9:hover{
    padding-bottom: 2.25rem;
  }

  .sm\:hover\:pl-9:hover{
    padding-left: 2.25rem;
  }

  .sm\:hover\:pt-10:hover{
    padding-top: 2.5rem;
  }

  .sm\:hover\:pr-10:hover{
    padding-right: 2.5rem;
  }

  .sm\:hover\:pb-10:hover{
    padding-bottom: 2.5rem;
  }

  .sm\:hover\:pl-10:hover{
    padding-left: 2.5rem;
  }

  .sm\:hover\:pt-11:hover{
    padding-top: 3rem;
  }

  .sm\:hover\:pr-11:hover{
    padding-right: 3rem;
  }

  .sm\:hover\:pb-11:hover{
    padding-bottom: 3rem;
  }

  .sm\:hover\:pl-11:hover{
    padding-left: 3rem;
  }

  .sm\:hover\:pt-12:hover{
    padding-top: 3rem;
  }

  .sm\:hover\:pr-12:hover{
    padding-right: 3rem;
  }

  .sm\:hover\:pb-12:hover{
    padding-bottom: 3rem;
  }

  .sm\:hover\:pl-12:hover{
    padding-left: 3rem;
  }

  .sm\:hover\:pt-14:hover{
    padding-top: 3.5rem;
  }

  .sm\:hover\:pr-14:hover{
    padding-right: 3.5rem;
  }

  .sm\:hover\:pb-14:hover{
    padding-bottom: 3.5rem;
  }

  .sm\:hover\:pl-14:hover{
    padding-left: 3.5rem;
  }

  .sm\:hover\:pt-16:hover{
    padding-top: 4rem;
  }

  .sm\:hover\:pr-16:hover{
    padding-right: 4rem;
  }

  .sm\:hover\:pb-16:hover{
    padding-bottom: 4rem;
  }

  .sm\:hover\:pl-16:hover{
    padding-left: 4rem;
  }

  .sm\:hover\:pt-20:hover{
    padding-top: 5rem;
  }

  .sm\:hover\:pr-20:hover{
    padding-right: 5rem;
  }

  .sm\:hover\:pb-20:hover{
    padding-bottom: 5rem;
  }

  .sm\:hover\:pl-20:hover{
    padding-left: 5rem;
  }

  .sm\:hover\:pt-24:hover{
    padding-top: 6rem;
  }

  .sm\:hover\:pr-24:hover{
    padding-right: 6rem;
  }

  .sm\:hover\:pb-24:hover{
    padding-bottom: 6rem;
  }

  .sm\:hover\:pl-24:hover{
    padding-left: 6rem;
  }

  .sm\:hover\:pt-32:hover{
    padding-top: 8rem;
  }

  .sm\:hover\:pr-32:hover{
    padding-right: 8rem;
  }

  .sm\:hover\:pb-32:hover{
    padding-bottom: 8rem;
  }

  .sm\:hover\:pl-32:hover{
    padding-left: 8rem;
  }

  .sm\:hover\:pt-40:hover{
    padding-top: 10rem;
  }

  .sm\:hover\:pr-40:hover{
    padding-right: 10rem;
  }

  .sm\:hover\:pb-40:hover{
    padding-bottom: 10rem;
  }

  .sm\:hover\:pl-40:hover{
    padding-left: 10rem;
  }

  .sm\:hover\:pt-48:hover{
    padding-top: 12rem;
  }

  .sm\:hover\:pr-48:hover{
    padding-right: 12rem;
  }

  .sm\:hover\:pb-48:hover{
    padding-bottom: 12rem;
  }

  .sm\:hover\:pl-48:hover{
    padding-left: 12rem;
  }

  .sm\:hover\:pt-56:hover{
    padding-top: 14rem;
  }

  .sm\:hover\:pr-56:hover{
    padding-right: 14rem;
  }

  .sm\:hover\:pb-56:hover{
    padding-bottom: 14rem;
  }

  .sm\:hover\:pl-56:hover{
    padding-left: 14rem;
  }

  .sm\:hover\:pt-64:hover{
    padding-top: 16rem;
  }

  .sm\:hover\:pr-64:hover{
    padding-right: 16rem;
  }

  .sm\:hover\:pb-64:hover{
    padding-bottom: 16rem;
  }

  .sm\:hover\:pl-64:hover{
    padding-left: 16rem;
  }

  .sm\:hover\:pt-px:hover{
    padding-top: 1px;
  }

  .sm\:hover\:pr-px:hover{
    padding-right: 1px;
  }

  .sm\:hover\:pb-px:hover{
    padding-bottom: 1px;
  }

  .sm\:hover\:pl-px:hover{
    padding-left: 1px;
  }

  .sm\:hover\:pt-0\.25:hover{
    padding-top: 0.0625rem;
  }

  .sm\:hover\:pr-0\.25:hover{
    padding-right: 0.0625rem;
  }

  .sm\:hover\:pb-0\.25:hover{
    padding-bottom: 0.0625rem;
  }

  .sm\:hover\:pl-0\.25:hover{
    padding-left: 0.0625rem;
  }

  .sm\:hover\:pt-1\.5:hover{
    padding-top: 0.375rem;
  }

  .sm\:hover\:pr-1\.5:hover{
    padding-right: 0.375rem;
  }

  .sm\:hover\:pb-1\.5:hover{
    padding-bottom: 0.375rem;
  }

  .sm\:hover\:pl-1\.5:hover{
    padding-left: 0.375rem;
  }

  .sm\:hover\:pt-2\.5:hover{
    padding-top: 0.625rem;
  }

  .sm\:hover\:pr-2\.5:hover{
    padding-right: 0.625rem;
  }

  .sm\:hover\:pb-2\.5:hover{
    padding-bottom: 0.625rem;
  }

  .sm\:hover\:pl-2\.5:hover{
    padding-left: 0.625rem;
  }

  .sm\:hover\:pt-3\.25:hover{
    padding-top: 0.8125rem;
  }

  .sm\:hover\:pr-3\.25:hover{
    padding-right: 0.8125rem;
  }

  .sm\:hover\:pb-3\.25:hover{
    padding-bottom: 0.8125rem;
  }

  .sm\:hover\:pl-3\.25:hover{
    padding-left: 0.8125rem;
  }

  .sm\:hover\:pt-3\.5:hover{
    padding-top: 0.875rem;
  }

  .sm\:hover\:pr-3\.5:hover{
    padding-right: 0.875rem;
  }

  .sm\:hover\:pb-3\.5:hover{
    padding-bottom: 0.875rem;
  }

  .sm\:hover\:pl-3\.5:hover{
    padding-left: 0.875rem;
  }

  .sm\:hover\:pt-5\.25:hover{
    padding-top: 1.3125rem;
  }

  .sm\:hover\:pr-5\.25:hover{
    padding-right: 1.3125rem;
  }

  .sm\:hover\:pb-5\.25:hover{
    padding-bottom: 1.3125rem;
  }

  .sm\:hover\:pl-5\.25:hover{
    padding-left: 1.3125rem;
  }

  .sm\:focus\:p-0:focus{
    padding: 0;
  }

  .sm\:focus\:p-1:focus{
    padding: 0.25rem;
  }

  .sm\:focus\:p-2:focus{
    padding: 0.5rem;
  }

  .sm\:focus\:p-3:focus{
    padding: 0.75rem;
  }

  .sm\:focus\:p-4:focus{
    padding: 1rem;
  }

  .sm\:focus\:p-5:focus{
    padding: 1.25rem;
  }

  .sm\:focus\:p-6:focus{
    padding: 1.5rem;
  }

  .sm\:focus\:p-8:focus{
    padding: 2rem;
  }

  .sm\:focus\:p-9:focus{
    padding: 2.25rem;
  }

  .sm\:focus\:p-10:focus{
    padding: 2.5rem;
  }

  .sm\:focus\:p-11:focus{
    padding: 3rem;
  }

  .sm\:focus\:p-12:focus{
    padding: 3rem;
  }

  .sm\:focus\:p-14:focus{
    padding: 3.5rem;
  }

  .sm\:focus\:p-16:focus{
    padding: 4rem;
  }

  .sm\:focus\:p-20:focus{
    padding: 5rem;
  }

  .sm\:focus\:p-24:focus{
    padding: 6rem;
  }

  .sm\:focus\:p-32:focus{
    padding: 8rem;
  }

  .sm\:focus\:p-40:focus{
    padding: 10rem;
  }

  .sm\:focus\:p-48:focus{
    padding: 12rem;
  }

  .sm\:focus\:p-56:focus{
    padding: 14rem;
  }

  .sm\:focus\:p-64:focus{
    padding: 16rem;
  }

  .sm\:focus\:p-px:focus{
    padding: 1px;
  }

  .sm\:focus\:p-0\.25:focus{
    padding: 0.0625rem;
  }

  .sm\:focus\:p-1\.5:focus{
    padding: 0.375rem;
  }

  .sm\:focus\:p-2\.5:focus{
    padding: 0.625rem;
  }

  .sm\:focus\:p-3\.25:focus{
    padding: 0.8125rem;
  }

  .sm\:focus\:p-3\.5:focus{
    padding: 0.875rem;
  }

  .sm\:focus\:p-5\.25:focus{
    padding: 1.3125rem;
  }

  .sm\:focus\:py-0:focus{
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:focus\:px-0:focus{
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:focus\:py-1:focus{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .sm\:focus\:px-1:focus{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .sm\:focus\:py-2:focus{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:focus\:px-2:focus{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:focus\:py-3:focus{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:focus\:px-3:focus{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:focus\:py-4:focus{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:focus\:px-4:focus{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:focus\:py-5:focus{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:focus\:px-5:focus{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:focus\:py-6:focus{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:focus\:px-6:focus{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:focus\:py-8:focus{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:focus\:px-8:focus{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:focus\:py-9:focus{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .sm\:focus\:px-9:focus{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:focus\:py-10:focus{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:focus\:px-10:focus{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:focus\:py-11:focus{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:focus\:px-11:focus{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:focus\:py-12:focus{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:focus\:px-12:focus{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:focus\:py-14:focus{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .sm\:focus\:px-14:focus{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .sm\:focus\:py-16:focus{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:focus\:px-16:focus{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:focus\:py-20:focus{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:focus\:px-20:focus{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm\:focus\:py-24:focus{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:focus\:px-24:focus{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .sm\:focus\:py-32:focus{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:focus\:px-32:focus{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .sm\:focus\:py-40:focus{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .sm\:focus\:px-40:focus{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .sm\:focus\:py-48:focus{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .sm\:focus\:px-48:focus{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .sm\:focus\:py-56:focus{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .sm\:focus\:px-56:focus{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .sm\:focus\:py-64:focus{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .sm\:focus\:px-64:focus{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .sm\:focus\:py-px:focus{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:focus\:px-px:focus{
    padding-left: 1px;
    padding-right: 1px;
  }

  .sm\:focus\:py-0\.25:focus{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .sm\:focus\:px-0\.25:focus{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .sm\:focus\:py-1\.5:focus{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .sm\:focus\:px-1\.5:focus{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .sm\:focus\:py-2\.5:focus{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .sm\:focus\:px-2\.5:focus{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .sm\:focus\:py-3\.25:focus{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .sm\:focus\:px-3\.25:focus{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .sm\:focus\:py-3\.5:focus{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .sm\:focus\:px-3\.5:focus{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .sm\:focus\:py-5\.25:focus{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .sm\:focus\:px-5\.25:focus{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .sm\:focus\:pt-0:focus{
    padding-top: 0;
  }

  .sm\:focus\:pr-0:focus{
    padding-right: 0;
  }

  .sm\:focus\:pb-0:focus{
    padding-bottom: 0;
  }

  .sm\:focus\:pl-0:focus{
    padding-left: 0;
  }

  .sm\:focus\:pt-1:focus{
    padding-top: 0.25rem;
  }

  .sm\:focus\:pr-1:focus{
    padding-right: 0.25rem;
  }

  .sm\:focus\:pb-1:focus{
    padding-bottom: 0.25rem;
  }

  .sm\:focus\:pl-1:focus{
    padding-left: 0.25rem;
  }

  .sm\:focus\:pt-2:focus{
    padding-top: 0.5rem;
  }

  .sm\:focus\:pr-2:focus{
    padding-right: 0.5rem;
  }

  .sm\:focus\:pb-2:focus{
    padding-bottom: 0.5rem;
  }

  .sm\:focus\:pl-2:focus{
    padding-left: 0.5rem;
  }

  .sm\:focus\:pt-3:focus{
    padding-top: 0.75rem;
  }

  .sm\:focus\:pr-3:focus{
    padding-right: 0.75rem;
  }

  .sm\:focus\:pb-3:focus{
    padding-bottom: 0.75rem;
  }

  .sm\:focus\:pl-3:focus{
    padding-left: 0.75rem;
  }

  .sm\:focus\:pt-4:focus{
    padding-top: 1rem;
  }

  .sm\:focus\:pr-4:focus{
    padding-right: 1rem;
  }

  .sm\:focus\:pb-4:focus{
    padding-bottom: 1rem;
  }

  .sm\:focus\:pl-4:focus{
    padding-left: 1rem;
  }

  .sm\:focus\:pt-5:focus{
    padding-top: 1.25rem;
  }

  .sm\:focus\:pr-5:focus{
    padding-right: 1.25rem;
  }

  .sm\:focus\:pb-5:focus{
    padding-bottom: 1.25rem;
  }

  .sm\:focus\:pl-5:focus{
    padding-left: 1.25rem;
  }

  .sm\:focus\:pt-6:focus{
    padding-top: 1.5rem;
  }

  .sm\:focus\:pr-6:focus{
    padding-right: 1.5rem;
  }

  .sm\:focus\:pb-6:focus{
    padding-bottom: 1.5rem;
  }

  .sm\:focus\:pl-6:focus{
    padding-left: 1.5rem;
  }

  .sm\:focus\:pt-8:focus{
    padding-top: 2rem;
  }

  .sm\:focus\:pr-8:focus{
    padding-right: 2rem;
  }

  .sm\:focus\:pb-8:focus{
    padding-bottom: 2rem;
  }

  .sm\:focus\:pl-8:focus{
    padding-left: 2rem;
  }

  .sm\:focus\:pt-9:focus{
    padding-top: 2.25rem;
  }

  .sm\:focus\:pr-9:focus{
    padding-right: 2.25rem;
  }

  .sm\:focus\:pb-9:focus{
    padding-bottom: 2.25rem;
  }

  .sm\:focus\:pl-9:focus{
    padding-left: 2.25rem;
  }

  .sm\:focus\:pt-10:focus{
    padding-top: 2.5rem;
  }

  .sm\:focus\:pr-10:focus{
    padding-right: 2.5rem;
  }

  .sm\:focus\:pb-10:focus{
    padding-bottom: 2.5rem;
  }

  .sm\:focus\:pl-10:focus{
    padding-left: 2.5rem;
  }

  .sm\:focus\:pt-11:focus{
    padding-top: 3rem;
  }

  .sm\:focus\:pr-11:focus{
    padding-right: 3rem;
  }

  .sm\:focus\:pb-11:focus{
    padding-bottom: 3rem;
  }

  .sm\:focus\:pl-11:focus{
    padding-left: 3rem;
  }

  .sm\:focus\:pt-12:focus{
    padding-top: 3rem;
  }

  .sm\:focus\:pr-12:focus{
    padding-right: 3rem;
  }

  .sm\:focus\:pb-12:focus{
    padding-bottom: 3rem;
  }

  .sm\:focus\:pl-12:focus{
    padding-left: 3rem;
  }

  .sm\:focus\:pt-14:focus{
    padding-top: 3.5rem;
  }

  .sm\:focus\:pr-14:focus{
    padding-right: 3.5rem;
  }

  .sm\:focus\:pb-14:focus{
    padding-bottom: 3.5rem;
  }

  .sm\:focus\:pl-14:focus{
    padding-left: 3.5rem;
  }

  .sm\:focus\:pt-16:focus{
    padding-top: 4rem;
  }

  .sm\:focus\:pr-16:focus{
    padding-right: 4rem;
  }

  .sm\:focus\:pb-16:focus{
    padding-bottom: 4rem;
  }

  .sm\:focus\:pl-16:focus{
    padding-left: 4rem;
  }

  .sm\:focus\:pt-20:focus{
    padding-top: 5rem;
  }

  .sm\:focus\:pr-20:focus{
    padding-right: 5rem;
  }

  .sm\:focus\:pb-20:focus{
    padding-bottom: 5rem;
  }

  .sm\:focus\:pl-20:focus{
    padding-left: 5rem;
  }

  .sm\:focus\:pt-24:focus{
    padding-top: 6rem;
  }

  .sm\:focus\:pr-24:focus{
    padding-right: 6rem;
  }

  .sm\:focus\:pb-24:focus{
    padding-bottom: 6rem;
  }

  .sm\:focus\:pl-24:focus{
    padding-left: 6rem;
  }

  .sm\:focus\:pt-32:focus{
    padding-top: 8rem;
  }

  .sm\:focus\:pr-32:focus{
    padding-right: 8rem;
  }

  .sm\:focus\:pb-32:focus{
    padding-bottom: 8rem;
  }

  .sm\:focus\:pl-32:focus{
    padding-left: 8rem;
  }

  .sm\:focus\:pt-40:focus{
    padding-top: 10rem;
  }

  .sm\:focus\:pr-40:focus{
    padding-right: 10rem;
  }

  .sm\:focus\:pb-40:focus{
    padding-bottom: 10rem;
  }

  .sm\:focus\:pl-40:focus{
    padding-left: 10rem;
  }

  .sm\:focus\:pt-48:focus{
    padding-top: 12rem;
  }

  .sm\:focus\:pr-48:focus{
    padding-right: 12rem;
  }

  .sm\:focus\:pb-48:focus{
    padding-bottom: 12rem;
  }

  .sm\:focus\:pl-48:focus{
    padding-left: 12rem;
  }

  .sm\:focus\:pt-56:focus{
    padding-top: 14rem;
  }

  .sm\:focus\:pr-56:focus{
    padding-right: 14rem;
  }

  .sm\:focus\:pb-56:focus{
    padding-bottom: 14rem;
  }

  .sm\:focus\:pl-56:focus{
    padding-left: 14rem;
  }

  .sm\:focus\:pt-64:focus{
    padding-top: 16rem;
  }

  .sm\:focus\:pr-64:focus{
    padding-right: 16rem;
  }

  .sm\:focus\:pb-64:focus{
    padding-bottom: 16rem;
  }

  .sm\:focus\:pl-64:focus{
    padding-left: 16rem;
  }

  .sm\:focus\:pt-px:focus{
    padding-top: 1px;
  }

  .sm\:focus\:pr-px:focus{
    padding-right: 1px;
  }

  .sm\:focus\:pb-px:focus{
    padding-bottom: 1px;
  }

  .sm\:focus\:pl-px:focus{
    padding-left: 1px;
  }

  .sm\:focus\:pt-0\.25:focus{
    padding-top: 0.0625rem;
  }

  .sm\:focus\:pr-0\.25:focus{
    padding-right: 0.0625rem;
  }

  .sm\:focus\:pb-0\.25:focus{
    padding-bottom: 0.0625rem;
  }

  .sm\:focus\:pl-0\.25:focus{
    padding-left: 0.0625rem;
  }

  .sm\:focus\:pt-1\.5:focus{
    padding-top: 0.375rem;
  }

  .sm\:focus\:pr-1\.5:focus{
    padding-right: 0.375rem;
  }

  .sm\:focus\:pb-1\.5:focus{
    padding-bottom: 0.375rem;
  }

  .sm\:focus\:pl-1\.5:focus{
    padding-left: 0.375rem;
  }

  .sm\:focus\:pt-2\.5:focus{
    padding-top: 0.625rem;
  }

  .sm\:focus\:pr-2\.5:focus{
    padding-right: 0.625rem;
  }

  .sm\:focus\:pb-2\.5:focus{
    padding-bottom: 0.625rem;
  }

  .sm\:focus\:pl-2\.5:focus{
    padding-left: 0.625rem;
  }

  .sm\:focus\:pt-3\.25:focus{
    padding-top: 0.8125rem;
  }

  .sm\:focus\:pr-3\.25:focus{
    padding-right: 0.8125rem;
  }

  .sm\:focus\:pb-3\.25:focus{
    padding-bottom: 0.8125rem;
  }

  .sm\:focus\:pl-3\.25:focus{
    padding-left: 0.8125rem;
  }

  .sm\:focus\:pt-3\.5:focus{
    padding-top: 0.875rem;
  }

  .sm\:focus\:pr-3\.5:focus{
    padding-right: 0.875rem;
  }

  .sm\:focus\:pb-3\.5:focus{
    padding-bottom: 0.875rem;
  }

  .sm\:focus\:pl-3\.5:focus{
    padding-left: 0.875rem;
  }

  .sm\:focus\:pt-5\.25:focus{
    padding-top: 1.3125rem;
  }

  .sm\:focus\:pr-5\.25:focus{
    padding-right: 1.3125rem;
  }

  .sm\:focus\:pb-5\.25:focus{
    padding-bottom: 1.3125rem;
  }

  .sm\:focus\:pl-5\.25:focus{
    padding-left: 1.3125rem;
  }

  .sm\:active\:p-0:active{
    padding: 0;
  }

  .sm\:active\:p-1:active{
    padding: 0.25rem;
  }

  .sm\:active\:p-2:active{
    padding: 0.5rem;
  }

  .sm\:active\:p-3:active{
    padding: 0.75rem;
  }

  .sm\:active\:p-4:active{
    padding: 1rem;
  }

  .sm\:active\:p-5:active{
    padding: 1.25rem;
  }

  .sm\:active\:p-6:active{
    padding: 1.5rem;
  }

  .sm\:active\:p-8:active{
    padding: 2rem;
  }

  .sm\:active\:p-9:active{
    padding: 2.25rem;
  }

  .sm\:active\:p-10:active{
    padding: 2.5rem;
  }

  .sm\:active\:p-11:active{
    padding: 3rem;
  }

  .sm\:active\:p-12:active{
    padding: 3rem;
  }

  .sm\:active\:p-14:active{
    padding: 3.5rem;
  }

  .sm\:active\:p-16:active{
    padding: 4rem;
  }

  .sm\:active\:p-20:active{
    padding: 5rem;
  }

  .sm\:active\:p-24:active{
    padding: 6rem;
  }

  .sm\:active\:p-32:active{
    padding: 8rem;
  }

  .sm\:active\:p-40:active{
    padding: 10rem;
  }

  .sm\:active\:p-48:active{
    padding: 12rem;
  }

  .sm\:active\:p-56:active{
    padding: 14rem;
  }

  .sm\:active\:p-64:active{
    padding: 16rem;
  }

  .sm\:active\:p-px:active{
    padding: 1px;
  }

  .sm\:active\:p-0\.25:active{
    padding: 0.0625rem;
  }

  .sm\:active\:p-1\.5:active{
    padding: 0.375rem;
  }

  .sm\:active\:p-2\.5:active{
    padding: 0.625rem;
  }

  .sm\:active\:p-3\.25:active{
    padding: 0.8125rem;
  }

  .sm\:active\:p-3\.5:active{
    padding: 0.875rem;
  }

  .sm\:active\:p-5\.25:active{
    padding: 1.3125rem;
  }

  .sm\:active\:py-0:active{
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:active\:px-0:active{
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:active\:py-1:active{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .sm\:active\:px-1:active{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .sm\:active\:py-2:active{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:active\:px-2:active{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:active\:py-3:active{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:active\:px-3:active{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:active\:py-4:active{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:active\:px-4:active{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:active\:py-5:active{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:active\:px-5:active{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:active\:py-6:active{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:active\:px-6:active{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:active\:py-8:active{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:active\:px-8:active{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:active\:py-9:active{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .sm\:active\:px-9:active{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:active\:py-10:active{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:active\:px-10:active{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:active\:py-11:active{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:active\:px-11:active{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:active\:py-12:active{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:active\:px-12:active{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:active\:py-14:active{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .sm\:active\:px-14:active{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .sm\:active\:py-16:active{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:active\:px-16:active{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:active\:py-20:active{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:active\:px-20:active{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm\:active\:py-24:active{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:active\:px-24:active{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .sm\:active\:py-32:active{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:active\:px-32:active{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .sm\:active\:py-40:active{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .sm\:active\:px-40:active{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .sm\:active\:py-48:active{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .sm\:active\:px-48:active{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .sm\:active\:py-56:active{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .sm\:active\:px-56:active{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .sm\:active\:py-64:active{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .sm\:active\:px-64:active{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .sm\:active\:py-px:active{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:active\:px-px:active{
    padding-left: 1px;
    padding-right: 1px;
  }

  .sm\:active\:py-0\.25:active{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .sm\:active\:px-0\.25:active{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .sm\:active\:py-1\.5:active{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .sm\:active\:px-1\.5:active{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .sm\:active\:py-2\.5:active{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .sm\:active\:px-2\.5:active{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .sm\:active\:py-3\.25:active{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .sm\:active\:px-3\.25:active{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .sm\:active\:py-3\.5:active{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .sm\:active\:px-3\.5:active{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .sm\:active\:py-5\.25:active{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .sm\:active\:px-5\.25:active{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .sm\:active\:pt-0:active{
    padding-top: 0;
  }

  .sm\:active\:pr-0:active{
    padding-right: 0;
  }

  .sm\:active\:pb-0:active{
    padding-bottom: 0;
  }

  .sm\:active\:pl-0:active{
    padding-left: 0;
  }

  .sm\:active\:pt-1:active{
    padding-top: 0.25rem;
  }

  .sm\:active\:pr-1:active{
    padding-right: 0.25rem;
  }

  .sm\:active\:pb-1:active{
    padding-bottom: 0.25rem;
  }

  .sm\:active\:pl-1:active{
    padding-left: 0.25rem;
  }

  .sm\:active\:pt-2:active{
    padding-top: 0.5rem;
  }

  .sm\:active\:pr-2:active{
    padding-right: 0.5rem;
  }

  .sm\:active\:pb-2:active{
    padding-bottom: 0.5rem;
  }

  .sm\:active\:pl-2:active{
    padding-left: 0.5rem;
  }

  .sm\:active\:pt-3:active{
    padding-top: 0.75rem;
  }

  .sm\:active\:pr-3:active{
    padding-right: 0.75rem;
  }

  .sm\:active\:pb-3:active{
    padding-bottom: 0.75rem;
  }

  .sm\:active\:pl-3:active{
    padding-left: 0.75rem;
  }

  .sm\:active\:pt-4:active{
    padding-top: 1rem;
  }

  .sm\:active\:pr-4:active{
    padding-right: 1rem;
  }

  .sm\:active\:pb-4:active{
    padding-bottom: 1rem;
  }

  .sm\:active\:pl-4:active{
    padding-left: 1rem;
  }

  .sm\:active\:pt-5:active{
    padding-top: 1.25rem;
  }

  .sm\:active\:pr-5:active{
    padding-right: 1.25rem;
  }

  .sm\:active\:pb-5:active{
    padding-bottom: 1.25rem;
  }

  .sm\:active\:pl-5:active{
    padding-left: 1.25rem;
  }

  .sm\:active\:pt-6:active{
    padding-top: 1.5rem;
  }

  .sm\:active\:pr-6:active{
    padding-right: 1.5rem;
  }

  .sm\:active\:pb-6:active{
    padding-bottom: 1.5rem;
  }

  .sm\:active\:pl-6:active{
    padding-left: 1.5rem;
  }

  .sm\:active\:pt-8:active{
    padding-top: 2rem;
  }

  .sm\:active\:pr-8:active{
    padding-right: 2rem;
  }

  .sm\:active\:pb-8:active{
    padding-bottom: 2rem;
  }

  .sm\:active\:pl-8:active{
    padding-left: 2rem;
  }

  .sm\:active\:pt-9:active{
    padding-top: 2.25rem;
  }

  .sm\:active\:pr-9:active{
    padding-right: 2.25rem;
  }

  .sm\:active\:pb-9:active{
    padding-bottom: 2.25rem;
  }

  .sm\:active\:pl-9:active{
    padding-left: 2.25rem;
  }

  .sm\:active\:pt-10:active{
    padding-top: 2.5rem;
  }

  .sm\:active\:pr-10:active{
    padding-right: 2.5rem;
  }

  .sm\:active\:pb-10:active{
    padding-bottom: 2.5rem;
  }

  .sm\:active\:pl-10:active{
    padding-left: 2.5rem;
  }

  .sm\:active\:pt-11:active{
    padding-top: 3rem;
  }

  .sm\:active\:pr-11:active{
    padding-right: 3rem;
  }

  .sm\:active\:pb-11:active{
    padding-bottom: 3rem;
  }

  .sm\:active\:pl-11:active{
    padding-left: 3rem;
  }

  .sm\:active\:pt-12:active{
    padding-top: 3rem;
  }

  .sm\:active\:pr-12:active{
    padding-right: 3rem;
  }

  .sm\:active\:pb-12:active{
    padding-bottom: 3rem;
  }

  .sm\:active\:pl-12:active{
    padding-left: 3rem;
  }

  .sm\:active\:pt-14:active{
    padding-top: 3.5rem;
  }

  .sm\:active\:pr-14:active{
    padding-right: 3.5rem;
  }

  .sm\:active\:pb-14:active{
    padding-bottom: 3.5rem;
  }

  .sm\:active\:pl-14:active{
    padding-left: 3.5rem;
  }

  .sm\:active\:pt-16:active{
    padding-top: 4rem;
  }

  .sm\:active\:pr-16:active{
    padding-right: 4rem;
  }

  .sm\:active\:pb-16:active{
    padding-bottom: 4rem;
  }

  .sm\:active\:pl-16:active{
    padding-left: 4rem;
  }

  .sm\:active\:pt-20:active{
    padding-top: 5rem;
  }

  .sm\:active\:pr-20:active{
    padding-right: 5rem;
  }

  .sm\:active\:pb-20:active{
    padding-bottom: 5rem;
  }

  .sm\:active\:pl-20:active{
    padding-left: 5rem;
  }

  .sm\:active\:pt-24:active{
    padding-top: 6rem;
  }

  .sm\:active\:pr-24:active{
    padding-right: 6rem;
  }

  .sm\:active\:pb-24:active{
    padding-bottom: 6rem;
  }

  .sm\:active\:pl-24:active{
    padding-left: 6rem;
  }

  .sm\:active\:pt-32:active{
    padding-top: 8rem;
  }

  .sm\:active\:pr-32:active{
    padding-right: 8rem;
  }

  .sm\:active\:pb-32:active{
    padding-bottom: 8rem;
  }

  .sm\:active\:pl-32:active{
    padding-left: 8rem;
  }

  .sm\:active\:pt-40:active{
    padding-top: 10rem;
  }

  .sm\:active\:pr-40:active{
    padding-right: 10rem;
  }

  .sm\:active\:pb-40:active{
    padding-bottom: 10rem;
  }

  .sm\:active\:pl-40:active{
    padding-left: 10rem;
  }

  .sm\:active\:pt-48:active{
    padding-top: 12rem;
  }

  .sm\:active\:pr-48:active{
    padding-right: 12rem;
  }

  .sm\:active\:pb-48:active{
    padding-bottom: 12rem;
  }

  .sm\:active\:pl-48:active{
    padding-left: 12rem;
  }

  .sm\:active\:pt-56:active{
    padding-top: 14rem;
  }

  .sm\:active\:pr-56:active{
    padding-right: 14rem;
  }

  .sm\:active\:pb-56:active{
    padding-bottom: 14rem;
  }

  .sm\:active\:pl-56:active{
    padding-left: 14rem;
  }

  .sm\:active\:pt-64:active{
    padding-top: 16rem;
  }

  .sm\:active\:pr-64:active{
    padding-right: 16rem;
  }

  .sm\:active\:pb-64:active{
    padding-bottom: 16rem;
  }

  .sm\:active\:pl-64:active{
    padding-left: 16rem;
  }

  .sm\:active\:pt-px:active{
    padding-top: 1px;
  }

  .sm\:active\:pr-px:active{
    padding-right: 1px;
  }

  .sm\:active\:pb-px:active{
    padding-bottom: 1px;
  }

  .sm\:active\:pl-px:active{
    padding-left: 1px;
  }

  .sm\:active\:pt-0\.25:active{
    padding-top: 0.0625rem;
  }

  .sm\:active\:pr-0\.25:active{
    padding-right: 0.0625rem;
  }

  .sm\:active\:pb-0\.25:active{
    padding-bottom: 0.0625rem;
  }

  .sm\:active\:pl-0\.25:active{
    padding-left: 0.0625rem;
  }

  .sm\:active\:pt-1\.5:active{
    padding-top: 0.375rem;
  }

  .sm\:active\:pr-1\.5:active{
    padding-right: 0.375rem;
  }

  .sm\:active\:pb-1\.5:active{
    padding-bottom: 0.375rem;
  }

  .sm\:active\:pl-1\.5:active{
    padding-left: 0.375rem;
  }

  .sm\:active\:pt-2\.5:active{
    padding-top: 0.625rem;
  }

  .sm\:active\:pr-2\.5:active{
    padding-right: 0.625rem;
  }

  .sm\:active\:pb-2\.5:active{
    padding-bottom: 0.625rem;
  }

  .sm\:active\:pl-2\.5:active{
    padding-left: 0.625rem;
  }

  .sm\:active\:pt-3\.25:active{
    padding-top: 0.8125rem;
  }

  .sm\:active\:pr-3\.25:active{
    padding-right: 0.8125rem;
  }

  .sm\:active\:pb-3\.25:active{
    padding-bottom: 0.8125rem;
  }

  .sm\:active\:pl-3\.25:active{
    padding-left: 0.8125rem;
  }

  .sm\:active\:pt-3\.5:active{
    padding-top: 0.875rem;
  }

  .sm\:active\:pr-3\.5:active{
    padding-right: 0.875rem;
  }

  .sm\:active\:pb-3\.5:active{
    padding-bottom: 0.875rem;
  }

  .sm\:active\:pl-3\.5:active{
    padding-left: 0.875rem;
  }

  .sm\:active\:pt-5\.25:active{
    padding-top: 1.3125rem;
  }

  .sm\:active\:pr-5\.25:active{
    padding-right: 1.3125rem;
  }

  .sm\:active\:pb-5\.25:active{
    padding-bottom: 1.3125rem;
  }

  .sm\:active\:pl-5\.25:active{
    padding-left: 1.3125rem;
  }

  .sm\:first\:p-0:first-child{
    padding: 0;
  }

  .sm\:first\:p-1:first-child{
    padding: 0.25rem;
  }

  .sm\:first\:p-2:first-child{
    padding: 0.5rem;
  }

  .sm\:first\:p-3:first-child{
    padding: 0.75rem;
  }

  .sm\:first\:p-4:first-child{
    padding: 1rem;
  }

  .sm\:first\:p-5:first-child{
    padding: 1.25rem;
  }

  .sm\:first\:p-6:first-child{
    padding: 1.5rem;
  }

  .sm\:first\:p-8:first-child{
    padding: 2rem;
  }

  .sm\:first\:p-9:first-child{
    padding: 2.25rem;
  }

  .sm\:first\:p-10:first-child{
    padding: 2.5rem;
  }

  .sm\:first\:p-11:first-child{
    padding: 3rem;
  }

  .sm\:first\:p-12:first-child{
    padding: 3rem;
  }

  .sm\:first\:p-14:first-child{
    padding: 3.5rem;
  }

  .sm\:first\:p-16:first-child{
    padding: 4rem;
  }

  .sm\:first\:p-20:first-child{
    padding: 5rem;
  }

  .sm\:first\:p-24:first-child{
    padding: 6rem;
  }

  .sm\:first\:p-32:first-child{
    padding: 8rem;
  }

  .sm\:first\:p-40:first-child{
    padding: 10rem;
  }

  .sm\:first\:p-48:first-child{
    padding: 12rem;
  }

  .sm\:first\:p-56:first-child{
    padding: 14rem;
  }

  .sm\:first\:p-64:first-child{
    padding: 16rem;
  }

  .sm\:first\:p-px:first-child{
    padding: 1px;
  }

  .sm\:first\:p-0\.25:first-child{
    padding: 0.0625rem;
  }

  .sm\:first\:p-1\.5:first-child{
    padding: 0.375rem;
  }

  .sm\:first\:p-2\.5:first-child{
    padding: 0.625rem;
  }

  .sm\:first\:p-3\.25:first-child{
    padding: 0.8125rem;
  }

  .sm\:first\:p-3\.5:first-child{
    padding: 0.875rem;
  }

  .sm\:first\:p-5\.25:first-child{
    padding: 1.3125rem;
  }

  .sm\:first\:py-0:first-child{
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:first\:px-0:first-child{
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:first\:py-1:first-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .sm\:first\:px-1:first-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .sm\:first\:py-2:first-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:first\:px-2:first-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:first\:py-3:first-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:first\:px-3:first-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:first\:py-4:first-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:first\:px-4:first-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:first\:py-5:first-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:first\:px-5:first-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:first\:py-6:first-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:first\:px-6:first-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:first\:py-8:first-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:first\:px-8:first-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:first\:py-9:first-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .sm\:first\:px-9:first-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:first\:py-10:first-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:first\:px-10:first-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:first\:py-11:first-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:first\:px-11:first-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:first\:py-12:first-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:first\:px-12:first-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:first\:py-14:first-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .sm\:first\:px-14:first-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .sm\:first\:py-16:first-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:first\:px-16:first-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:first\:py-20:first-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:first\:px-20:first-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm\:first\:py-24:first-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:first\:px-24:first-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .sm\:first\:py-32:first-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:first\:px-32:first-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .sm\:first\:py-40:first-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .sm\:first\:px-40:first-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .sm\:first\:py-48:first-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .sm\:first\:px-48:first-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .sm\:first\:py-56:first-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .sm\:first\:px-56:first-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .sm\:first\:py-64:first-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .sm\:first\:px-64:first-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .sm\:first\:py-px:first-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:first\:px-px:first-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .sm\:first\:py-0\.25:first-child{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .sm\:first\:px-0\.25:first-child{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .sm\:first\:py-1\.5:first-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .sm\:first\:px-1\.5:first-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .sm\:first\:py-2\.5:first-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .sm\:first\:px-2\.5:first-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .sm\:first\:py-3\.25:first-child{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .sm\:first\:px-3\.25:first-child{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .sm\:first\:py-3\.5:first-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .sm\:first\:px-3\.5:first-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .sm\:first\:py-5\.25:first-child{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .sm\:first\:px-5\.25:first-child{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .sm\:first\:pt-0:first-child{
    padding-top: 0;
  }

  .sm\:first\:pr-0:first-child{
    padding-right: 0;
  }

  .sm\:first\:pb-0:first-child{
    padding-bottom: 0;
  }

  .sm\:first\:pl-0:first-child{
    padding-left: 0;
  }

  .sm\:first\:pt-1:first-child{
    padding-top: 0.25rem;
  }

  .sm\:first\:pr-1:first-child{
    padding-right: 0.25rem;
  }

  .sm\:first\:pb-1:first-child{
    padding-bottom: 0.25rem;
  }

  .sm\:first\:pl-1:first-child{
    padding-left: 0.25rem;
  }

  .sm\:first\:pt-2:first-child{
    padding-top: 0.5rem;
  }

  .sm\:first\:pr-2:first-child{
    padding-right: 0.5rem;
  }

  .sm\:first\:pb-2:first-child{
    padding-bottom: 0.5rem;
  }

  .sm\:first\:pl-2:first-child{
    padding-left: 0.5rem;
  }

  .sm\:first\:pt-3:first-child{
    padding-top: 0.75rem;
  }

  .sm\:first\:pr-3:first-child{
    padding-right: 0.75rem;
  }

  .sm\:first\:pb-3:first-child{
    padding-bottom: 0.75rem;
  }

  .sm\:first\:pl-3:first-child{
    padding-left: 0.75rem;
  }

  .sm\:first\:pt-4:first-child{
    padding-top: 1rem;
  }

  .sm\:first\:pr-4:first-child{
    padding-right: 1rem;
  }

  .sm\:first\:pb-4:first-child{
    padding-bottom: 1rem;
  }

  .sm\:first\:pl-4:first-child{
    padding-left: 1rem;
  }

  .sm\:first\:pt-5:first-child{
    padding-top: 1.25rem;
  }

  .sm\:first\:pr-5:first-child{
    padding-right: 1.25rem;
  }

  .sm\:first\:pb-5:first-child{
    padding-bottom: 1.25rem;
  }

  .sm\:first\:pl-5:first-child{
    padding-left: 1.25rem;
  }

  .sm\:first\:pt-6:first-child{
    padding-top: 1.5rem;
  }

  .sm\:first\:pr-6:first-child{
    padding-right: 1.5rem;
  }

  .sm\:first\:pb-6:first-child{
    padding-bottom: 1.5rem;
  }

  .sm\:first\:pl-6:first-child{
    padding-left: 1.5rem;
  }

  .sm\:first\:pt-8:first-child{
    padding-top: 2rem;
  }

  .sm\:first\:pr-8:first-child{
    padding-right: 2rem;
  }

  .sm\:first\:pb-8:first-child{
    padding-bottom: 2rem;
  }

  .sm\:first\:pl-8:first-child{
    padding-left: 2rem;
  }

  .sm\:first\:pt-9:first-child{
    padding-top: 2.25rem;
  }

  .sm\:first\:pr-9:first-child{
    padding-right: 2.25rem;
  }

  .sm\:first\:pb-9:first-child{
    padding-bottom: 2.25rem;
  }

  .sm\:first\:pl-9:first-child{
    padding-left: 2.25rem;
  }

  .sm\:first\:pt-10:first-child{
    padding-top: 2.5rem;
  }

  .sm\:first\:pr-10:first-child{
    padding-right: 2.5rem;
  }

  .sm\:first\:pb-10:first-child{
    padding-bottom: 2.5rem;
  }

  .sm\:first\:pl-10:first-child{
    padding-left: 2.5rem;
  }

  .sm\:first\:pt-11:first-child{
    padding-top: 3rem;
  }

  .sm\:first\:pr-11:first-child{
    padding-right: 3rem;
  }

  .sm\:first\:pb-11:first-child{
    padding-bottom: 3rem;
  }

  .sm\:first\:pl-11:first-child{
    padding-left: 3rem;
  }

  .sm\:first\:pt-12:first-child{
    padding-top: 3rem;
  }

  .sm\:first\:pr-12:first-child{
    padding-right: 3rem;
  }

  .sm\:first\:pb-12:first-child{
    padding-bottom: 3rem;
  }

  .sm\:first\:pl-12:first-child{
    padding-left: 3rem;
  }

  .sm\:first\:pt-14:first-child{
    padding-top: 3.5rem;
  }

  .sm\:first\:pr-14:first-child{
    padding-right: 3.5rem;
  }

  .sm\:first\:pb-14:first-child{
    padding-bottom: 3.5rem;
  }

  .sm\:first\:pl-14:first-child{
    padding-left: 3.5rem;
  }

  .sm\:first\:pt-16:first-child{
    padding-top: 4rem;
  }

  .sm\:first\:pr-16:first-child{
    padding-right: 4rem;
  }

  .sm\:first\:pb-16:first-child{
    padding-bottom: 4rem;
  }

  .sm\:first\:pl-16:first-child{
    padding-left: 4rem;
  }

  .sm\:first\:pt-20:first-child{
    padding-top: 5rem;
  }

  .sm\:first\:pr-20:first-child{
    padding-right: 5rem;
  }

  .sm\:first\:pb-20:first-child{
    padding-bottom: 5rem;
  }

  .sm\:first\:pl-20:first-child{
    padding-left: 5rem;
  }

  .sm\:first\:pt-24:first-child{
    padding-top: 6rem;
  }

  .sm\:first\:pr-24:first-child{
    padding-right: 6rem;
  }

  .sm\:first\:pb-24:first-child{
    padding-bottom: 6rem;
  }

  .sm\:first\:pl-24:first-child{
    padding-left: 6rem;
  }

  .sm\:first\:pt-32:first-child{
    padding-top: 8rem;
  }

  .sm\:first\:pr-32:first-child{
    padding-right: 8rem;
  }

  .sm\:first\:pb-32:first-child{
    padding-bottom: 8rem;
  }

  .sm\:first\:pl-32:first-child{
    padding-left: 8rem;
  }

  .sm\:first\:pt-40:first-child{
    padding-top: 10rem;
  }

  .sm\:first\:pr-40:first-child{
    padding-right: 10rem;
  }

  .sm\:first\:pb-40:first-child{
    padding-bottom: 10rem;
  }

  .sm\:first\:pl-40:first-child{
    padding-left: 10rem;
  }

  .sm\:first\:pt-48:first-child{
    padding-top: 12rem;
  }

  .sm\:first\:pr-48:first-child{
    padding-right: 12rem;
  }

  .sm\:first\:pb-48:first-child{
    padding-bottom: 12rem;
  }

  .sm\:first\:pl-48:first-child{
    padding-left: 12rem;
  }

  .sm\:first\:pt-56:first-child{
    padding-top: 14rem;
  }

  .sm\:first\:pr-56:first-child{
    padding-right: 14rem;
  }

  .sm\:first\:pb-56:first-child{
    padding-bottom: 14rem;
  }

  .sm\:first\:pl-56:first-child{
    padding-left: 14rem;
  }

  .sm\:first\:pt-64:first-child{
    padding-top: 16rem;
  }

  .sm\:first\:pr-64:first-child{
    padding-right: 16rem;
  }

  .sm\:first\:pb-64:first-child{
    padding-bottom: 16rem;
  }

  .sm\:first\:pl-64:first-child{
    padding-left: 16rem;
  }

  .sm\:first\:pt-px:first-child{
    padding-top: 1px;
  }

  .sm\:first\:pr-px:first-child{
    padding-right: 1px;
  }

  .sm\:first\:pb-px:first-child{
    padding-bottom: 1px;
  }

  .sm\:first\:pl-px:first-child{
    padding-left: 1px;
  }

  .sm\:first\:pt-0\.25:first-child{
    padding-top: 0.0625rem;
  }

  .sm\:first\:pr-0\.25:first-child{
    padding-right: 0.0625rem;
  }

  .sm\:first\:pb-0\.25:first-child{
    padding-bottom: 0.0625rem;
  }

  .sm\:first\:pl-0\.25:first-child{
    padding-left: 0.0625rem;
  }

  .sm\:first\:pt-1\.5:first-child{
    padding-top: 0.375rem;
  }

  .sm\:first\:pr-1\.5:first-child{
    padding-right: 0.375rem;
  }

  .sm\:first\:pb-1\.5:first-child{
    padding-bottom: 0.375rem;
  }

  .sm\:first\:pl-1\.5:first-child{
    padding-left: 0.375rem;
  }

  .sm\:first\:pt-2\.5:first-child{
    padding-top: 0.625rem;
  }

  .sm\:first\:pr-2\.5:first-child{
    padding-right: 0.625rem;
  }

  .sm\:first\:pb-2\.5:first-child{
    padding-bottom: 0.625rem;
  }

  .sm\:first\:pl-2\.5:first-child{
    padding-left: 0.625rem;
  }

  .sm\:first\:pt-3\.25:first-child{
    padding-top: 0.8125rem;
  }

  .sm\:first\:pr-3\.25:first-child{
    padding-right: 0.8125rem;
  }

  .sm\:first\:pb-3\.25:first-child{
    padding-bottom: 0.8125rem;
  }

  .sm\:first\:pl-3\.25:first-child{
    padding-left: 0.8125rem;
  }

  .sm\:first\:pt-3\.5:first-child{
    padding-top: 0.875rem;
  }

  .sm\:first\:pr-3\.5:first-child{
    padding-right: 0.875rem;
  }

  .sm\:first\:pb-3\.5:first-child{
    padding-bottom: 0.875rem;
  }

  .sm\:first\:pl-3\.5:first-child{
    padding-left: 0.875rem;
  }

  .sm\:first\:pt-5\.25:first-child{
    padding-top: 1.3125rem;
  }

  .sm\:first\:pr-5\.25:first-child{
    padding-right: 1.3125rem;
  }

  .sm\:first\:pb-5\.25:first-child{
    padding-bottom: 1.3125rem;
  }

  .sm\:first\:pl-5\.25:first-child{
    padding-left: 1.3125rem;
  }

  .sm\:last\:p-0:last-child{
    padding: 0;
  }

  .sm\:last\:p-1:last-child{
    padding: 0.25rem;
  }

  .sm\:last\:p-2:last-child{
    padding: 0.5rem;
  }

  .sm\:last\:p-3:last-child{
    padding: 0.75rem;
  }

  .sm\:last\:p-4:last-child{
    padding: 1rem;
  }

  .sm\:last\:p-5:last-child{
    padding: 1.25rem;
  }

  .sm\:last\:p-6:last-child{
    padding: 1.5rem;
  }

  .sm\:last\:p-8:last-child{
    padding: 2rem;
  }

  .sm\:last\:p-9:last-child{
    padding: 2.25rem;
  }

  .sm\:last\:p-10:last-child{
    padding: 2.5rem;
  }

  .sm\:last\:p-11:last-child{
    padding: 3rem;
  }

  .sm\:last\:p-12:last-child{
    padding: 3rem;
  }

  .sm\:last\:p-14:last-child{
    padding: 3.5rem;
  }

  .sm\:last\:p-16:last-child{
    padding: 4rem;
  }

  .sm\:last\:p-20:last-child{
    padding: 5rem;
  }

  .sm\:last\:p-24:last-child{
    padding: 6rem;
  }

  .sm\:last\:p-32:last-child{
    padding: 8rem;
  }

  .sm\:last\:p-40:last-child{
    padding: 10rem;
  }

  .sm\:last\:p-48:last-child{
    padding: 12rem;
  }

  .sm\:last\:p-56:last-child{
    padding: 14rem;
  }

  .sm\:last\:p-64:last-child{
    padding: 16rem;
  }

  .sm\:last\:p-px:last-child{
    padding: 1px;
  }

  .sm\:last\:p-0\.25:last-child{
    padding: 0.0625rem;
  }

  .sm\:last\:p-1\.5:last-child{
    padding: 0.375rem;
  }

  .sm\:last\:p-2\.5:last-child{
    padding: 0.625rem;
  }

  .sm\:last\:p-3\.25:last-child{
    padding: 0.8125rem;
  }

  .sm\:last\:p-3\.5:last-child{
    padding: 0.875rem;
  }

  .sm\:last\:p-5\.25:last-child{
    padding: 1.3125rem;
  }

  .sm\:last\:py-0:last-child{
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:last\:px-0:last-child{
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:last\:py-1:last-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .sm\:last\:px-1:last-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .sm\:last\:py-2:last-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:last\:px-2:last-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:last\:py-3:last-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:last\:px-3:last-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:last\:py-4:last-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:last\:px-4:last-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:last\:py-5:last-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:last\:px-5:last-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:last\:py-6:last-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:last\:px-6:last-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:last\:py-8:last-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:last\:px-8:last-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:last\:py-9:last-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .sm\:last\:px-9:last-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:last\:py-10:last-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:last\:px-10:last-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:last\:py-11:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:last\:px-11:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:last\:py-12:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:last\:px-12:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:last\:py-14:last-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .sm\:last\:px-14:last-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .sm\:last\:py-16:last-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:last\:px-16:last-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:last\:py-20:last-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:last\:px-20:last-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm\:last\:py-24:last-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:last\:px-24:last-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .sm\:last\:py-32:last-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:last\:px-32:last-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .sm\:last\:py-40:last-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .sm\:last\:px-40:last-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .sm\:last\:py-48:last-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .sm\:last\:px-48:last-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .sm\:last\:py-56:last-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .sm\:last\:px-56:last-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .sm\:last\:py-64:last-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .sm\:last\:px-64:last-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .sm\:last\:py-px:last-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:last\:px-px:last-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .sm\:last\:py-0\.25:last-child{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .sm\:last\:px-0\.25:last-child{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .sm\:last\:py-1\.5:last-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .sm\:last\:px-1\.5:last-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .sm\:last\:py-2\.5:last-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .sm\:last\:px-2\.5:last-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .sm\:last\:py-3\.25:last-child{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .sm\:last\:px-3\.25:last-child{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .sm\:last\:py-3\.5:last-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .sm\:last\:px-3\.5:last-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .sm\:last\:py-5\.25:last-child{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .sm\:last\:px-5\.25:last-child{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .sm\:last\:pt-0:last-child{
    padding-top: 0;
  }

  .sm\:last\:pr-0:last-child{
    padding-right: 0;
  }

  .sm\:last\:pb-0:last-child{
    padding-bottom: 0;
  }

  .sm\:last\:pl-0:last-child{
    padding-left: 0;
  }

  .sm\:last\:pt-1:last-child{
    padding-top: 0.25rem;
  }

  .sm\:last\:pr-1:last-child{
    padding-right: 0.25rem;
  }

  .sm\:last\:pb-1:last-child{
    padding-bottom: 0.25rem;
  }

  .sm\:last\:pl-1:last-child{
    padding-left: 0.25rem;
  }

  .sm\:last\:pt-2:last-child{
    padding-top: 0.5rem;
  }

  .sm\:last\:pr-2:last-child{
    padding-right: 0.5rem;
  }

  .sm\:last\:pb-2:last-child{
    padding-bottom: 0.5rem;
  }

  .sm\:last\:pl-2:last-child{
    padding-left: 0.5rem;
  }

  .sm\:last\:pt-3:last-child{
    padding-top: 0.75rem;
  }

  .sm\:last\:pr-3:last-child{
    padding-right: 0.75rem;
  }

  .sm\:last\:pb-3:last-child{
    padding-bottom: 0.75rem;
  }

  .sm\:last\:pl-3:last-child{
    padding-left: 0.75rem;
  }

  .sm\:last\:pt-4:last-child{
    padding-top: 1rem;
  }

  .sm\:last\:pr-4:last-child{
    padding-right: 1rem;
  }

  .sm\:last\:pb-4:last-child{
    padding-bottom: 1rem;
  }

  .sm\:last\:pl-4:last-child{
    padding-left: 1rem;
  }

  .sm\:last\:pt-5:last-child{
    padding-top: 1.25rem;
  }

  .sm\:last\:pr-5:last-child{
    padding-right: 1.25rem;
  }

  .sm\:last\:pb-5:last-child{
    padding-bottom: 1.25rem;
  }

  .sm\:last\:pl-5:last-child{
    padding-left: 1.25rem;
  }

  .sm\:last\:pt-6:last-child{
    padding-top: 1.5rem;
  }

  .sm\:last\:pr-6:last-child{
    padding-right: 1.5rem;
  }

  .sm\:last\:pb-6:last-child{
    padding-bottom: 1.5rem;
  }

  .sm\:last\:pl-6:last-child{
    padding-left: 1.5rem;
  }

  .sm\:last\:pt-8:last-child{
    padding-top: 2rem;
  }

  .sm\:last\:pr-8:last-child{
    padding-right: 2rem;
  }

  .sm\:last\:pb-8:last-child{
    padding-bottom: 2rem;
  }

  .sm\:last\:pl-8:last-child{
    padding-left: 2rem;
  }

  .sm\:last\:pt-9:last-child{
    padding-top: 2.25rem;
  }

  .sm\:last\:pr-9:last-child{
    padding-right: 2.25rem;
  }

  .sm\:last\:pb-9:last-child{
    padding-bottom: 2.25rem;
  }

  .sm\:last\:pl-9:last-child{
    padding-left: 2.25rem;
  }

  .sm\:last\:pt-10:last-child{
    padding-top: 2.5rem;
  }

  .sm\:last\:pr-10:last-child{
    padding-right: 2.5rem;
  }

  .sm\:last\:pb-10:last-child{
    padding-bottom: 2.5rem;
  }

  .sm\:last\:pl-10:last-child{
    padding-left: 2.5rem;
  }

  .sm\:last\:pt-11:last-child{
    padding-top: 3rem;
  }

  .sm\:last\:pr-11:last-child{
    padding-right: 3rem;
  }

  .sm\:last\:pb-11:last-child{
    padding-bottom: 3rem;
  }

  .sm\:last\:pl-11:last-child{
    padding-left: 3rem;
  }

  .sm\:last\:pt-12:last-child{
    padding-top: 3rem;
  }

  .sm\:last\:pr-12:last-child{
    padding-right: 3rem;
  }

  .sm\:last\:pb-12:last-child{
    padding-bottom: 3rem;
  }

  .sm\:last\:pl-12:last-child{
    padding-left: 3rem;
  }

  .sm\:last\:pt-14:last-child{
    padding-top: 3.5rem;
  }

  .sm\:last\:pr-14:last-child{
    padding-right: 3.5rem;
  }

  .sm\:last\:pb-14:last-child{
    padding-bottom: 3.5rem;
  }

  .sm\:last\:pl-14:last-child{
    padding-left: 3.5rem;
  }

  .sm\:last\:pt-16:last-child{
    padding-top: 4rem;
  }

  .sm\:last\:pr-16:last-child{
    padding-right: 4rem;
  }

  .sm\:last\:pb-16:last-child{
    padding-bottom: 4rem;
  }

  .sm\:last\:pl-16:last-child{
    padding-left: 4rem;
  }

  .sm\:last\:pt-20:last-child{
    padding-top: 5rem;
  }

  .sm\:last\:pr-20:last-child{
    padding-right: 5rem;
  }

  .sm\:last\:pb-20:last-child{
    padding-bottom: 5rem;
  }

  .sm\:last\:pl-20:last-child{
    padding-left: 5rem;
  }

  .sm\:last\:pt-24:last-child{
    padding-top: 6rem;
  }

  .sm\:last\:pr-24:last-child{
    padding-right: 6rem;
  }

  .sm\:last\:pb-24:last-child{
    padding-bottom: 6rem;
  }

  .sm\:last\:pl-24:last-child{
    padding-left: 6rem;
  }

  .sm\:last\:pt-32:last-child{
    padding-top: 8rem;
  }

  .sm\:last\:pr-32:last-child{
    padding-right: 8rem;
  }

  .sm\:last\:pb-32:last-child{
    padding-bottom: 8rem;
  }

  .sm\:last\:pl-32:last-child{
    padding-left: 8rem;
  }

  .sm\:last\:pt-40:last-child{
    padding-top: 10rem;
  }

  .sm\:last\:pr-40:last-child{
    padding-right: 10rem;
  }

  .sm\:last\:pb-40:last-child{
    padding-bottom: 10rem;
  }

  .sm\:last\:pl-40:last-child{
    padding-left: 10rem;
  }

  .sm\:last\:pt-48:last-child{
    padding-top: 12rem;
  }

  .sm\:last\:pr-48:last-child{
    padding-right: 12rem;
  }

  .sm\:last\:pb-48:last-child{
    padding-bottom: 12rem;
  }

  .sm\:last\:pl-48:last-child{
    padding-left: 12rem;
  }

  .sm\:last\:pt-56:last-child{
    padding-top: 14rem;
  }

  .sm\:last\:pr-56:last-child{
    padding-right: 14rem;
  }

  .sm\:last\:pb-56:last-child{
    padding-bottom: 14rem;
  }

  .sm\:last\:pl-56:last-child{
    padding-left: 14rem;
  }

  .sm\:last\:pt-64:last-child{
    padding-top: 16rem;
  }

  .sm\:last\:pr-64:last-child{
    padding-right: 16rem;
  }

  .sm\:last\:pb-64:last-child{
    padding-bottom: 16rem;
  }

  .sm\:last\:pl-64:last-child{
    padding-left: 16rem;
  }

  .sm\:last\:pt-px:last-child{
    padding-top: 1px;
  }

  .sm\:last\:pr-px:last-child{
    padding-right: 1px;
  }

  .sm\:last\:pb-px:last-child{
    padding-bottom: 1px;
  }

  .sm\:last\:pl-px:last-child{
    padding-left: 1px;
  }

  .sm\:last\:pt-0\.25:last-child{
    padding-top: 0.0625rem;
  }

  .sm\:last\:pr-0\.25:last-child{
    padding-right: 0.0625rem;
  }

  .sm\:last\:pb-0\.25:last-child{
    padding-bottom: 0.0625rem;
  }

  .sm\:last\:pl-0\.25:last-child{
    padding-left: 0.0625rem;
  }

  .sm\:last\:pt-1\.5:last-child{
    padding-top: 0.375rem;
  }

  .sm\:last\:pr-1\.5:last-child{
    padding-right: 0.375rem;
  }

  .sm\:last\:pb-1\.5:last-child{
    padding-bottom: 0.375rem;
  }

  .sm\:last\:pl-1\.5:last-child{
    padding-left: 0.375rem;
  }

  .sm\:last\:pt-2\.5:last-child{
    padding-top: 0.625rem;
  }

  .sm\:last\:pr-2\.5:last-child{
    padding-right: 0.625rem;
  }

  .sm\:last\:pb-2\.5:last-child{
    padding-bottom: 0.625rem;
  }

  .sm\:last\:pl-2\.5:last-child{
    padding-left: 0.625rem;
  }

  .sm\:last\:pt-3\.25:last-child{
    padding-top: 0.8125rem;
  }

  .sm\:last\:pr-3\.25:last-child{
    padding-right: 0.8125rem;
  }

  .sm\:last\:pb-3\.25:last-child{
    padding-bottom: 0.8125rem;
  }

  .sm\:last\:pl-3\.25:last-child{
    padding-left: 0.8125rem;
  }

  .sm\:last\:pt-3\.5:last-child{
    padding-top: 0.875rem;
  }

  .sm\:last\:pr-3\.5:last-child{
    padding-right: 0.875rem;
  }

  .sm\:last\:pb-3\.5:last-child{
    padding-bottom: 0.875rem;
  }

  .sm\:last\:pl-3\.5:last-child{
    padding-left: 0.875rem;
  }

  .sm\:last\:pt-5\.25:last-child{
    padding-top: 1.3125rem;
  }

  .sm\:last\:pr-5\.25:last-child{
    padding-right: 1.3125rem;
  }

  .sm\:last\:pb-5\.25:last-child{
    padding-bottom: 1.3125rem;
  }

  .sm\:last\:pl-5\.25:last-child{
    padding-left: 1.3125rem;
  }

  .sm\:placeholder-black::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-black::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .sm\:placeholder-transparent:-ms-input-placeholder{
    color: transparent;
  }

  .sm\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .sm\:placeholder-error::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:placeholder-error:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:placeholder-error::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:placeholder-success::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:placeholder-success:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:placeholder-success::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:placeholder-white-10::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:placeholder-white-10:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:placeholder-white-10::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:placeholder-white-20::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:placeholder-white-20:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:placeholder-white-20::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:placeholder-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:placeholder-white::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-very-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-very-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-very-light::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-light::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-dark::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-hocus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-hocus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-hocus::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-active::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-ml-plus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-ml-plus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-ml-plus::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-banner::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-banner:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:placeholder-cheeto-banner::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-1::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-1:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-1::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-10::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-10:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-10::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-20::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-20:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-20::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-30::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-30:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-30::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-40::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-40:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-40::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-50::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-50:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-50::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-60::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-60:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-60::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-70::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-70:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-70::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-80::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-80:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-80::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-90::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-90:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-90::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-100::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-100:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-100::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:placeholder-gracy-overlay-90::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:placeholder-gracy-overlay-90:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:placeholder-gracy-overlay-90::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:placeholder-login::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:placeholder-login:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:placeholder-login::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:placeholder-olive-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:placeholder-olive-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:placeholder-olive-light::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:placeholder-olive-drab::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:placeholder-olive-drab:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:placeholder-olive-drab::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:placeholder-olive-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:placeholder-olive-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:placeholder-olive-dark::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:placeholder-daisy-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:placeholder-daisy-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:placeholder-daisy-light::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-gumby::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-gumby:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-gumby::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-daisy::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-daisy:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-daisy::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-pokey::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-pokey:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-pokey::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-aster::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-aster:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-aster::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-aster-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-aster-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-aster-dark::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-roxo::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-roxo:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-roxo::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-error::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-error:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-error::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-success::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-success:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:placeholder-feedback-success::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-dark::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-hocus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-hocus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-hocus::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-active::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-aoki-light::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-kermit::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-kermit:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:placeholder-functional-kermit::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:placeholder-mixlabPlus-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:placeholder-mixlabPlus-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:placeholder-mixlabPlus-light::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-orange-light::-moz-placeholder{
    color: ;
  }

  .sm\:placeholder-primary-orange-light:-ms-input-placeholder{
    color: ;
  }

  .sm\:placeholder-primary-orange-light::placeholder{
    color: ;
  }

  .sm\:placeholder-off-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:placeholder-off-white:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:placeholder-off-white::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-black:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-black:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-black:hover::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-transparent:hover::-moz-placeholder{
    color: transparent;
  }

  .sm\:hover\:placeholder-transparent:hover:-ms-input-placeholder{
    color: transparent;
  }

  .sm\:hover\:placeholder-transparent:hover::placeholder{
    color: transparent;
  }

  .sm\:hover\:placeholder-error:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-error:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-error:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-success:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-success:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-success:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-white-10:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-white-10:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-white-10:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-white-20:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-white-20:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-white-20:hover::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-white:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-white:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-white:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-very-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-very-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-very-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-hocus:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-hocus:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-hocus:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-active:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-active:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-active:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-ml-plus:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-ml-plus:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-ml-plus:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-banner:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-banner:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-cheeto-banner:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-1:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-1:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-1:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-10:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-10:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-10:hover::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-20:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-20:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-20:hover::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-30:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-30:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-30:hover::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-40:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-40:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-40:hover::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-50:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-50:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-50:hover::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-60:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-60:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-60:hover::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-70:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-70:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-70:hover::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-80:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-80:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-80:hover::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-90:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-90:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-90:hover::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-100:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-100:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-100:hover::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy:hover::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-gracy-overlay-90:hover::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:hover\:placeholder-gracy-overlay-90:hover:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:hover\:placeholder-gracy-overlay-90:hover::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:hover\:placeholder-login:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-login:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-login:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-olive-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-olive-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-olive-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-olive-drab:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-olive-drab:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-olive-drab:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-olive-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-olive-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-olive-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-daisy-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-daisy-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-daisy-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-gumby:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-gumby:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-gumby:hover::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-daisy:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-daisy:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-daisy:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-pokey:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-pokey:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-pokey:hover::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-aster:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-aster:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-aster:hover::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-aster-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-aster-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-aster-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-roxo:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-roxo:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-roxo:hover::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-error:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-error:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-error:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-success:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-success:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-feedback-success:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki:hover::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-hocus:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-hocus:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-hocus:hover::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-active:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-active:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-active:hover::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-aoki-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-kermit:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-kermit:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-functional-kermit:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-mixlabPlus-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-mixlabPlus-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-mixlabPlus-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-primary-orange-light:hover::-moz-placeholder{
    color: ;
  }

  .sm\:hover\:placeholder-primary-orange-light:hover:-ms-input-placeholder{
    color: ;
  }

  .sm\:hover\:placeholder-primary-orange-light:hover::placeholder{
    color: ;
  }

  .sm\:hover\:placeholder-off-white:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-off-white:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:hover\:placeholder-off-white:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-black:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .sm\:focus\:placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent;
  }

  .sm\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .sm\:focus\:placeholder-error:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-error:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-error:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-success:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-success:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-success:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-white-10:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-white-10:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-white-10:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-white-20:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-white-20:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-white-20:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-white:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-very-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-very-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-very-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-hocus:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-hocus:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-hocus:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-active:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-ml-plus:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-ml-plus:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-ml-plus:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-banner:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-banner:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-cheeto-banner:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-1:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-1:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-1:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-10:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-10:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-10:focus::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-20:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-20:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-20:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-30:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-30:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-30:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-40:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-40:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-40:focus::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-50:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-50:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-50:focus::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-60:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-60:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-60:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-70:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-70:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-70:focus::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-80:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-80:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-80:focus::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-90:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-90:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-90:focus::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-100:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-100:focus::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy:focus::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-gracy-overlay-90:focus::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:focus\:placeholder-gracy-overlay-90:focus:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:focus\:placeholder-gracy-overlay-90:focus::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:focus\:placeholder-login:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-login:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-login:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-olive-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-olive-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-olive-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-olive-drab:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-olive-drab:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-olive-drab:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-olive-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-olive-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-olive-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-daisy-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-daisy-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-daisy-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-gumby:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-gumby:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-gumby:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-daisy:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-daisy:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-daisy:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-pokey:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-pokey:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-pokey:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-aster:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-aster:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-aster:focus::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-aster-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-aster-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-aster-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-roxo:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-roxo:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-roxo:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-error:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-error:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-error:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-success:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-success:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-feedback-success:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki:focus::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-hocus:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-hocus:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-hocus:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-active:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-aoki-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-kermit:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-kermit:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-functional-kermit:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-mixlabPlus-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-mixlabPlus-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-mixlabPlus-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-orange-light:focus::-moz-placeholder{
    color: ;
  }

  .sm\:focus\:placeholder-primary-orange-light:focus:-ms-input-placeholder{
    color: ;
  }

  .sm\:focus\:placeholder-primary-orange-light:focus::placeholder{
    color: ;
  }

  .sm\:focus\:placeholder-off-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-off-white:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-off-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-black:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-black:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-black:active::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-transparent:active::-moz-placeholder{
    color: transparent;
  }

  .sm\:active\:placeholder-transparent:active:-ms-input-placeholder{
    color: transparent;
  }

  .sm\:active\:placeholder-transparent:active::placeholder{
    color: transparent;
  }

  .sm\:active\:placeholder-error:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-error:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-error:active::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-success:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-success:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-success:active::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-white-10:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-white-10:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-white-10:active::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-white-20:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-white-20:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-white-20:active::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-white:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-white:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-white:active::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto:active::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-very-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-very-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-very-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-hocus:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-hocus:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-hocus:active::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-active:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-active:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-active:active::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-ml-plus:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-ml-plus:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-ml-plus:active::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-banner:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-banner:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-cheeto-banner:active::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-1:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-1:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-1:active::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-10:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-10:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-10:active::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-20:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-20:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-20:active::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-30:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-30:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-30:active::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-40:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-40:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-40:active::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-50:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-50:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-50:active::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-60:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-60:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-60:active::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-70:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-70:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-70:active::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-80:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-80:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-80:active::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-90:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-90:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-90:active::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-100:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-100:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-100:active::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy:active::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-gracy-overlay-90:active::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:active\:placeholder-gracy-overlay-90:active:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:active\:placeholder-gracy-overlay-90:active::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:active\:placeholder-login:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-login:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-login:active::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-olive-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-olive-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-olive-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-olive-drab:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-olive-drab:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-olive-drab:active::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-olive-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-olive-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-olive-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-daisy-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-daisy-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-daisy-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-gumby:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-gumby:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-gumby:active::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-daisy:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-daisy:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-daisy:active::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-pokey:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-pokey:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-pokey:active::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-aster:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-aster:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-aster:active::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-aster-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-aster-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-aster-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-roxo:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-roxo:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-roxo:active::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-error:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-error:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-error:active::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-success:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-success:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-feedback-success:active::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki:active::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-hocus:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-hocus:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-hocus:active::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-active:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-active:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-active:active::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-aoki-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-kermit:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-kermit:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-functional-kermit:active::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-mixlabPlus-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-mixlabPlus-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-mixlabPlus-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-primary-orange-light:active::-moz-placeholder{
    color: ;
  }

  .sm\:active\:placeholder-primary-orange-light:active:-ms-input-placeholder{
    color: ;
  }

  .sm\:active\:placeholder-primary-orange-light:active::placeholder{
    color: ;
  }

  .sm\:active\:placeholder-off-white:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-off-white:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:active\:placeholder-off-white:active::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-black:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-black:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-black:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-transparent:first-child::-moz-placeholder{
    color: transparent;
  }

  .sm\:first\:placeholder-transparent:first-child:-ms-input-placeholder{
    color: transparent;
  }

  .sm\:first\:placeholder-transparent:first-child::placeholder{
    color: transparent;
  }

  .sm\:first\:placeholder-error:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-error:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-error:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-success:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-success:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-success:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-white-10:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-white-10:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-white-10:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-white-20:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-white-20:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-white-20:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-white:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-white:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-white:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-very-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-very-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-very-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-hocus:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-hocus:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-hocus:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-active:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-active:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-active:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-ml-plus:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-ml-plus:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-ml-plus:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-banner:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-banner:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-cheeto-banner:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-1:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-1:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-1:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-10:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-10:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-10:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-20:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-20:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-20:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-30:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-30:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-30:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-40:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-40:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-40:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-50:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-50:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-50:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-60:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-60:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-60:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-70:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-70:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-70:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-80:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-80:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-80:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-90:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-90:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-90:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-100:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-100:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-100:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-gracy-overlay-90:first-child::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:first\:placeholder-gracy-overlay-90:first-child:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:first\:placeholder-gracy-overlay-90:first-child::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:first\:placeholder-login:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-login:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-login:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-olive-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-olive-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-olive-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-olive-drab:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-olive-drab:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-olive-drab:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-olive-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-olive-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-olive-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-daisy-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-daisy-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-daisy-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-gumby:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-gumby:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-gumby:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-daisy:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-daisy:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-daisy:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-pokey:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-pokey:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-pokey:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-aster:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-aster:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-aster:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-aster-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-aster-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-aster-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-roxo:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-roxo:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-roxo:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-error:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-error:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-error:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-success:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-success:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-feedback-success:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-hocus:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-hocus:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-hocus:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-active:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-active:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-active:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-aoki-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-kermit:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-kermit:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-functional-kermit:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-mixlabPlus-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-mixlabPlus-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-mixlabPlus-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-primary-orange-light:first-child::-moz-placeholder{
    color: ;
  }

  .sm\:first\:placeholder-primary-orange-light:first-child:-ms-input-placeholder{
    color: ;
  }

  .sm\:first\:placeholder-primary-orange-light:first-child::placeholder{
    color: ;
  }

  .sm\:first\:placeholder-off-white:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-off-white:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:first\:placeholder-off-white:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-black:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-black:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-black:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-transparent:last-child::-moz-placeholder{
    color: transparent;
  }

  .sm\:last\:placeholder-transparent:last-child:-ms-input-placeholder{
    color: transparent;
  }

  .sm\:last\:placeholder-transparent:last-child::placeholder{
    color: transparent;
  }

  .sm\:last\:placeholder-error:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-error:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-error:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-success:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-success:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-success:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-white-10:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-white-10:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-white-10:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-white-20:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-white-20:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-white-20:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-white:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-white:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-white:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-very-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-very-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-very-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-hocus:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-hocus:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-hocus:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-active:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-active:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-active:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-ml-plus:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-ml-plus:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-ml-plus:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-banner:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-banner:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-cheeto-banner:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-1:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-1:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-1:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-10:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-10:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-10:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-20:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-20:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-20:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-30:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-30:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-30:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-40:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-40:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-40:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-50:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-50:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-50:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-60:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-60:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-60:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-70:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-70:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-70:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-80:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-80:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-80:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-90:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-90:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-90:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-100:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-100:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-100:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-gracy-overlay-90:last-child::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:last\:placeholder-gracy-overlay-90:last-child:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:last\:placeholder-gracy-overlay-90:last-child::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .sm\:last\:placeholder-login:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-login:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-login:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-olive-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-olive-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-olive-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-olive-drab:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-olive-drab:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-olive-drab:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-olive-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-olive-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-olive-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-daisy-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-daisy-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-daisy-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-gumby:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-gumby:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-gumby:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-daisy:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-daisy:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-daisy:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-pokey:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-pokey:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-pokey:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-aster:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-aster:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-aster:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-aster-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-aster-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-aster-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-roxo:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-roxo:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-roxo:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-error:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-error:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-error:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-success:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-success:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-feedback-success:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-hocus:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-hocus:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-hocus:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-active:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-active:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-active:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-aoki-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-kermit:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-kermit:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-functional-kermit:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-mixlabPlus-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-mixlabPlus-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-mixlabPlus-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-primary-orange-light:last-child::-moz-placeholder{
    color: ;
  }

  .sm\:last\:placeholder-primary-orange-light:last-child:-ms-input-placeholder{
    color: ;
  }

  .sm\:last\:placeholder-primary-orange-light:last-child::placeholder{
    color: ;
  }

  .sm\:last\:placeholder-off-white:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-off-white:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:last\:placeholder-off-white:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .sm\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:placeholder-opacity-0::placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:placeholder-opacity-25::placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:placeholder-opacity-50::placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:placeholder-opacity-75::placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:placeholder-opacity-80::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:placeholder-opacity-80:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:placeholder-opacity-80::placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:placeholder-opacity-100::placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:hover\:placeholder-opacity-0:hover::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:hover\:placeholder-opacity-0:hover:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:hover\:placeholder-opacity-0:hover::placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:hover\:placeholder-opacity-25:hover::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:hover\:placeholder-opacity-25:hover:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:hover\:placeholder-opacity-25:hover::placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:hover\:placeholder-opacity-50:hover::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:hover\:placeholder-opacity-50:hover:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:hover\:placeholder-opacity-50:hover::placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:hover\:placeholder-opacity-75:hover::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:hover\:placeholder-opacity-75:hover:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:hover\:placeholder-opacity-75:hover::placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:hover\:placeholder-opacity-80:hover::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:hover\:placeholder-opacity-80:hover:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:hover\:placeholder-opacity-80:hover::placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:hover\:placeholder-opacity-100:hover::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:hover\:placeholder-opacity-100:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:hover\:placeholder-opacity-100:hover::placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:focus\:placeholder-opacity-80:focus::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:focus\:placeholder-opacity-80:focus::placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:active\:placeholder-opacity-0:active::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:active\:placeholder-opacity-0:active:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:active\:placeholder-opacity-0:active::placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:active\:placeholder-opacity-25:active::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:active\:placeholder-opacity-25:active:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:active\:placeholder-opacity-25:active::placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:active\:placeholder-opacity-50:active::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:active\:placeholder-opacity-50:active:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:active\:placeholder-opacity-50:active::placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:active\:placeholder-opacity-75:active::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:active\:placeholder-opacity-75:active:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:active\:placeholder-opacity-75:active::placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:active\:placeholder-opacity-80:active::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:active\:placeholder-opacity-80:active:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:active\:placeholder-opacity-80:active::placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:active\:placeholder-opacity-100:active::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:active\:placeholder-opacity-100:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:active\:placeholder-opacity-100:active::placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:first\:placeholder-opacity-0:first-child::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:first\:placeholder-opacity-0:first-child:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:first\:placeholder-opacity-0:first-child::placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:first\:placeholder-opacity-25:first-child::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:first\:placeholder-opacity-25:first-child:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:first\:placeholder-opacity-25:first-child::placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:first\:placeholder-opacity-50:first-child::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:first\:placeholder-opacity-50:first-child:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:first\:placeholder-opacity-50:first-child::placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:first\:placeholder-opacity-75:first-child::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:first\:placeholder-opacity-75:first-child:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:first\:placeholder-opacity-75:first-child::placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:first\:placeholder-opacity-80:first-child::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:first\:placeholder-opacity-80:first-child:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:first\:placeholder-opacity-80:first-child::placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:first\:placeholder-opacity-100:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:first\:placeholder-opacity-100:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:first\:placeholder-opacity-100:first-child::placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:last\:placeholder-opacity-0:last-child::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:last\:placeholder-opacity-0:last-child:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:last\:placeholder-opacity-0:last-child::placeholder{
    --placeholder-opacity: 0;
  }

  .sm\:last\:placeholder-opacity-25:last-child::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:last\:placeholder-opacity-25:last-child:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:last\:placeholder-opacity-25:last-child::placeholder{
    --placeholder-opacity: 0.25;
  }

  .sm\:last\:placeholder-opacity-50:last-child::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:last\:placeholder-opacity-50:last-child:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:last\:placeholder-opacity-50:last-child::placeholder{
    --placeholder-opacity: .5;
  }

  .sm\:last\:placeholder-opacity-75:last-child::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:last\:placeholder-opacity-75:last-child:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:last\:placeholder-opacity-75:last-child::placeholder{
    --placeholder-opacity: 0.75;
  }

  .sm\:last\:placeholder-opacity-80:last-child::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:last\:placeholder-opacity-80:last-child:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:last\:placeholder-opacity-80:last-child::placeholder{
    --placeholder-opacity: .8;
  }

  .sm\:last\:placeholder-opacity-100:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:last\:placeholder-opacity-100:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:last\:placeholder-opacity-100:last-child::placeholder{
    --placeholder-opacity: 1;
  }

  .sm\:pointer-events-none{
    pointer-events: none;
  }

  .sm\:pointer-events-auto{
    pointer-events: auto;
  }

  .sm\:hover\:pointer-events-none:hover{
    pointer-events: none;
  }

  .sm\:hover\:pointer-events-auto:hover{
    pointer-events: auto;
  }

  .sm\:focus\:pointer-events-none:focus{
    pointer-events: none;
  }

  .sm\:focus\:pointer-events-auto:focus{
    pointer-events: auto;
  }

  .sm\:active\:pointer-events-none:active{
    pointer-events: none;
  }

  .sm\:active\:pointer-events-auto:active{
    pointer-events: auto;
  }

  .sm\:first\:pointer-events-none:first-child{
    pointer-events: none;
  }

  .sm\:first\:pointer-events-auto:first-child{
    pointer-events: auto;
  }

  .sm\:last\:pointer-events-none:last-child{
    pointer-events: none;
  }

  .sm\:last\:pointer-events-auto:last-child{
    pointer-events: auto;
  }

  .sm\:static{
    position: static;
  }

  .sm\:fixed{
    position: fixed;
  }

  .sm\:absolute{
    position: absolute;
  }

  .sm\:relative{
    position: relative;
  }

  .sm\:sticky{
    position: -webkit-sticky;
    position: sticky;
  }

  .sm\:hover\:static:hover{
    position: static;
  }

  .sm\:hover\:fixed:hover{
    position: fixed;
  }

  .sm\:hover\:absolute:hover{
    position: absolute;
  }

  .sm\:hover\:relative:hover{
    position: relative;
  }

  .sm\:hover\:sticky:hover{
    position: -webkit-sticky;
    position: sticky;
  }

  .sm\:focus\:static:focus{
    position: static;
  }

  .sm\:focus\:fixed:focus{
    position: fixed;
  }

  .sm\:focus\:absolute:focus{
    position: absolute;
  }

  .sm\:focus\:relative:focus{
    position: relative;
  }

  .sm\:focus\:sticky:focus{
    position: -webkit-sticky;
    position: sticky;
  }

  .sm\:active\:static:active{
    position: static;
  }

  .sm\:active\:fixed:active{
    position: fixed;
  }

  .sm\:active\:absolute:active{
    position: absolute;
  }

  .sm\:active\:relative:active{
    position: relative;
  }

  .sm\:active\:sticky:active{
    position: -webkit-sticky;
    position: sticky;
  }

  .sm\:first\:static:first-child{
    position: static;
  }

  .sm\:first\:fixed:first-child{
    position: fixed;
  }

  .sm\:first\:absolute:first-child{
    position: absolute;
  }

  .sm\:first\:relative:first-child{
    position: relative;
  }

  .sm\:first\:sticky:first-child{
    position: -webkit-sticky;
    position: sticky;
  }

  .sm\:last\:static:last-child{
    position: static;
  }

  .sm\:last\:fixed:last-child{
    position: fixed;
  }

  .sm\:last\:absolute:last-child{
    position: absolute;
  }

  .sm\:last\:relative:last-child{
    position: relative;
  }

  .sm\:last\:sticky:last-child{
    position: -webkit-sticky;
    position: sticky;
  }

  .sm\:inset-0{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .sm\:inset-1\/2{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .sm\:inset-header{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .sm\:inset-y-0{
    top: 0;
    bottom: 0;
  }

  .sm\:inset-x-0{
    right: 0;
    left: 0;
  }

  .sm\:inset-y-auto{
    top: auto;
    bottom: auto;
  }

  .sm\:inset-x-auto{
    right: auto;
    left: auto;
  }

  .sm\:inset-y-1\/2{
    top: 50%;
    bottom: 50%;
  }

  .sm\:inset-x-1\/2{
    right: 50%;
    left: 50%;
  }

  .sm\:inset-y-header{
    top: 5rem;
    bottom: 5rem;
  }

  .sm\:inset-x-header{
    right: 5rem;
    left: 5rem;
  }

  .sm\:top-0{
    top: 0;
  }

  .sm\:right-0{
    right: 0;
  }

  .sm\:bottom-0{
    bottom: 0;
  }

  .sm\:left-0{
    left: 0;
  }

  .sm\:top-auto{
    top: auto;
  }

  .sm\:right-auto{
    right: auto;
  }

  .sm\:bottom-auto{
    bottom: auto;
  }

  .sm\:left-auto{
    left: auto;
  }

  .sm\:top-1\/2{
    top: 50%;
  }

  .sm\:right-1\/2{
    right: 50%;
  }

  .sm\:bottom-1\/2{
    bottom: 50%;
  }

  .sm\:left-1\/2{
    left: 50%;
  }

  .sm\:top-header{
    top: 5rem;
  }

  .sm\:right-header{
    right: 5rem;
  }

  .sm\:bottom-header{
    bottom: 5rem;
  }

  .sm\:left-header{
    left: 5rem;
  }

  .sm\:hover\:inset-0:hover{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:hover\:inset-auto:hover{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .sm\:hover\:inset-1\/2:hover{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .sm\:hover\:inset-header:hover{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .sm\:hover\:inset-y-0:hover{
    top: 0;
    bottom: 0;
  }

  .sm\:hover\:inset-x-0:hover{
    right: 0;
    left: 0;
  }

  .sm\:hover\:inset-y-auto:hover{
    top: auto;
    bottom: auto;
  }

  .sm\:hover\:inset-x-auto:hover{
    right: auto;
    left: auto;
  }

  .sm\:hover\:inset-y-1\/2:hover{
    top: 50%;
    bottom: 50%;
  }

  .sm\:hover\:inset-x-1\/2:hover{
    right: 50%;
    left: 50%;
  }

  .sm\:hover\:inset-y-header:hover{
    top: 5rem;
    bottom: 5rem;
  }

  .sm\:hover\:inset-x-header:hover{
    right: 5rem;
    left: 5rem;
  }

  .sm\:hover\:top-0:hover{
    top: 0;
  }

  .sm\:hover\:right-0:hover{
    right: 0;
  }

  .sm\:hover\:bottom-0:hover{
    bottom: 0;
  }

  .sm\:hover\:left-0:hover{
    left: 0;
  }

  .sm\:hover\:top-auto:hover{
    top: auto;
  }

  .sm\:hover\:right-auto:hover{
    right: auto;
  }

  .sm\:hover\:bottom-auto:hover{
    bottom: auto;
  }

  .sm\:hover\:left-auto:hover{
    left: auto;
  }

  .sm\:hover\:top-1\/2:hover{
    top: 50%;
  }

  .sm\:hover\:right-1\/2:hover{
    right: 50%;
  }

  .sm\:hover\:bottom-1\/2:hover{
    bottom: 50%;
  }

  .sm\:hover\:left-1\/2:hover{
    left: 50%;
  }

  .sm\:hover\:top-header:hover{
    top: 5rem;
  }

  .sm\:hover\:right-header:hover{
    right: 5rem;
  }

  .sm\:hover\:bottom-header:hover{
    bottom: 5rem;
  }

  .sm\:hover\:left-header:hover{
    left: 5rem;
  }

  .sm\:focus\:inset-0:focus{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:focus\:inset-auto:focus{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .sm\:focus\:inset-1\/2:focus{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .sm\:focus\:inset-header:focus{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .sm\:focus\:inset-y-0:focus{
    top: 0;
    bottom: 0;
  }

  .sm\:focus\:inset-x-0:focus{
    right: 0;
    left: 0;
  }

  .sm\:focus\:inset-y-auto:focus{
    top: auto;
    bottom: auto;
  }

  .sm\:focus\:inset-x-auto:focus{
    right: auto;
    left: auto;
  }

  .sm\:focus\:inset-y-1\/2:focus{
    top: 50%;
    bottom: 50%;
  }

  .sm\:focus\:inset-x-1\/2:focus{
    right: 50%;
    left: 50%;
  }

  .sm\:focus\:inset-y-header:focus{
    top: 5rem;
    bottom: 5rem;
  }

  .sm\:focus\:inset-x-header:focus{
    right: 5rem;
    left: 5rem;
  }

  .sm\:focus\:top-0:focus{
    top: 0;
  }

  .sm\:focus\:right-0:focus{
    right: 0;
  }

  .sm\:focus\:bottom-0:focus{
    bottom: 0;
  }

  .sm\:focus\:left-0:focus{
    left: 0;
  }

  .sm\:focus\:top-auto:focus{
    top: auto;
  }

  .sm\:focus\:right-auto:focus{
    right: auto;
  }

  .sm\:focus\:bottom-auto:focus{
    bottom: auto;
  }

  .sm\:focus\:left-auto:focus{
    left: auto;
  }

  .sm\:focus\:top-1\/2:focus{
    top: 50%;
  }

  .sm\:focus\:right-1\/2:focus{
    right: 50%;
  }

  .sm\:focus\:bottom-1\/2:focus{
    bottom: 50%;
  }

  .sm\:focus\:left-1\/2:focus{
    left: 50%;
  }

  .sm\:focus\:top-header:focus{
    top: 5rem;
  }

  .sm\:focus\:right-header:focus{
    right: 5rem;
  }

  .sm\:focus\:bottom-header:focus{
    bottom: 5rem;
  }

  .sm\:focus\:left-header:focus{
    left: 5rem;
  }

  .sm\:active\:inset-0:active{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:active\:inset-auto:active{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .sm\:active\:inset-1\/2:active{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .sm\:active\:inset-header:active{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .sm\:active\:inset-y-0:active{
    top: 0;
    bottom: 0;
  }

  .sm\:active\:inset-x-0:active{
    right: 0;
    left: 0;
  }

  .sm\:active\:inset-y-auto:active{
    top: auto;
    bottom: auto;
  }

  .sm\:active\:inset-x-auto:active{
    right: auto;
    left: auto;
  }

  .sm\:active\:inset-y-1\/2:active{
    top: 50%;
    bottom: 50%;
  }

  .sm\:active\:inset-x-1\/2:active{
    right: 50%;
    left: 50%;
  }

  .sm\:active\:inset-y-header:active{
    top: 5rem;
    bottom: 5rem;
  }

  .sm\:active\:inset-x-header:active{
    right: 5rem;
    left: 5rem;
  }

  .sm\:active\:top-0:active{
    top: 0;
  }

  .sm\:active\:right-0:active{
    right: 0;
  }

  .sm\:active\:bottom-0:active{
    bottom: 0;
  }

  .sm\:active\:left-0:active{
    left: 0;
  }

  .sm\:active\:top-auto:active{
    top: auto;
  }

  .sm\:active\:right-auto:active{
    right: auto;
  }

  .sm\:active\:bottom-auto:active{
    bottom: auto;
  }

  .sm\:active\:left-auto:active{
    left: auto;
  }

  .sm\:active\:top-1\/2:active{
    top: 50%;
  }

  .sm\:active\:right-1\/2:active{
    right: 50%;
  }

  .sm\:active\:bottom-1\/2:active{
    bottom: 50%;
  }

  .sm\:active\:left-1\/2:active{
    left: 50%;
  }

  .sm\:active\:top-header:active{
    top: 5rem;
  }

  .sm\:active\:right-header:active{
    right: 5rem;
  }

  .sm\:active\:bottom-header:active{
    bottom: 5rem;
  }

  .sm\:active\:left-header:active{
    left: 5rem;
  }

  .sm\:first\:inset-0:first-child{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:first\:inset-auto:first-child{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .sm\:first\:inset-1\/2:first-child{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .sm\:first\:inset-header:first-child{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .sm\:first\:inset-y-0:first-child{
    top: 0;
    bottom: 0;
  }

  .sm\:first\:inset-x-0:first-child{
    right: 0;
    left: 0;
  }

  .sm\:first\:inset-y-auto:first-child{
    top: auto;
    bottom: auto;
  }

  .sm\:first\:inset-x-auto:first-child{
    right: auto;
    left: auto;
  }

  .sm\:first\:inset-y-1\/2:first-child{
    top: 50%;
    bottom: 50%;
  }

  .sm\:first\:inset-x-1\/2:first-child{
    right: 50%;
    left: 50%;
  }

  .sm\:first\:inset-y-header:first-child{
    top: 5rem;
    bottom: 5rem;
  }

  .sm\:first\:inset-x-header:first-child{
    right: 5rem;
    left: 5rem;
  }

  .sm\:first\:top-0:first-child{
    top: 0;
  }

  .sm\:first\:right-0:first-child{
    right: 0;
  }

  .sm\:first\:bottom-0:first-child{
    bottom: 0;
  }

  .sm\:first\:left-0:first-child{
    left: 0;
  }

  .sm\:first\:top-auto:first-child{
    top: auto;
  }

  .sm\:first\:right-auto:first-child{
    right: auto;
  }

  .sm\:first\:bottom-auto:first-child{
    bottom: auto;
  }

  .sm\:first\:left-auto:first-child{
    left: auto;
  }

  .sm\:first\:top-1\/2:first-child{
    top: 50%;
  }

  .sm\:first\:right-1\/2:first-child{
    right: 50%;
  }

  .sm\:first\:bottom-1\/2:first-child{
    bottom: 50%;
  }

  .sm\:first\:left-1\/2:first-child{
    left: 50%;
  }

  .sm\:first\:top-header:first-child{
    top: 5rem;
  }

  .sm\:first\:right-header:first-child{
    right: 5rem;
  }

  .sm\:first\:bottom-header:first-child{
    bottom: 5rem;
  }

  .sm\:first\:left-header:first-child{
    left: 5rem;
  }

  .sm\:last\:inset-0:last-child{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:last\:inset-auto:last-child{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .sm\:last\:inset-1\/2:last-child{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .sm\:last\:inset-header:last-child{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .sm\:last\:inset-y-0:last-child{
    top: 0;
    bottom: 0;
  }

  .sm\:last\:inset-x-0:last-child{
    right: 0;
    left: 0;
  }

  .sm\:last\:inset-y-auto:last-child{
    top: auto;
    bottom: auto;
  }

  .sm\:last\:inset-x-auto:last-child{
    right: auto;
    left: auto;
  }

  .sm\:last\:inset-y-1\/2:last-child{
    top: 50%;
    bottom: 50%;
  }

  .sm\:last\:inset-x-1\/2:last-child{
    right: 50%;
    left: 50%;
  }

  .sm\:last\:inset-y-header:last-child{
    top: 5rem;
    bottom: 5rem;
  }

  .sm\:last\:inset-x-header:last-child{
    right: 5rem;
    left: 5rem;
  }

  .sm\:last\:top-0:last-child{
    top: 0;
  }

  .sm\:last\:right-0:last-child{
    right: 0;
  }

  .sm\:last\:bottom-0:last-child{
    bottom: 0;
  }

  .sm\:last\:left-0:last-child{
    left: 0;
  }

  .sm\:last\:top-auto:last-child{
    top: auto;
  }

  .sm\:last\:right-auto:last-child{
    right: auto;
  }

  .sm\:last\:bottom-auto:last-child{
    bottom: auto;
  }

  .sm\:last\:left-auto:last-child{
    left: auto;
  }

  .sm\:last\:top-1\/2:last-child{
    top: 50%;
  }

  .sm\:last\:right-1\/2:last-child{
    right: 50%;
  }

  .sm\:last\:bottom-1\/2:last-child{
    bottom: 50%;
  }

  .sm\:last\:left-1\/2:last-child{
    left: 50%;
  }

  .sm\:last\:top-header:last-child{
    top: 5rem;
  }

  .sm\:last\:right-header:last-child{
    right: 5rem;
  }

  .sm\:last\:bottom-header:last-child{
    bottom: 5rem;
  }

  .sm\:last\:left-header:last-child{
    left: 5rem;
  }

  .sm\:resize-none{
    resize: none;
  }

  .sm\:resize-y{
    resize: vertical;
  }

  .sm\:resize-x{
    resize: horizontal;
  }

  .sm\:resize{
    resize: both;
  }

  .sm\:hover\:resize-none:hover{
    resize: none;
  }

  .sm\:hover\:resize-y:hover{
    resize: vertical;
  }

  .sm\:hover\:resize-x:hover{
    resize: horizontal;
  }

  .sm\:hover\:resize:hover{
    resize: both;
  }

  .sm\:focus\:resize-none:focus{
    resize: none;
  }

  .sm\:focus\:resize-y:focus{
    resize: vertical;
  }

  .sm\:focus\:resize-x:focus{
    resize: horizontal;
  }

  .sm\:focus\:resize:focus{
    resize: both;
  }

  .sm\:active\:resize-none:active{
    resize: none;
  }

  .sm\:active\:resize-y:active{
    resize: vertical;
  }

  .sm\:active\:resize-x:active{
    resize: horizontal;
  }

  .sm\:active\:resize:active{
    resize: both;
  }

  .sm\:first\:resize-none:first-child{
    resize: none;
  }

  .sm\:first\:resize-y:first-child{
    resize: vertical;
  }

  .sm\:first\:resize-x:first-child{
    resize: horizontal;
  }

  .sm\:first\:resize:first-child{
    resize: both;
  }

  .sm\:last\:resize-none:last-child{
    resize: none;
  }

  .sm\:last\:resize-y:last-child{
    resize: vertical;
  }

  .sm\:last\:resize-x:last-child{
    resize: horizontal;
  }

  .sm\:last\:resize:last-child{
    resize: both;
  }

  .sm\:shadow-xs{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .sm\:shadow-sm{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .sm\:shadow{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:shadow-md{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .sm\:shadow-lg{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .sm\:shadow-xl{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .sm\:shadow-2xl{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .sm\:shadow-inner{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:shadow-outline{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .sm\:shadow-none{
    box-shadow: none;
  }

  .sm\:shadow-upper{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .sm\:hover\:shadow-xs:hover{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .sm\:hover\:shadow-sm:hover{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .sm\:hover\:shadow:hover{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:hover\:shadow-md:hover{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .sm\:hover\:shadow-lg:hover{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .sm\:hover\:shadow-xl:hover{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .sm\:hover\:shadow-2xl:hover{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .sm\:hover\:shadow-inner:hover{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:hover\:shadow-outline:hover{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .sm\:hover\:shadow-none:hover{
    box-shadow: none;
  }

  .sm\:hover\:shadow-upper:hover{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .sm\:focus\:shadow-xs:focus{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .sm\:focus\:shadow-sm:focus{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .sm\:focus\:shadow:focus{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:focus\:shadow-md:focus{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .sm\:focus\:shadow-lg:focus{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .sm\:focus\:shadow-xl:focus{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .sm\:focus\:shadow-2xl:focus{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .sm\:focus\:shadow-inner:focus{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:focus\:shadow-outline:focus{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .sm\:focus\:shadow-none:focus{
    box-shadow: none;
  }

  .sm\:focus\:shadow-upper:focus{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .sm\:active\:shadow-xs:active{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .sm\:active\:shadow-sm:active{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .sm\:active\:shadow:active{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:active\:shadow-md:active{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .sm\:active\:shadow-lg:active{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .sm\:active\:shadow-xl:active{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .sm\:active\:shadow-2xl:active{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .sm\:active\:shadow-inner:active{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:active\:shadow-outline:active{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .sm\:active\:shadow-none:active{
    box-shadow: none;
  }

  .sm\:active\:shadow-upper:active{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .sm\:first\:shadow-xs:first-child{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .sm\:first\:shadow-sm:first-child{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .sm\:first\:shadow:first-child{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:first\:shadow-md:first-child{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .sm\:first\:shadow-lg:first-child{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .sm\:first\:shadow-xl:first-child{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .sm\:first\:shadow-2xl:first-child{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .sm\:first\:shadow-inner:first-child{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:first\:shadow-outline:first-child{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .sm\:first\:shadow-none:first-child{
    box-shadow: none;
  }

  .sm\:first\:shadow-upper:first-child{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .sm\:last\:shadow-xs:last-child{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .sm\:last\:shadow-sm:last-child{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .sm\:last\:shadow:last-child{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:last\:shadow-md:last-child{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .sm\:last\:shadow-lg:last-child{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .sm\:last\:shadow-xl:last-child{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .sm\:last\:shadow-2xl:last-child{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .sm\:last\:shadow-inner:last-child{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .sm\:last\:shadow-outline:last-child{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .sm\:last\:shadow-none:last-child{
    box-shadow: none;
  }

  .sm\:last\:shadow-upper:last-child{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .sm\:fill-current{
    fill: currentColor;
  }

  .sm\:hover\:fill-current:hover{
    fill: currentColor;
  }

  .sm\:focus\:fill-current:focus{
    fill: currentColor;
  }

  .sm\:active\:fill-current:active{
    fill: currentColor;
  }

  .sm\:first\:fill-current:first-child{
    fill: currentColor;
  }

  .sm\:last\:fill-current:last-child{
    fill: currentColor;
  }

  .sm\:stroke-current{
    stroke: currentColor;
  }

  .sm\:hover\:stroke-current:hover{
    stroke: currentColor;
  }

  .sm\:focus\:stroke-current:focus{
    stroke: currentColor;
  }

  .sm\:active\:stroke-current:active{
    stroke: currentColor;
  }

  .sm\:first\:stroke-current:first-child{
    stroke: currentColor;
  }

  .sm\:last\:stroke-current:last-child{
    stroke: currentColor;
  }

  .sm\:stroke-0{
    stroke-width: 0;
  }

  .sm\:stroke-1{
    stroke-width: 1;
  }

  .sm\:stroke-2{
    stroke-width: 2;
  }

  .sm\:hover\:stroke-0:hover{
    stroke-width: 0;
  }

  .sm\:hover\:stroke-1:hover{
    stroke-width: 1;
  }

  .sm\:hover\:stroke-2:hover{
    stroke-width: 2;
  }

  .sm\:focus\:stroke-0:focus{
    stroke-width: 0;
  }

  .sm\:focus\:stroke-1:focus{
    stroke-width: 1;
  }

  .sm\:focus\:stroke-2:focus{
    stroke-width: 2;
  }

  .sm\:active\:stroke-0:active{
    stroke-width: 0;
  }

  .sm\:active\:stroke-1:active{
    stroke-width: 1;
  }

  .sm\:active\:stroke-2:active{
    stroke-width: 2;
  }

  .sm\:first\:stroke-0:first-child{
    stroke-width: 0;
  }

  .sm\:first\:stroke-1:first-child{
    stroke-width: 1;
  }

  .sm\:first\:stroke-2:first-child{
    stroke-width: 2;
  }

  .sm\:last\:stroke-0:last-child{
    stroke-width: 0;
  }

  .sm\:last\:stroke-1:last-child{
    stroke-width: 1;
  }

  .sm\:last\:stroke-2:last-child{
    stroke-width: 2;
  }

  .sm\:table-auto{
    table-layout: auto;
  }

  .sm\:table-fixed{
    table-layout: fixed;
  }

  .sm\:hover\:table-auto:hover{
    table-layout: auto;
  }

  .sm\:hover\:table-fixed:hover{
    table-layout: fixed;
  }

  .sm\:focus\:table-auto:focus{
    table-layout: auto;
  }

  .sm\:focus\:table-fixed:focus{
    table-layout: fixed;
  }

  .sm\:active\:table-auto:active{
    table-layout: auto;
  }

  .sm\:active\:table-fixed:active{
    table-layout: fixed;
  }

  .sm\:first\:table-auto:first-child{
    table-layout: auto;
  }

  .sm\:first\:table-fixed:first-child{
    table-layout: fixed;
  }

  .sm\:last\:table-auto:last-child{
    table-layout: auto;
  }

  .sm\:last\:table-fixed:last-child{
    table-layout: fixed;
  }

  .sm\:text-left{
    text-align: left;
  }

  .sm\:text-center{
    text-align: center;
  }

  .sm\:text-right{
    text-align: right;
  }

  .sm\:text-justify{
    text-align: justify;
  }

  .sm\:hover\:text-left:hover{
    text-align: left;
  }

  .sm\:hover\:text-center:hover{
    text-align: center;
  }

  .sm\:hover\:text-right:hover{
    text-align: right;
  }

  .sm\:hover\:text-justify:hover{
    text-align: justify;
  }

  .sm\:focus\:text-left:focus{
    text-align: left;
  }

  .sm\:focus\:text-center:focus{
    text-align: center;
  }

  .sm\:focus\:text-right:focus{
    text-align: right;
  }

  .sm\:focus\:text-justify:focus{
    text-align: justify;
  }

  .sm\:active\:text-left:active{
    text-align: left;
  }

  .sm\:active\:text-center:active{
    text-align: center;
  }

  .sm\:active\:text-right:active{
    text-align: right;
  }

  .sm\:active\:text-justify:active{
    text-align: justify;
  }

  .sm\:first\:text-left:first-child{
    text-align: left;
  }

  .sm\:first\:text-center:first-child{
    text-align: center;
  }

  .sm\:first\:text-right:first-child{
    text-align: right;
  }

  .sm\:first\:text-justify:first-child{
    text-align: justify;
  }

  .sm\:last\:text-left:last-child{
    text-align: left;
  }

  .sm\:last\:text-center:last-child{
    text-align: center;
  }

  .sm\:last\:text-right:last-child{
    text-align: right;
  }

  .sm\:last\:text-justify:last-child{
    text-align: justify;
  }

  .sm\:text-black{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .sm\:text-transparent{
    color: transparent;
  }

  .sm\:text-error{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:text-success{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:text-white-10{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .sm\:text-white-20{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .sm\:text-white{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .sm\:text-cheeto{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .sm\:text-cheeto-very-light{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .sm\:text-cheeto-light{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .sm\:text-cheeto-dark{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .sm\:text-cheeto-hocus{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .sm\:text-cheeto-active{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .sm\:text-cheeto-ml-plus{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .sm\:text-cheeto-banner{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .sm\:text-gracy-1{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .sm\:text-gracy-10{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .sm\:text-gracy-20{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .sm\:text-gracy-30{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .sm\:text-gracy-40{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .sm\:text-gracy-50{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .sm\:text-gracy-60{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .sm\:text-gracy-70{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .sm\:text-gracy-80{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .sm\:text-gracy-90{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .sm\:text-gracy-100{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .sm\:text-gracy{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .sm\:text-gracy-overlay-90{
    color: rgba(50,49,50,0.5);
  }

  .sm\:text-login{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .sm\:text-olive-light{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .sm\:text-olive-drab{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:text-olive-dark{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .sm\:text-daisy-light{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .sm\:text-feedback-gumby{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .sm\:text-feedback-daisy{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .sm\:text-feedback-pokey{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .sm\:text-feedback-aster{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .sm\:text-feedback-aster-dark{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .sm\:text-feedback-roxo{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .sm\:text-feedback-error{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:text-feedback-success{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:text-functional-aoki{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .sm\:text-functional-aoki-dark{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .sm\:text-functional-aoki-hocus{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .sm\:text-functional-aoki-active{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .sm\:text-functional-aoki-light{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .sm\:text-functional-kermit{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .sm\:text-mixlabPlus-light{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .sm\:text-primary-orange-light{
    color: ;
  }

  .sm\:text-off-white{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .sm\:hover\:text-black:hover{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .sm\:hover\:text-transparent:hover{
    color: transparent;
  }

  .sm\:hover\:text-error:hover{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:hover\:text-success:hover{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:hover\:text-white-10:hover{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .sm\:hover\:text-white-20:hover{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .sm\:hover\:text-white:hover{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .sm\:hover\:text-cheeto:hover{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .sm\:hover\:text-cheeto-very-light:hover{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .sm\:hover\:text-cheeto-light:hover{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .sm\:hover\:text-cheeto-dark:hover{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .sm\:hover\:text-cheeto-hocus:hover{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .sm\:hover\:text-cheeto-active:hover{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .sm\:hover\:text-cheeto-ml-plus:hover{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .sm\:hover\:text-cheeto-banner:hover{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-1:hover{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-10:hover{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-20:hover{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-30:hover{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-40:hover{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-50:hover{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-60:hover{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-70:hover{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-80:hover{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-90:hover{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-100:hover{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .sm\:hover\:text-gracy:hover{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .sm\:hover\:text-gracy-overlay-90:hover{
    color: rgba(50,49,50,0.5);
  }

  .sm\:hover\:text-login:hover{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .sm\:hover\:text-olive-light:hover{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .sm\:hover\:text-olive-drab:hover{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:hover\:text-olive-dark:hover{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .sm\:hover\:text-daisy-light:hover{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .sm\:hover\:text-feedback-gumby:hover{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .sm\:hover\:text-feedback-daisy:hover{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .sm\:hover\:text-feedback-pokey:hover{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .sm\:hover\:text-feedback-aster:hover{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .sm\:hover\:text-feedback-aster-dark:hover{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .sm\:hover\:text-feedback-roxo:hover{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .sm\:hover\:text-feedback-error:hover{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:hover\:text-feedback-success:hover{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:hover\:text-functional-aoki:hover{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .sm\:hover\:text-functional-aoki-dark:hover{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .sm\:hover\:text-functional-aoki-hocus:hover{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .sm\:hover\:text-functional-aoki-active:hover{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .sm\:hover\:text-functional-aoki-light:hover{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .sm\:hover\:text-functional-kermit:hover{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .sm\:hover\:text-mixlabPlus-light:hover{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .sm\:hover\:text-primary-orange-light:hover{
    color: ;
  }

  .sm\:hover\:text-off-white:hover{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .sm\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .sm\:focus\:text-transparent:focus{
    color: transparent;
  }

  .sm\:focus\:text-error:focus{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:focus\:text-success:focus{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:focus\:text-white-10:focus{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .sm\:focus\:text-white-20:focus{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .sm\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .sm\:focus\:text-cheeto:focus{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .sm\:focus\:text-cheeto-very-light:focus{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .sm\:focus\:text-cheeto-light:focus{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .sm\:focus\:text-cheeto-dark:focus{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .sm\:focus\:text-cheeto-hocus:focus{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .sm\:focus\:text-cheeto-active:focus{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .sm\:focus\:text-cheeto-ml-plus:focus{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .sm\:focus\:text-cheeto-banner:focus{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-1:focus{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-10:focus{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-20:focus{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-30:focus{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-40:focus{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-50:focus{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-60:focus{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-70:focus{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-80:focus{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-90:focus{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-100:focus{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .sm\:focus\:text-gracy:focus{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .sm\:focus\:text-gracy-overlay-90:focus{
    color: rgba(50,49,50,0.5);
  }

  .sm\:focus\:text-login:focus{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .sm\:focus\:text-olive-light:focus{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .sm\:focus\:text-olive-drab:focus{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:focus\:text-olive-dark:focus{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .sm\:focus\:text-daisy-light:focus{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .sm\:focus\:text-feedback-gumby:focus{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .sm\:focus\:text-feedback-daisy:focus{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .sm\:focus\:text-feedback-pokey:focus{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .sm\:focus\:text-feedback-aster:focus{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .sm\:focus\:text-feedback-aster-dark:focus{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .sm\:focus\:text-feedback-roxo:focus{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .sm\:focus\:text-feedback-error:focus{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:focus\:text-feedback-success:focus{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:focus\:text-functional-aoki:focus{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .sm\:focus\:text-functional-aoki-dark:focus{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .sm\:focus\:text-functional-aoki-hocus:focus{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .sm\:focus\:text-functional-aoki-active:focus{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .sm\:focus\:text-functional-aoki-light:focus{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .sm\:focus\:text-functional-kermit:focus{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .sm\:focus\:text-mixlabPlus-light:focus{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .sm\:focus\:text-primary-orange-light:focus{
    color: ;
  }

  .sm\:focus\:text-off-white:focus{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .sm\:active\:text-black:active{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .sm\:active\:text-transparent:active{
    color: transparent;
  }

  .sm\:active\:text-error:active{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:active\:text-success:active{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:active\:text-white-10:active{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .sm\:active\:text-white-20:active{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .sm\:active\:text-white:active{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .sm\:active\:text-cheeto:active{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .sm\:active\:text-cheeto-very-light:active{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .sm\:active\:text-cheeto-light:active{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .sm\:active\:text-cheeto-dark:active{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .sm\:active\:text-cheeto-hocus:active{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .sm\:active\:text-cheeto-active:active{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .sm\:active\:text-cheeto-ml-plus:active{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .sm\:active\:text-cheeto-banner:active{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .sm\:active\:text-gracy-1:active{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .sm\:active\:text-gracy-10:active{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .sm\:active\:text-gracy-20:active{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .sm\:active\:text-gracy-30:active{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .sm\:active\:text-gracy-40:active{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .sm\:active\:text-gracy-50:active{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .sm\:active\:text-gracy-60:active{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .sm\:active\:text-gracy-70:active{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .sm\:active\:text-gracy-80:active{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .sm\:active\:text-gracy-90:active{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .sm\:active\:text-gracy-100:active{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .sm\:active\:text-gracy:active{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .sm\:active\:text-gracy-overlay-90:active{
    color: rgba(50,49,50,0.5);
  }

  .sm\:active\:text-login:active{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .sm\:active\:text-olive-light:active{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .sm\:active\:text-olive-drab:active{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:active\:text-olive-dark:active{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .sm\:active\:text-daisy-light:active{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .sm\:active\:text-feedback-gumby:active{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .sm\:active\:text-feedback-daisy:active{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .sm\:active\:text-feedback-pokey:active{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .sm\:active\:text-feedback-aster:active{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .sm\:active\:text-feedback-aster-dark:active{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .sm\:active\:text-feedback-roxo:active{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .sm\:active\:text-feedback-error:active{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:active\:text-feedback-success:active{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:active\:text-functional-aoki:active{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .sm\:active\:text-functional-aoki-dark:active{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .sm\:active\:text-functional-aoki-hocus:active{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .sm\:active\:text-functional-aoki-active:active{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .sm\:active\:text-functional-aoki-light:active{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .sm\:active\:text-functional-kermit:active{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .sm\:active\:text-mixlabPlus-light:active{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .sm\:active\:text-primary-orange-light:active{
    color: ;
  }

  .sm\:active\:text-off-white:active{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .sm\:first\:text-black:first-child{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .sm\:first\:text-transparent:first-child{
    color: transparent;
  }

  .sm\:first\:text-error:first-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:first\:text-success:first-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:first\:text-white-10:first-child{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .sm\:first\:text-white-20:first-child{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .sm\:first\:text-white:first-child{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .sm\:first\:text-cheeto:first-child{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .sm\:first\:text-cheeto-very-light:first-child{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .sm\:first\:text-cheeto-light:first-child{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .sm\:first\:text-cheeto-dark:first-child{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .sm\:first\:text-cheeto-hocus:first-child{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .sm\:first\:text-cheeto-active:first-child{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .sm\:first\:text-cheeto-ml-plus:first-child{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .sm\:first\:text-cheeto-banner:first-child{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .sm\:first\:text-gracy-1:first-child{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .sm\:first\:text-gracy-10:first-child{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .sm\:first\:text-gracy-20:first-child{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .sm\:first\:text-gracy-30:first-child{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .sm\:first\:text-gracy-40:first-child{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .sm\:first\:text-gracy-50:first-child{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .sm\:first\:text-gracy-60:first-child{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .sm\:first\:text-gracy-70:first-child{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .sm\:first\:text-gracy-80:first-child{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .sm\:first\:text-gracy-90:first-child{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .sm\:first\:text-gracy-100:first-child{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .sm\:first\:text-gracy:first-child{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .sm\:first\:text-gracy-overlay-90:first-child{
    color: rgba(50,49,50,0.5);
  }

  .sm\:first\:text-login:first-child{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .sm\:first\:text-olive-light:first-child{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .sm\:first\:text-olive-drab:first-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:first\:text-olive-dark:first-child{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .sm\:first\:text-daisy-light:first-child{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .sm\:first\:text-feedback-gumby:first-child{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .sm\:first\:text-feedback-daisy:first-child{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .sm\:first\:text-feedback-pokey:first-child{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .sm\:first\:text-feedback-aster:first-child{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .sm\:first\:text-feedback-aster-dark:first-child{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .sm\:first\:text-feedback-roxo:first-child{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .sm\:first\:text-feedback-error:first-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:first\:text-feedback-success:first-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:first\:text-functional-aoki:first-child{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .sm\:first\:text-functional-aoki-dark:first-child{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .sm\:first\:text-functional-aoki-hocus:first-child{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .sm\:first\:text-functional-aoki-active:first-child{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .sm\:first\:text-functional-aoki-light:first-child{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .sm\:first\:text-functional-kermit:first-child{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .sm\:first\:text-mixlabPlus-light:first-child{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .sm\:first\:text-primary-orange-light:first-child{
    color: ;
  }

  .sm\:first\:text-off-white:first-child{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .sm\:last\:text-black:last-child{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .sm\:last\:text-transparent:last-child{
    color: transparent;
  }

  .sm\:last\:text-error:last-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:last\:text-success:last-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:last\:text-white-10:last-child{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .sm\:last\:text-white-20:last-child{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .sm\:last\:text-white:last-child{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .sm\:last\:text-cheeto:last-child{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .sm\:last\:text-cheeto-very-light:last-child{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .sm\:last\:text-cheeto-light:last-child{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .sm\:last\:text-cheeto-dark:last-child{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .sm\:last\:text-cheeto-hocus:last-child{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .sm\:last\:text-cheeto-active:last-child{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .sm\:last\:text-cheeto-ml-plus:last-child{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .sm\:last\:text-cheeto-banner:last-child{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .sm\:last\:text-gracy-1:last-child{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .sm\:last\:text-gracy-10:last-child{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .sm\:last\:text-gracy-20:last-child{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .sm\:last\:text-gracy-30:last-child{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .sm\:last\:text-gracy-40:last-child{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .sm\:last\:text-gracy-50:last-child{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .sm\:last\:text-gracy-60:last-child{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .sm\:last\:text-gracy-70:last-child{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .sm\:last\:text-gracy-80:last-child{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .sm\:last\:text-gracy-90:last-child{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .sm\:last\:text-gracy-100:last-child{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .sm\:last\:text-gracy:last-child{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .sm\:last\:text-gracy-overlay-90:last-child{
    color: rgba(50,49,50,0.5);
  }

  .sm\:last\:text-login:last-child{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .sm\:last\:text-olive-light:last-child{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .sm\:last\:text-olive-drab:last-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:last\:text-olive-dark:last-child{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .sm\:last\:text-daisy-light:last-child{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .sm\:last\:text-feedback-gumby:last-child{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .sm\:last\:text-feedback-daisy:last-child{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .sm\:last\:text-feedback-pokey:last-child{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .sm\:last\:text-feedback-aster:last-child{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .sm\:last\:text-feedback-aster-dark:last-child{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .sm\:last\:text-feedback-roxo:last-child{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .sm\:last\:text-feedback-error:last-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .sm\:last\:text-feedback-success:last-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .sm\:last\:text-functional-aoki:last-child{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .sm\:last\:text-functional-aoki-dark:last-child{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .sm\:last\:text-functional-aoki-hocus:last-child{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .sm\:last\:text-functional-aoki-active:last-child{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .sm\:last\:text-functional-aoki-light:last-child{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .sm\:last\:text-functional-kermit:last-child{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .sm\:last\:text-mixlabPlus-light:last-child{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .sm\:last\:text-primary-orange-light:last-child{
    color: ;
  }

  .sm\:last\:text-off-white:last-child{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .sm\:text-opacity-0{
    --text-opacity: 0;
  }

  .sm\:text-opacity-25{
    --text-opacity: 0.25;
  }

  .sm\:text-opacity-50{
    --text-opacity: .5;
  }

  .sm\:text-opacity-75{
    --text-opacity: 0.75;
  }

  .sm\:text-opacity-80{
    --text-opacity: .8;
  }

  .sm\:text-opacity-100{
    --text-opacity: 1;
  }

  .sm\:hover\:text-opacity-0:hover{
    --text-opacity: 0;
  }

  .sm\:hover\:text-opacity-25:hover{
    --text-opacity: 0.25;
  }

  .sm\:hover\:text-opacity-50:hover{
    --text-opacity: .5;
  }

  .sm\:hover\:text-opacity-75:hover{
    --text-opacity: 0.75;
  }

  .sm\:hover\:text-opacity-80:hover{
    --text-opacity: .8;
  }

  .sm\:hover\:text-opacity-100:hover{
    --text-opacity: 1;
  }

  .sm\:focus\:text-opacity-0:focus{
    --text-opacity: 0;
  }

  .sm\:focus\:text-opacity-25:focus{
    --text-opacity: 0.25;
  }

  .sm\:focus\:text-opacity-50:focus{
    --text-opacity: .5;
  }

  .sm\:focus\:text-opacity-75:focus{
    --text-opacity: 0.75;
  }

  .sm\:focus\:text-opacity-80:focus{
    --text-opacity: .8;
  }

  .sm\:focus\:text-opacity-100:focus{
    --text-opacity: 1;
  }

  .sm\:active\:text-opacity-0:active{
    --text-opacity: 0;
  }

  .sm\:active\:text-opacity-25:active{
    --text-opacity: 0.25;
  }

  .sm\:active\:text-opacity-50:active{
    --text-opacity: .5;
  }

  .sm\:active\:text-opacity-75:active{
    --text-opacity: 0.75;
  }

  .sm\:active\:text-opacity-80:active{
    --text-opacity: .8;
  }

  .sm\:active\:text-opacity-100:active{
    --text-opacity: 1;
  }

  .sm\:first\:text-opacity-0:first-child{
    --text-opacity: 0;
  }

  .sm\:first\:text-opacity-25:first-child{
    --text-opacity: 0.25;
  }

  .sm\:first\:text-opacity-50:first-child{
    --text-opacity: .5;
  }

  .sm\:first\:text-opacity-75:first-child{
    --text-opacity: 0.75;
  }

  .sm\:first\:text-opacity-80:first-child{
    --text-opacity: .8;
  }

  .sm\:first\:text-opacity-100:first-child{
    --text-opacity: 1;
  }

  .sm\:last\:text-opacity-0:last-child{
    --text-opacity: 0;
  }

  .sm\:last\:text-opacity-25:last-child{
    --text-opacity: 0.25;
  }

  .sm\:last\:text-opacity-50:last-child{
    --text-opacity: .5;
  }

  .sm\:last\:text-opacity-75:last-child{
    --text-opacity: 0.75;
  }

  .sm\:last\:text-opacity-80:last-child{
    --text-opacity: .8;
  }

  .sm\:last\:text-opacity-100:last-child{
    --text-opacity: 1;
  }

  .sm\:italic{
    font-style: italic;
  }

  .sm\:not-italic{
    font-style: normal;
  }

  .sm\:hover\:italic:hover{
    font-style: italic;
  }

  .sm\:hover\:not-italic:hover{
    font-style: normal;
  }

  .sm\:focus\:italic:focus{
    font-style: italic;
  }

  .sm\:focus\:not-italic:focus{
    font-style: normal;
  }

  .sm\:active\:italic:active{
    font-style: italic;
  }

  .sm\:active\:not-italic:active{
    font-style: normal;
  }

  .sm\:first\:italic:first-child{
    font-style: italic;
  }

  .sm\:first\:not-italic:first-child{
    font-style: normal;
  }

  .sm\:last\:italic:last-child{
    font-style: italic;
  }

  .sm\:last\:not-italic:last-child{
    font-style: normal;
  }

  .sm\:uppercase{
    text-transform: uppercase;
  }

  .sm\:lowercase{
    text-transform: lowercase;
  }

  .sm\:capitalize{
    text-transform: capitalize;
  }

  .sm\:normal-case{
    text-transform: none;
  }

  .sm\:hover\:uppercase:hover{
    text-transform: uppercase;
  }

  .sm\:hover\:lowercase:hover{
    text-transform: lowercase;
  }

  .sm\:hover\:capitalize:hover{
    text-transform: capitalize;
  }

  .sm\:hover\:normal-case:hover{
    text-transform: none;
  }

  .sm\:focus\:uppercase:focus{
    text-transform: uppercase;
  }

  .sm\:focus\:lowercase:focus{
    text-transform: lowercase;
  }

  .sm\:focus\:capitalize:focus{
    text-transform: capitalize;
  }

  .sm\:focus\:normal-case:focus{
    text-transform: none;
  }

  .sm\:active\:uppercase:active{
    text-transform: uppercase;
  }

  .sm\:active\:lowercase:active{
    text-transform: lowercase;
  }

  .sm\:active\:capitalize:active{
    text-transform: capitalize;
  }

  .sm\:active\:normal-case:active{
    text-transform: none;
  }

  .sm\:first\:uppercase:first-child{
    text-transform: uppercase;
  }

  .sm\:first\:lowercase:first-child{
    text-transform: lowercase;
  }

  .sm\:first\:capitalize:first-child{
    text-transform: capitalize;
  }

  .sm\:first\:normal-case:first-child{
    text-transform: none;
  }

  .sm\:last\:uppercase:last-child{
    text-transform: uppercase;
  }

  .sm\:last\:lowercase:last-child{
    text-transform: lowercase;
  }

  .sm\:last\:capitalize:last-child{
    text-transform: capitalize;
  }

  .sm\:last\:normal-case:last-child{
    text-transform: none;
  }

  .sm\:underline{
    text-decoration: underline;
  }

  .sm\:line-through{
    text-decoration: line-through;
  }

  .sm\:no-underline{
    text-decoration: none;
  }

  .sm\:hover\:underline:hover{
    text-decoration: underline;
  }

  .sm\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .sm\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .sm\:focus\:underline:focus{
    text-decoration: underline;
  }

  .sm\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .sm\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .sm\:active\:underline:active{
    text-decoration: underline;
  }

  .sm\:active\:line-through:active{
    text-decoration: line-through;
  }

  .sm\:active\:no-underline:active{
    text-decoration: none;
  }

  .sm\:first\:underline:first-child{
    text-decoration: underline;
  }

  .sm\:first\:line-through:first-child{
    text-decoration: line-through;
  }

  .sm\:first\:no-underline:first-child{
    text-decoration: none;
  }

  .sm\:last\:underline:last-child{
    text-decoration: underline;
  }

  .sm\:last\:line-through:last-child{
    text-decoration: line-through;
  }

  .sm\:last\:no-underline:last-child{
    text-decoration: none;
  }

  .sm\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:hover\:antialiased:hover{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:hover\:subpixel-antialiased:hover{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:focus\:antialiased:focus{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:focus\:subpixel-antialiased:focus{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:active\:antialiased:active{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:active\:subpixel-antialiased:active{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:first\:antialiased:first-child{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:first\:subpixel-antialiased:first-child{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:last\:antialiased:last-child{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:last\:subpixel-antialiased:last-child{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .sm\:normal-nums{
    font-variant-numeric: normal;
  }

  .sm\:ordinal{
    --font-variant-numeric-ordinal: ordinal;
  }

  .sm\:slashed-zero{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .sm\:lining-nums{
    --font-variant-numeric-figure: lining-nums;
  }

  .sm\:oldstyle-nums{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .sm\:proportional-nums{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .sm\:tabular-nums{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .sm\:diagonal-fractions{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .sm\:stacked-fractions{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .sm\:hover\:ordinal:hover, .sm\:hover\:slashed-zero:hover, .sm\:hover\:lining-nums:hover, .sm\:hover\:oldstyle-nums:hover, .sm\:hover\:proportional-nums:hover, .sm\:hover\:tabular-nums:hover, .sm\:hover\:diagonal-fractions:hover, .sm\:hover\:stacked-fractions:hover{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .sm\:hover\:normal-nums:hover{
    font-variant-numeric: normal;
  }

  .sm\:hover\:ordinal:hover{
    --font-variant-numeric-ordinal: ordinal;
  }

  .sm\:hover\:slashed-zero:hover{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .sm\:hover\:lining-nums:hover{
    --font-variant-numeric-figure: lining-nums;
  }

  .sm\:hover\:oldstyle-nums:hover{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .sm\:hover\:proportional-nums:hover{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .sm\:hover\:tabular-nums:hover{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .sm\:hover\:diagonal-fractions:hover{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .sm\:hover\:stacked-fractions:hover{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .sm\:focus\:ordinal:focus, .sm\:focus\:slashed-zero:focus, .sm\:focus\:lining-nums:focus, .sm\:focus\:oldstyle-nums:focus, .sm\:focus\:proportional-nums:focus, .sm\:focus\:tabular-nums:focus, .sm\:focus\:diagonal-fractions:focus, .sm\:focus\:stacked-fractions:focus{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .sm\:focus\:normal-nums:focus{
    font-variant-numeric: normal;
  }

  .sm\:focus\:ordinal:focus{
    --font-variant-numeric-ordinal: ordinal;
  }

  .sm\:focus\:slashed-zero:focus{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .sm\:focus\:lining-nums:focus{
    --font-variant-numeric-figure: lining-nums;
  }

  .sm\:focus\:oldstyle-nums:focus{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .sm\:focus\:proportional-nums:focus{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .sm\:focus\:tabular-nums:focus{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .sm\:focus\:diagonal-fractions:focus{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .sm\:focus\:stacked-fractions:focus{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .sm\:active\:ordinal:active, .sm\:active\:slashed-zero:active, .sm\:active\:lining-nums:active, .sm\:active\:oldstyle-nums:active, .sm\:active\:proportional-nums:active, .sm\:active\:tabular-nums:active, .sm\:active\:diagonal-fractions:active, .sm\:active\:stacked-fractions:active{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .sm\:active\:normal-nums:active{
    font-variant-numeric: normal;
  }

  .sm\:active\:ordinal:active{
    --font-variant-numeric-ordinal: ordinal;
  }

  .sm\:active\:slashed-zero:active{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .sm\:active\:lining-nums:active{
    --font-variant-numeric-figure: lining-nums;
  }

  .sm\:active\:oldstyle-nums:active{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .sm\:active\:proportional-nums:active{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .sm\:active\:tabular-nums:active{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .sm\:active\:diagonal-fractions:active{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .sm\:active\:stacked-fractions:active{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .sm\:first\:ordinal:first-child, .sm\:first\:slashed-zero:first-child, .sm\:first\:lining-nums:first-child, .sm\:first\:oldstyle-nums:first-child, .sm\:first\:proportional-nums:first-child, .sm\:first\:tabular-nums:first-child, .sm\:first\:diagonal-fractions:first-child, .sm\:first\:stacked-fractions:first-child{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .sm\:first\:normal-nums:first-child{
    font-variant-numeric: normal;
  }

  .sm\:first\:ordinal:first-child{
    --font-variant-numeric-ordinal: ordinal;
  }

  .sm\:first\:slashed-zero:first-child{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .sm\:first\:lining-nums:first-child{
    --font-variant-numeric-figure: lining-nums;
  }

  .sm\:first\:oldstyle-nums:first-child{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .sm\:first\:proportional-nums:first-child{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .sm\:first\:tabular-nums:first-child{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .sm\:first\:diagonal-fractions:first-child{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .sm\:first\:stacked-fractions:first-child{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .sm\:last\:ordinal:last-child, .sm\:last\:slashed-zero:last-child, .sm\:last\:lining-nums:last-child, .sm\:last\:oldstyle-nums:last-child, .sm\:last\:proportional-nums:last-child, .sm\:last\:tabular-nums:last-child, .sm\:last\:diagonal-fractions:last-child, .sm\:last\:stacked-fractions:last-child{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .sm\:last\:normal-nums:last-child{
    font-variant-numeric: normal;
  }

  .sm\:last\:ordinal:last-child{
    --font-variant-numeric-ordinal: ordinal;
  }

  .sm\:last\:slashed-zero:last-child{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .sm\:last\:lining-nums:last-child{
    --font-variant-numeric-figure: lining-nums;
  }

  .sm\:last\:oldstyle-nums:last-child{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .sm\:last\:proportional-nums:last-child{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .sm\:last\:tabular-nums:last-child{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .sm\:last\:diagonal-fractions:last-child{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .sm\:last\:stacked-fractions:last-child{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .sm\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .sm\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .sm\:tracking-normal{
    letter-spacing: 0;
  }

  .sm\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .sm\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .sm\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .sm\:hover\:tracking-tighter:hover{
    letter-spacing: -0.05em;
  }

  .sm\:hover\:tracking-tight:hover{
    letter-spacing: -0.025em;
  }

  .sm\:hover\:tracking-normal:hover{
    letter-spacing: 0;
  }

  .sm\:hover\:tracking-wide:hover{
    letter-spacing: 0.025em;
  }

  .sm\:hover\:tracking-wider:hover{
    letter-spacing: 0.05em;
  }

  .sm\:hover\:tracking-widest:hover{
    letter-spacing: 0.1em;
  }

  .sm\:focus\:tracking-tighter:focus{
    letter-spacing: -0.05em;
  }

  .sm\:focus\:tracking-tight:focus{
    letter-spacing: -0.025em;
  }

  .sm\:focus\:tracking-normal:focus{
    letter-spacing: 0;
  }

  .sm\:focus\:tracking-wide:focus{
    letter-spacing: 0.025em;
  }

  .sm\:focus\:tracking-wider:focus{
    letter-spacing: 0.05em;
  }

  .sm\:focus\:tracking-widest:focus{
    letter-spacing: 0.1em;
  }

  .sm\:active\:tracking-tighter:active{
    letter-spacing: -0.05em;
  }

  .sm\:active\:tracking-tight:active{
    letter-spacing: -0.025em;
  }

  .sm\:active\:tracking-normal:active{
    letter-spacing: 0;
  }

  .sm\:active\:tracking-wide:active{
    letter-spacing: 0.025em;
  }

  .sm\:active\:tracking-wider:active{
    letter-spacing: 0.05em;
  }

  .sm\:active\:tracking-widest:active{
    letter-spacing: 0.1em;
  }

  .sm\:first\:tracking-tighter:first-child{
    letter-spacing: -0.05em;
  }

  .sm\:first\:tracking-tight:first-child{
    letter-spacing: -0.025em;
  }

  .sm\:first\:tracking-normal:first-child{
    letter-spacing: 0;
  }

  .sm\:first\:tracking-wide:first-child{
    letter-spacing: 0.025em;
  }

  .sm\:first\:tracking-wider:first-child{
    letter-spacing: 0.05em;
  }

  .sm\:first\:tracking-widest:first-child{
    letter-spacing: 0.1em;
  }

  .sm\:last\:tracking-tighter:last-child{
    letter-spacing: -0.05em;
  }

  .sm\:last\:tracking-tight:last-child{
    letter-spacing: -0.025em;
  }

  .sm\:last\:tracking-normal:last-child{
    letter-spacing: 0;
  }

  .sm\:last\:tracking-wide:last-child{
    letter-spacing: 0.025em;
  }

  .sm\:last\:tracking-wider:last-child{
    letter-spacing: 0.05em;
  }

  .sm\:last\:tracking-widest:last-child{
    letter-spacing: 0.1em;
  }

  .sm\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .sm\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .sm\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .sm\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .sm\:hover\:select-none:hover{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .sm\:hover\:select-text:hover{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .sm\:hover\:select-all:hover{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .sm\:hover\:select-auto:hover{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .sm\:focus\:select-none:focus{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .sm\:focus\:select-text:focus{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .sm\:focus\:select-all:focus{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .sm\:focus\:select-auto:focus{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .sm\:active\:select-none:active{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .sm\:active\:select-text:active{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .sm\:active\:select-all:active{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .sm\:active\:select-auto:active{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .sm\:first\:select-none:first-child{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .sm\:first\:select-text:first-child{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .sm\:first\:select-all:first-child{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .sm\:first\:select-auto:first-child{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .sm\:last\:select-none:last-child{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .sm\:last\:select-text:last-child{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .sm\:last\:select-all:last-child{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .sm\:last\:select-auto:last-child{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .sm\:align-baseline{
    vertical-align: baseline;
  }

  .sm\:align-top{
    vertical-align: top;
  }

  .sm\:align-middle{
    vertical-align: middle;
  }

  .sm\:align-bottom{
    vertical-align: bottom;
  }

  .sm\:align-text-top{
    vertical-align: text-top;
  }

  .sm\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .sm\:hover\:align-baseline:hover{
    vertical-align: baseline;
  }

  .sm\:hover\:align-top:hover{
    vertical-align: top;
  }

  .sm\:hover\:align-middle:hover{
    vertical-align: middle;
  }

  .sm\:hover\:align-bottom:hover{
    vertical-align: bottom;
  }

  .sm\:hover\:align-text-top:hover{
    vertical-align: text-top;
  }

  .sm\:hover\:align-text-bottom:hover{
    vertical-align: text-bottom;
  }

  .sm\:focus\:align-baseline:focus{
    vertical-align: baseline;
  }

  .sm\:focus\:align-top:focus{
    vertical-align: top;
  }

  .sm\:focus\:align-middle:focus{
    vertical-align: middle;
  }

  .sm\:focus\:align-bottom:focus{
    vertical-align: bottom;
  }

  .sm\:focus\:align-text-top:focus{
    vertical-align: text-top;
  }

  .sm\:focus\:align-text-bottom:focus{
    vertical-align: text-bottom;
  }

  .sm\:active\:align-baseline:active{
    vertical-align: baseline;
  }

  .sm\:active\:align-top:active{
    vertical-align: top;
  }

  .sm\:active\:align-middle:active{
    vertical-align: middle;
  }

  .sm\:active\:align-bottom:active{
    vertical-align: bottom;
  }

  .sm\:active\:align-text-top:active{
    vertical-align: text-top;
  }

  .sm\:active\:align-text-bottom:active{
    vertical-align: text-bottom;
  }

  .sm\:first\:align-baseline:first-child{
    vertical-align: baseline;
  }

  .sm\:first\:align-top:first-child{
    vertical-align: top;
  }

  .sm\:first\:align-middle:first-child{
    vertical-align: middle;
  }

  .sm\:first\:align-bottom:first-child{
    vertical-align: bottom;
  }

  .sm\:first\:align-text-top:first-child{
    vertical-align: text-top;
  }

  .sm\:first\:align-text-bottom:first-child{
    vertical-align: text-bottom;
  }

  .sm\:last\:align-baseline:last-child{
    vertical-align: baseline;
  }

  .sm\:last\:align-top:last-child{
    vertical-align: top;
  }

  .sm\:last\:align-middle:last-child{
    vertical-align: middle;
  }

  .sm\:last\:align-bottom:last-child{
    vertical-align: bottom;
  }

  .sm\:last\:align-text-top:last-child{
    vertical-align: text-top;
  }

  .sm\:last\:align-text-bottom:last-child{
    vertical-align: text-bottom;
  }

  .sm\:visible{
    visibility: visible;
  }

  .sm\:invisible{
    visibility: hidden;
  }

  .sm\:hover\:visible:hover{
    visibility: visible;
  }

  .sm\:hover\:invisible:hover{
    visibility: hidden;
  }

  .sm\:focus\:visible:focus{
    visibility: visible;
  }

  .sm\:focus\:invisible:focus{
    visibility: hidden;
  }

  .sm\:active\:visible:active{
    visibility: visible;
  }

  .sm\:active\:invisible:active{
    visibility: hidden;
  }

  .sm\:first\:visible:first-child{
    visibility: visible;
  }

  .sm\:first\:invisible:first-child{
    visibility: hidden;
  }

  .sm\:last\:visible:last-child{
    visibility: visible;
  }

  .sm\:last\:invisible:last-child{
    visibility: hidden;
  }

  .sm\:whitespace-normal{
    white-space: normal;
  }

  .sm\:whitespace-no-wrap{
    white-space: nowrap;
  }

  .sm\:whitespace-pre{
    white-space: pre;
  }

  .sm\:whitespace-pre-line{
    white-space: pre-line;
  }

  .sm\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .sm\:hover\:whitespace-normal:hover{
    white-space: normal;
  }

  .sm\:hover\:whitespace-no-wrap:hover{
    white-space: nowrap;
  }

  .sm\:hover\:whitespace-pre:hover{
    white-space: pre;
  }

  .sm\:hover\:whitespace-pre-line:hover{
    white-space: pre-line;
  }

  .sm\:hover\:whitespace-pre-wrap:hover{
    white-space: pre-wrap;
  }

  .sm\:focus\:whitespace-normal:focus{
    white-space: normal;
  }

  .sm\:focus\:whitespace-no-wrap:focus{
    white-space: nowrap;
  }

  .sm\:focus\:whitespace-pre:focus{
    white-space: pre;
  }

  .sm\:focus\:whitespace-pre-line:focus{
    white-space: pre-line;
  }

  .sm\:focus\:whitespace-pre-wrap:focus{
    white-space: pre-wrap;
  }

  .sm\:active\:whitespace-normal:active{
    white-space: normal;
  }

  .sm\:active\:whitespace-no-wrap:active{
    white-space: nowrap;
  }

  .sm\:active\:whitespace-pre:active{
    white-space: pre;
  }

  .sm\:active\:whitespace-pre-line:active{
    white-space: pre-line;
  }

  .sm\:active\:whitespace-pre-wrap:active{
    white-space: pre-wrap;
  }

  .sm\:first\:whitespace-normal:first-child{
    white-space: normal;
  }

  .sm\:first\:whitespace-no-wrap:first-child{
    white-space: nowrap;
  }

  .sm\:first\:whitespace-pre:first-child{
    white-space: pre;
  }

  .sm\:first\:whitespace-pre-line:first-child{
    white-space: pre-line;
  }

  .sm\:first\:whitespace-pre-wrap:first-child{
    white-space: pre-wrap;
  }

  .sm\:last\:whitespace-normal:last-child{
    white-space: normal;
  }

  .sm\:last\:whitespace-no-wrap:last-child{
    white-space: nowrap;
  }

  .sm\:last\:whitespace-pre:last-child{
    white-space: pre;
  }

  .sm\:last\:whitespace-pre-line:last-child{
    white-space: pre-line;
  }

  .sm\:last\:whitespace-pre-wrap:last-child{
    white-space: pre-wrap;
  }

  .sm\:break-normal{
    overflow-wrap: normal;
    word-break: normal;
  }

  .sm\:break-words{
    overflow-wrap: break-word;
  }

  .sm\:break-all{
    word-break: break-all;
  }

  .sm\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sm\:hover\:break-normal:hover{
    overflow-wrap: normal;
    word-break: normal;
  }

  .sm\:hover\:break-words:hover{
    overflow-wrap: break-word;
  }

  .sm\:hover\:break-all:hover{
    word-break: break-all;
  }

  .sm\:hover\:truncate:hover{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sm\:focus\:break-normal:focus{
    overflow-wrap: normal;
    word-break: normal;
  }

  .sm\:focus\:break-words:focus{
    overflow-wrap: break-word;
  }

  .sm\:focus\:break-all:focus{
    word-break: break-all;
  }

  .sm\:focus\:truncate:focus{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sm\:active\:break-normal:active{
    overflow-wrap: normal;
    word-break: normal;
  }

  .sm\:active\:break-words:active{
    overflow-wrap: break-word;
  }

  .sm\:active\:break-all:active{
    word-break: break-all;
  }

  .sm\:active\:truncate:active{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sm\:first\:break-normal:first-child{
    overflow-wrap: normal;
    word-break: normal;
  }

  .sm\:first\:break-words:first-child{
    overflow-wrap: break-word;
  }

  .sm\:first\:break-all:first-child{
    word-break: break-all;
  }

  .sm\:first\:truncate:first-child{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sm\:last\:break-normal:last-child{
    overflow-wrap: normal;
    word-break: normal;
  }

  .sm\:last\:break-words:last-child{
    overflow-wrap: break-word;
  }

  .sm\:last\:break-all:last-child{
    word-break: break-all;
  }

  .sm\:last\:truncate:last-child{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sm\:w-0{
    width: 0;
  }

  .sm\:w-1{
    width: 0.25rem;
  }

  .sm\:w-2{
    width: 0.5rem;
  }

  .sm\:w-3{
    width: 0.75rem;
  }

  .sm\:w-4{
    width: 1rem;
  }

  .sm\:w-5{
    width: 1.25rem;
  }

  .sm\:w-6{
    width: 1.5rem;
  }

  .sm\:w-8{
    width: 2rem;
  }

  .sm\:w-10{
    width: 2.5rem;
  }

  .sm\:w-12{
    width: 3rem;
  }

  .sm\:w-14{
    width: 3.5rem;
  }

  .sm\:w-16{
    width: 4rem;
  }

  .sm\:w-20{
    width: 5rem;
  }

  .sm\:w-24{
    width: 6rem;
  }

  .sm\:w-32{
    width: 8rem;
  }

  .sm\:w-36{
    width: 9rem;
  }

  .sm\:w-40{
    width: 10rem;
  }

  .sm\:w-48{
    width: 12rem;
  }

  .sm\:w-56{
    width: 14rem;
  }

  .sm\:w-64{
    width: 16rem;
  }

  .sm\:w-auto{
    width: auto;
  }

  .sm\:w-px{
    width: 1px;
  }

  .sm\:w-1\/2{
    width: 50%;
  }

  .sm\:w-1\/3{
    width: 33.333333%;
  }

  .sm\:w-2\/3{
    width: 66.666667%;
  }

  .sm\:w-1\/4{
    width: 25%;
  }

  .sm\:w-2\/4{
    width: 50%;
  }

  .sm\:w-3\/4{
    width: 75%;
  }

  .sm\:w-1\/5{
    width: 20%;
  }

  .sm\:w-2\/5{
    width: 40%;
  }

  .sm\:w-3\/5{
    width: 60%;
  }

  .sm\:w-4\/5{
    width: 80%;
  }

  .sm\:w-1\/6{
    width: 16.666667%;
  }

  .sm\:w-2\/6{
    width: 33.333333%;
  }

  .sm\:w-3\/6{
    width: 50%;
  }

  .sm\:w-4\/6{
    width: 66.666667%;
  }

  .sm\:w-5\/6{
    width: 83.333333%;
  }

  .sm\:w-1\/12{
    width: 8.333333%;
  }

  .sm\:w-2\/12{
    width: 16.666667%;
  }

  .sm\:w-3\/12{
    width: 25%;
  }

  .sm\:w-4\/12{
    width: 33.333333%;
  }

  .sm\:w-5\/12{
    width: 41.666667%;
  }

  .sm\:w-6\/12{
    width: 50%;
  }

  .sm\:w-7\/12{
    width: 58.333333%;
  }

  .sm\:w-8\/12{
    width: 66.666667%;
  }

  .sm\:w-9\/12{
    width: 75%;
  }

  .sm\:w-10\/12{
    width: 83.333333%;
  }

  .sm\:w-11\/12{
    width: 91.666667%;
  }

  .sm\:w-full{
    width: 100%;
  }

  .sm\:w-screen{
    width: 100vw;
  }

  .sm\:w-widePage{
    width: 120rem;
  }

  .sm\:w-page{
    width: 80rem;
  }

  .sm\:w-container{
    width: 77.25rem;
  }

  .sm\:w-tooltip{
    width: 25rem;
  }

  .sm\:w-smallTooltip{
    width: 15rem;
  }

  .sm\:w-xsmallTooltip{
    width: 6.0rem;
  }

  .sm\:w-sidebar{
    width: 27rem;
  }

  .sm\:w-doubleSidebar{
    width: 25%;
  }

  .sm\:w-practiceSidebar{
    width: 22.5rem;
  }

  .sm\:w-3\/8{
    width: 37.5%;
  }

  .sm\:w-1\/10{
    width: 10%;
  }

  .sm\:w-2\/10{
    width: 20%;
  }

  .sm\:w-3\/10{
    width: 30%;
  }

  .sm\:w-4\/10{
    width: 40%;
  }

  .sm\:w-5\/10{
    width: 50%;
  }

  .sm\:w-6\/10{
    width: 60%;
  }

  .sm\:w-7\/10{
    width: 70%;
  }

  .sm\:w-8\/10{
    width: 80%;
  }

  .sm\:w-9\/10{
    width: 90%;
  }

  .sm\:w-input{
    width: 32.5rem;
  }

  .sm\:w-inherit{
    width: inherit;
  }

  .sm\:hover\:w-0:hover{
    width: 0;
  }

  .sm\:hover\:w-1:hover{
    width: 0.25rem;
  }

  .sm\:hover\:w-2:hover{
    width: 0.5rem;
  }

  .sm\:hover\:w-3:hover{
    width: 0.75rem;
  }

  .sm\:hover\:w-4:hover{
    width: 1rem;
  }

  .sm\:hover\:w-5:hover{
    width: 1.25rem;
  }

  .sm\:hover\:w-6:hover{
    width: 1.5rem;
  }

  .sm\:hover\:w-8:hover{
    width: 2rem;
  }

  .sm\:hover\:w-10:hover{
    width: 2.5rem;
  }

  .sm\:hover\:w-12:hover{
    width: 3rem;
  }

  .sm\:hover\:w-14:hover{
    width: 3.5rem;
  }

  .sm\:hover\:w-16:hover{
    width: 4rem;
  }

  .sm\:hover\:w-20:hover{
    width: 5rem;
  }

  .sm\:hover\:w-24:hover{
    width: 6rem;
  }

  .sm\:hover\:w-32:hover{
    width: 8rem;
  }

  .sm\:hover\:w-36:hover{
    width: 9rem;
  }

  .sm\:hover\:w-40:hover{
    width: 10rem;
  }

  .sm\:hover\:w-48:hover{
    width: 12rem;
  }

  .sm\:hover\:w-56:hover{
    width: 14rem;
  }

  .sm\:hover\:w-64:hover{
    width: 16rem;
  }

  .sm\:hover\:w-auto:hover{
    width: auto;
  }

  .sm\:hover\:w-px:hover{
    width: 1px;
  }

  .sm\:hover\:w-1\/2:hover{
    width: 50%;
  }

  .sm\:hover\:w-1\/3:hover{
    width: 33.333333%;
  }

  .sm\:hover\:w-2\/3:hover{
    width: 66.666667%;
  }

  .sm\:hover\:w-1\/4:hover{
    width: 25%;
  }

  .sm\:hover\:w-2\/4:hover{
    width: 50%;
  }

  .sm\:hover\:w-3\/4:hover{
    width: 75%;
  }

  .sm\:hover\:w-1\/5:hover{
    width: 20%;
  }

  .sm\:hover\:w-2\/5:hover{
    width: 40%;
  }

  .sm\:hover\:w-3\/5:hover{
    width: 60%;
  }

  .sm\:hover\:w-4\/5:hover{
    width: 80%;
  }

  .sm\:hover\:w-1\/6:hover{
    width: 16.666667%;
  }

  .sm\:hover\:w-2\/6:hover{
    width: 33.333333%;
  }

  .sm\:hover\:w-3\/6:hover{
    width: 50%;
  }

  .sm\:hover\:w-4\/6:hover{
    width: 66.666667%;
  }

  .sm\:hover\:w-5\/6:hover{
    width: 83.333333%;
  }

  .sm\:hover\:w-1\/12:hover{
    width: 8.333333%;
  }

  .sm\:hover\:w-2\/12:hover{
    width: 16.666667%;
  }

  .sm\:hover\:w-3\/12:hover{
    width: 25%;
  }

  .sm\:hover\:w-4\/12:hover{
    width: 33.333333%;
  }

  .sm\:hover\:w-5\/12:hover{
    width: 41.666667%;
  }

  .sm\:hover\:w-6\/12:hover{
    width: 50%;
  }

  .sm\:hover\:w-7\/12:hover{
    width: 58.333333%;
  }

  .sm\:hover\:w-8\/12:hover{
    width: 66.666667%;
  }

  .sm\:hover\:w-9\/12:hover{
    width: 75%;
  }

  .sm\:hover\:w-10\/12:hover{
    width: 83.333333%;
  }

  .sm\:hover\:w-11\/12:hover{
    width: 91.666667%;
  }

  .sm\:hover\:w-full:hover{
    width: 100%;
  }

  .sm\:hover\:w-screen:hover{
    width: 100vw;
  }

  .sm\:hover\:w-widePage:hover{
    width: 120rem;
  }

  .sm\:hover\:w-page:hover{
    width: 80rem;
  }

  .sm\:hover\:w-container:hover{
    width: 77.25rem;
  }

  .sm\:hover\:w-tooltip:hover{
    width: 25rem;
  }

  .sm\:hover\:w-smallTooltip:hover{
    width: 15rem;
  }

  .sm\:hover\:w-xsmallTooltip:hover{
    width: 6.0rem;
  }

  .sm\:hover\:w-sidebar:hover{
    width: 27rem;
  }

  .sm\:hover\:w-doubleSidebar:hover{
    width: 25%;
  }

  .sm\:hover\:w-practiceSidebar:hover{
    width: 22.5rem;
  }

  .sm\:hover\:w-3\/8:hover{
    width: 37.5%;
  }

  .sm\:hover\:w-1\/10:hover{
    width: 10%;
  }

  .sm\:hover\:w-2\/10:hover{
    width: 20%;
  }

  .sm\:hover\:w-3\/10:hover{
    width: 30%;
  }

  .sm\:hover\:w-4\/10:hover{
    width: 40%;
  }

  .sm\:hover\:w-5\/10:hover{
    width: 50%;
  }

  .sm\:hover\:w-6\/10:hover{
    width: 60%;
  }

  .sm\:hover\:w-7\/10:hover{
    width: 70%;
  }

  .sm\:hover\:w-8\/10:hover{
    width: 80%;
  }

  .sm\:hover\:w-9\/10:hover{
    width: 90%;
  }

  .sm\:hover\:w-input:hover{
    width: 32.5rem;
  }

  .sm\:hover\:w-inherit:hover{
    width: inherit;
  }

  .sm\:focus\:w-0:focus{
    width: 0;
  }

  .sm\:focus\:w-1:focus{
    width: 0.25rem;
  }

  .sm\:focus\:w-2:focus{
    width: 0.5rem;
  }

  .sm\:focus\:w-3:focus{
    width: 0.75rem;
  }

  .sm\:focus\:w-4:focus{
    width: 1rem;
  }

  .sm\:focus\:w-5:focus{
    width: 1.25rem;
  }

  .sm\:focus\:w-6:focus{
    width: 1.5rem;
  }

  .sm\:focus\:w-8:focus{
    width: 2rem;
  }

  .sm\:focus\:w-10:focus{
    width: 2.5rem;
  }

  .sm\:focus\:w-12:focus{
    width: 3rem;
  }

  .sm\:focus\:w-14:focus{
    width: 3.5rem;
  }

  .sm\:focus\:w-16:focus{
    width: 4rem;
  }

  .sm\:focus\:w-20:focus{
    width: 5rem;
  }

  .sm\:focus\:w-24:focus{
    width: 6rem;
  }

  .sm\:focus\:w-32:focus{
    width: 8rem;
  }

  .sm\:focus\:w-36:focus{
    width: 9rem;
  }

  .sm\:focus\:w-40:focus{
    width: 10rem;
  }

  .sm\:focus\:w-48:focus{
    width: 12rem;
  }

  .sm\:focus\:w-56:focus{
    width: 14rem;
  }

  .sm\:focus\:w-64:focus{
    width: 16rem;
  }

  .sm\:focus\:w-auto:focus{
    width: auto;
  }

  .sm\:focus\:w-px:focus{
    width: 1px;
  }

  .sm\:focus\:w-1\/2:focus{
    width: 50%;
  }

  .sm\:focus\:w-1\/3:focus{
    width: 33.333333%;
  }

  .sm\:focus\:w-2\/3:focus{
    width: 66.666667%;
  }

  .sm\:focus\:w-1\/4:focus{
    width: 25%;
  }

  .sm\:focus\:w-2\/4:focus{
    width: 50%;
  }

  .sm\:focus\:w-3\/4:focus{
    width: 75%;
  }

  .sm\:focus\:w-1\/5:focus{
    width: 20%;
  }

  .sm\:focus\:w-2\/5:focus{
    width: 40%;
  }

  .sm\:focus\:w-3\/5:focus{
    width: 60%;
  }

  .sm\:focus\:w-4\/5:focus{
    width: 80%;
  }

  .sm\:focus\:w-1\/6:focus{
    width: 16.666667%;
  }

  .sm\:focus\:w-2\/6:focus{
    width: 33.333333%;
  }

  .sm\:focus\:w-3\/6:focus{
    width: 50%;
  }

  .sm\:focus\:w-4\/6:focus{
    width: 66.666667%;
  }

  .sm\:focus\:w-5\/6:focus{
    width: 83.333333%;
  }

  .sm\:focus\:w-1\/12:focus{
    width: 8.333333%;
  }

  .sm\:focus\:w-2\/12:focus{
    width: 16.666667%;
  }

  .sm\:focus\:w-3\/12:focus{
    width: 25%;
  }

  .sm\:focus\:w-4\/12:focus{
    width: 33.333333%;
  }

  .sm\:focus\:w-5\/12:focus{
    width: 41.666667%;
  }

  .sm\:focus\:w-6\/12:focus{
    width: 50%;
  }

  .sm\:focus\:w-7\/12:focus{
    width: 58.333333%;
  }

  .sm\:focus\:w-8\/12:focus{
    width: 66.666667%;
  }

  .sm\:focus\:w-9\/12:focus{
    width: 75%;
  }

  .sm\:focus\:w-10\/12:focus{
    width: 83.333333%;
  }

  .sm\:focus\:w-11\/12:focus{
    width: 91.666667%;
  }

  .sm\:focus\:w-full:focus{
    width: 100%;
  }

  .sm\:focus\:w-screen:focus{
    width: 100vw;
  }

  .sm\:focus\:w-widePage:focus{
    width: 120rem;
  }

  .sm\:focus\:w-page:focus{
    width: 80rem;
  }

  .sm\:focus\:w-container:focus{
    width: 77.25rem;
  }

  .sm\:focus\:w-tooltip:focus{
    width: 25rem;
  }

  .sm\:focus\:w-smallTooltip:focus{
    width: 15rem;
  }

  .sm\:focus\:w-xsmallTooltip:focus{
    width: 6.0rem;
  }

  .sm\:focus\:w-sidebar:focus{
    width: 27rem;
  }

  .sm\:focus\:w-doubleSidebar:focus{
    width: 25%;
  }

  .sm\:focus\:w-practiceSidebar:focus{
    width: 22.5rem;
  }

  .sm\:focus\:w-3\/8:focus{
    width: 37.5%;
  }

  .sm\:focus\:w-1\/10:focus{
    width: 10%;
  }

  .sm\:focus\:w-2\/10:focus{
    width: 20%;
  }

  .sm\:focus\:w-3\/10:focus{
    width: 30%;
  }

  .sm\:focus\:w-4\/10:focus{
    width: 40%;
  }

  .sm\:focus\:w-5\/10:focus{
    width: 50%;
  }

  .sm\:focus\:w-6\/10:focus{
    width: 60%;
  }

  .sm\:focus\:w-7\/10:focus{
    width: 70%;
  }

  .sm\:focus\:w-8\/10:focus{
    width: 80%;
  }

  .sm\:focus\:w-9\/10:focus{
    width: 90%;
  }

  .sm\:focus\:w-input:focus{
    width: 32.5rem;
  }

  .sm\:focus\:w-inherit:focus{
    width: inherit;
  }

  .sm\:active\:w-0:active{
    width: 0;
  }

  .sm\:active\:w-1:active{
    width: 0.25rem;
  }

  .sm\:active\:w-2:active{
    width: 0.5rem;
  }

  .sm\:active\:w-3:active{
    width: 0.75rem;
  }

  .sm\:active\:w-4:active{
    width: 1rem;
  }

  .sm\:active\:w-5:active{
    width: 1.25rem;
  }

  .sm\:active\:w-6:active{
    width: 1.5rem;
  }

  .sm\:active\:w-8:active{
    width: 2rem;
  }

  .sm\:active\:w-10:active{
    width: 2.5rem;
  }

  .sm\:active\:w-12:active{
    width: 3rem;
  }

  .sm\:active\:w-14:active{
    width: 3.5rem;
  }

  .sm\:active\:w-16:active{
    width: 4rem;
  }

  .sm\:active\:w-20:active{
    width: 5rem;
  }

  .sm\:active\:w-24:active{
    width: 6rem;
  }

  .sm\:active\:w-32:active{
    width: 8rem;
  }

  .sm\:active\:w-36:active{
    width: 9rem;
  }

  .sm\:active\:w-40:active{
    width: 10rem;
  }

  .sm\:active\:w-48:active{
    width: 12rem;
  }

  .sm\:active\:w-56:active{
    width: 14rem;
  }

  .sm\:active\:w-64:active{
    width: 16rem;
  }

  .sm\:active\:w-auto:active{
    width: auto;
  }

  .sm\:active\:w-px:active{
    width: 1px;
  }

  .sm\:active\:w-1\/2:active{
    width: 50%;
  }

  .sm\:active\:w-1\/3:active{
    width: 33.333333%;
  }

  .sm\:active\:w-2\/3:active{
    width: 66.666667%;
  }

  .sm\:active\:w-1\/4:active{
    width: 25%;
  }

  .sm\:active\:w-2\/4:active{
    width: 50%;
  }

  .sm\:active\:w-3\/4:active{
    width: 75%;
  }

  .sm\:active\:w-1\/5:active{
    width: 20%;
  }

  .sm\:active\:w-2\/5:active{
    width: 40%;
  }

  .sm\:active\:w-3\/5:active{
    width: 60%;
  }

  .sm\:active\:w-4\/5:active{
    width: 80%;
  }

  .sm\:active\:w-1\/6:active{
    width: 16.666667%;
  }

  .sm\:active\:w-2\/6:active{
    width: 33.333333%;
  }

  .sm\:active\:w-3\/6:active{
    width: 50%;
  }

  .sm\:active\:w-4\/6:active{
    width: 66.666667%;
  }

  .sm\:active\:w-5\/6:active{
    width: 83.333333%;
  }

  .sm\:active\:w-1\/12:active{
    width: 8.333333%;
  }

  .sm\:active\:w-2\/12:active{
    width: 16.666667%;
  }

  .sm\:active\:w-3\/12:active{
    width: 25%;
  }

  .sm\:active\:w-4\/12:active{
    width: 33.333333%;
  }

  .sm\:active\:w-5\/12:active{
    width: 41.666667%;
  }

  .sm\:active\:w-6\/12:active{
    width: 50%;
  }

  .sm\:active\:w-7\/12:active{
    width: 58.333333%;
  }

  .sm\:active\:w-8\/12:active{
    width: 66.666667%;
  }

  .sm\:active\:w-9\/12:active{
    width: 75%;
  }

  .sm\:active\:w-10\/12:active{
    width: 83.333333%;
  }

  .sm\:active\:w-11\/12:active{
    width: 91.666667%;
  }

  .sm\:active\:w-full:active{
    width: 100%;
  }

  .sm\:active\:w-screen:active{
    width: 100vw;
  }

  .sm\:active\:w-widePage:active{
    width: 120rem;
  }

  .sm\:active\:w-page:active{
    width: 80rem;
  }

  .sm\:active\:w-container:active{
    width: 77.25rem;
  }

  .sm\:active\:w-tooltip:active{
    width: 25rem;
  }

  .sm\:active\:w-smallTooltip:active{
    width: 15rem;
  }

  .sm\:active\:w-xsmallTooltip:active{
    width: 6.0rem;
  }

  .sm\:active\:w-sidebar:active{
    width: 27rem;
  }

  .sm\:active\:w-doubleSidebar:active{
    width: 25%;
  }

  .sm\:active\:w-practiceSidebar:active{
    width: 22.5rem;
  }

  .sm\:active\:w-3\/8:active{
    width: 37.5%;
  }

  .sm\:active\:w-1\/10:active{
    width: 10%;
  }

  .sm\:active\:w-2\/10:active{
    width: 20%;
  }

  .sm\:active\:w-3\/10:active{
    width: 30%;
  }

  .sm\:active\:w-4\/10:active{
    width: 40%;
  }

  .sm\:active\:w-5\/10:active{
    width: 50%;
  }

  .sm\:active\:w-6\/10:active{
    width: 60%;
  }

  .sm\:active\:w-7\/10:active{
    width: 70%;
  }

  .sm\:active\:w-8\/10:active{
    width: 80%;
  }

  .sm\:active\:w-9\/10:active{
    width: 90%;
  }

  .sm\:active\:w-input:active{
    width: 32.5rem;
  }

  .sm\:active\:w-inherit:active{
    width: inherit;
  }

  .sm\:first\:w-0:first-child{
    width: 0;
  }

  .sm\:first\:w-1:first-child{
    width: 0.25rem;
  }

  .sm\:first\:w-2:first-child{
    width: 0.5rem;
  }

  .sm\:first\:w-3:first-child{
    width: 0.75rem;
  }

  .sm\:first\:w-4:first-child{
    width: 1rem;
  }

  .sm\:first\:w-5:first-child{
    width: 1.25rem;
  }

  .sm\:first\:w-6:first-child{
    width: 1.5rem;
  }

  .sm\:first\:w-8:first-child{
    width: 2rem;
  }

  .sm\:first\:w-10:first-child{
    width: 2.5rem;
  }

  .sm\:first\:w-12:first-child{
    width: 3rem;
  }

  .sm\:first\:w-14:first-child{
    width: 3.5rem;
  }

  .sm\:first\:w-16:first-child{
    width: 4rem;
  }

  .sm\:first\:w-20:first-child{
    width: 5rem;
  }

  .sm\:first\:w-24:first-child{
    width: 6rem;
  }

  .sm\:first\:w-32:first-child{
    width: 8rem;
  }

  .sm\:first\:w-36:first-child{
    width: 9rem;
  }

  .sm\:first\:w-40:first-child{
    width: 10rem;
  }

  .sm\:first\:w-48:first-child{
    width: 12rem;
  }

  .sm\:first\:w-56:first-child{
    width: 14rem;
  }

  .sm\:first\:w-64:first-child{
    width: 16rem;
  }

  .sm\:first\:w-auto:first-child{
    width: auto;
  }

  .sm\:first\:w-px:first-child{
    width: 1px;
  }

  .sm\:first\:w-1\/2:first-child{
    width: 50%;
  }

  .sm\:first\:w-1\/3:first-child{
    width: 33.333333%;
  }

  .sm\:first\:w-2\/3:first-child{
    width: 66.666667%;
  }

  .sm\:first\:w-1\/4:first-child{
    width: 25%;
  }

  .sm\:first\:w-2\/4:first-child{
    width: 50%;
  }

  .sm\:first\:w-3\/4:first-child{
    width: 75%;
  }

  .sm\:first\:w-1\/5:first-child{
    width: 20%;
  }

  .sm\:first\:w-2\/5:first-child{
    width: 40%;
  }

  .sm\:first\:w-3\/5:first-child{
    width: 60%;
  }

  .sm\:first\:w-4\/5:first-child{
    width: 80%;
  }

  .sm\:first\:w-1\/6:first-child{
    width: 16.666667%;
  }

  .sm\:first\:w-2\/6:first-child{
    width: 33.333333%;
  }

  .sm\:first\:w-3\/6:first-child{
    width: 50%;
  }

  .sm\:first\:w-4\/6:first-child{
    width: 66.666667%;
  }

  .sm\:first\:w-5\/6:first-child{
    width: 83.333333%;
  }

  .sm\:first\:w-1\/12:first-child{
    width: 8.333333%;
  }

  .sm\:first\:w-2\/12:first-child{
    width: 16.666667%;
  }

  .sm\:first\:w-3\/12:first-child{
    width: 25%;
  }

  .sm\:first\:w-4\/12:first-child{
    width: 33.333333%;
  }

  .sm\:first\:w-5\/12:first-child{
    width: 41.666667%;
  }

  .sm\:first\:w-6\/12:first-child{
    width: 50%;
  }

  .sm\:first\:w-7\/12:first-child{
    width: 58.333333%;
  }

  .sm\:first\:w-8\/12:first-child{
    width: 66.666667%;
  }

  .sm\:first\:w-9\/12:first-child{
    width: 75%;
  }

  .sm\:first\:w-10\/12:first-child{
    width: 83.333333%;
  }

  .sm\:first\:w-11\/12:first-child{
    width: 91.666667%;
  }

  .sm\:first\:w-full:first-child{
    width: 100%;
  }

  .sm\:first\:w-screen:first-child{
    width: 100vw;
  }

  .sm\:first\:w-widePage:first-child{
    width: 120rem;
  }

  .sm\:first\:w-page:first-child{
    width: 80rem;
  }

  .sm\:first\:w-container:first-child{
    width: 77.25rem;
  }

  .sm\:first\:w-tooltip:first-child{
    width: 25rem;
  }

  .sm\:first\:w-smallTooltip:first-child{
    width: 15rem;
  }

  .sm\:first\:w-xsmallTooltip:first-child{
    width: 6.0rem;
  }

  .sm\:first\:w-sidebar:first-child{
    width: 27rem;
  }

  .sm\:first\:w-doubleSidebar:first-child{
    width: 25%;
  }

  .sm\:first\:w-practiceSidebar:first-child{
    width: 22.5rem;
  }

  .sm\:first\:w-3\/8:first-child{
    width: 37.5%;
  }

  .sm\:first\:w-1\/10:first-child{
    width: 10%;
  }

  .sm\:first\:w-2\/10:first-child{
    width: 20%;
  }

  .sm\:first\:w-3\/10:first-child{
    width: 30%;
  }

  .sm\:first\:w-4\/10:first-child{
    width: 40%;
  }

  .sm\:first\:w-5\/10:first-child{
    width: 50%;
  }

  .sm\:first\:w-6\/10:first-child{
    width: 60%;
  }

  .sm\:first\:w-7\/10:first-child{
    width: 70%;
  }

  .sm\:first\:w-8\/10:first-child{
    width: 80%;
  }

  .sm\:first\:w-9\/10:first-child{
    width: 90%;
  }

  .sm\:first\:w-input:first-child{
    width: 32.5rem;
  }

  .sm\:first\:w-inherit:first-child{
    width: inherit;
  }

  .sm\:last\:w-0:last-child{
    width: 0;
  }

  .sm\:last\:w-1:last-child{
    width: 0.25rem;
  }

  .sm\:last\:w-2:last-child{
    width: 0.5rem;
  }

  .sm\:last\:w-3:last-child{
    width: 0.75rem;
  }

  .sm\:last\:w-4:last-child{
    width: 1rem;
  }

  .sm\:last\:w-5:last-child{
    width: 1.25rem;
  }

  .sm\:last\:w-6:last-child{
    width: 1.5rem;
  }

  .sm\:last\:w-8:last-child{
    width: 2rem;
  }

  .sm\:last\:w-10:last-child{
    width: 2.5rem;
  }

  .sm\:last\:w-12:last-child{
    width: 3rem;
  }

  .sm\:last\:w-14:last-child{
    width: 3.5rem;
  }

  .sm\:last\:w-16:last-child{
    width: 4rem;
  }

  .sm\:last\:w-20:last-child{
    width: 5rem;
  }

  .sm\:last\:w-24:last-child{
    width: 6rem;
  }

  .sm\:last\:w-32:last-child{
    width: 8rem;
  }

  .sm\:last\:w-36:last-child{
    width: 9rem;
  }

  .sm\:last\:w-40:last-child{
    width: 10rem;
  }

  .sm\:last\:w-48:last-child{
    width: 12rem;
  }

  .sm\:last\:w-56:last-child{
    width: 14rem;
  }

  .sm\:last\:w-64:last-child{
    width: 16rem;
  }

  .sm\:last\:w-auto:last-child{
    width: auto;
  }

  .sm\:last\:w-px:last-child{
    width: 1px;
  }

  .sm\:last\:w-1\/2:last-child{
    width: 50%;
  }

  .sm\:last\:w-1\/3:last-child{
    width: 33.333333%;
  }

  .sm\:last\:w-2\/3:last-child{
    width: 66.666667%;
  }

  .sm\:last\:w-1\/4:last-child{
    width: 25%;
  }

  .sm\:last\:w-2\/4:last-child{
    width: 50%;
  }

  .sm\:last\:w-3\/4:last-child{
    width: 75%;
  }

  .sm\:last\:w-1\/5:last-child{
    width: 20%;
  }

  .sm\:last\:w-2\/5:last-child{
    width: 40%;
  }

  .sm\:last\:w-3\/5:last-child{
    width: 60%;
  }

  .sm\:last\:w-4\/5:last-child{
    width: 80%;
  }

  .sm\:last\:w-1\/6:last-child{
    width: 16.666667%;
  }

  .sm\:last\:w-2\/6:last-child{
    width: 33.333333%;
  }

  .sm\:last\:w-3\/6:last-child{
    width: 50%;
  }

  .sm\:last\:w-4\/6:last-child{
    width: 66.666667%;
  }

  .sm\:last\:w-5\/6:last-child{
    width: 83.333333%;
  }

  .sm\:last\:w-1\/12:last-child{
    width: 8.333333%;
  }

  .sm\:last\:w-2\/12:last-child{
    width: 16.666667%;
  }

  .sm\:last\:w-3\/12:last-child{
    width: 25%;
  }

  .sm\:last\:w-4\/12:last-child{
    width: 33.333333%;
  }

  .sm\:last\:w-5\/12:last-child{
    width: 41.666667%;
  }

  .sm\:last\:w-6\/12:last-child{
    width: 50%;
  }

  .sm\:last\:w-7\/12:last-child{
    width: 58.333333%;
  }

  .sm\:last\:w-8\/12:last-child{
    width: 66.666667%;
  }

  .sm\:last\:w-9\/12:last-child{
    width: 75%;
  }

  .sm\:last\:w-10\/12:last-child{
    width: 83.333333%;
  }

  .sm\:last\:w-11\/12:last-child{
    width: 91.666667%;
  }

  .sm\:last\:w-full:last-child{
    width: 100%;
  }

  .sm\:last\:w-screen:last-child{
    width: 100vw;
  }

  .sm\:last\:w-widePage:last-child{
    width: 120rem;
  }

  .sm\:last\:w-page:last-child{
    width: 80rem;
  }

  .sm\:last\:w-container:last-child{
    width: 77.25rem;
  }

  .sm\:last\:w-tooltip:last-child{
    width: 25rem;
  }

  .sm\:last\:w-smallTooltip:last-child{
    width: 15rem;
  }

  .sm\:last\:w-xsmallTooltip:last-child{
    width: 6.0rem;
  }

  .sm\:last\:w-sidebar:last-child{
    width: 27rem;
  }

  .sm\:last\:w-doubleSidebar:last-child{
    width: 25%;
  }

  .sm\:last\:w-practiceSidebar:last-child{
    width: 22.5rem;
  }

  .sm\:last\:w-3\/8:last-child{
    width: 37.5%;
  }

  .sm\:last\:w-1\/10:last-child{
    width: 10%;
  }

  .sm\:last\:w-2\/10:last-child{
    width: 20%;
  }

  .sm\:last\:w-3\/10:last-child{
    width: 30%;
  }

  .sm\:last\:w-4\/10:last-child{
    width: 40%;
  }

  .sm\:last\:w-5\/10:last-child{
    width: 50%;
  }

  .sm\:last\:w-6\/10:last-child{
    width: 60%;
  }

  .sm\:last\:w-7\/10:last-child{
    width: 70%;
  }

  .sm\:last\:w-8\/10:last-child{
    width: 80%;
  }

  .sm\:last\:w-9\/10:last-child{
    width: 90%;
  }

  .sm\:last\:w-input:last-child{
    width: 32.5rem;
  }

  .sm\:last\:w-inherit:last-child{
    width: inherit;
  }

  .sm\:z-auto{
    z-index: auto;
  }

  .sm\:z-static-position{
    z-index: 300;
  }

  .sm\:z-tooltip{
    z-index: 201;
  }

  .sm\:z-overlay{
    z-index: 400;
  }

  .sm\:hover\:z-auto:hover{
    z-index: auto;
  }

  .sm\:hover\:z-static-position:hover{
    z-index: 300;
  }

  .sm\:hover\:z-tooltip:hover{
    z-index: 201;
  }

  .sm\:hover\:z-overlay:hover{
    z-index: 400;
  }

  .sm\:focus\:z-auto:focus{
    z-index: auto;
  }

  .sm\:focus\:z-static-position:focus{
    z-index: 300;
  }

  .sm\:focus\:z-tooltip:focus{
    z-index: 201;
  }

  .sm\:focus\:z-overlay:focus{
    z-index: 400;
  }

  .sm\:active\:z-auto:active{
    z-index: auto;
  }

  .sm\:active\:z-static-position:active{
    z-index: 300;
  }

  .sm\:active\:z-tooltip:active{
    z-index: 201;
  }

  .sm\:active\:z-overlay:active{
    z-index: 400;
  }

  .sm\:first\:z-auto:first-child{
    z-index: auto;
  }

  .sm\:first\:z-static-position:first-child{
    z-index: 300;
  }

  .sm\:first\:z-tooltip:first-child{
    z-index: 201;
  }

  .sm\:first\:z-overlay:first-child{
    z-index: 400;
  }

  .sm\:last\:z-auto:last-child{
    z-index: auto;
  }

  .sm\:last\:z-static-position:last-child{
    z-index: 300;
  }

  .sm\:last\:z-tooltip:last-child{
    z-index: 201;
  }

  .sm\:last\:z-overlay:last-child{
    z-index: 400;
  }

  .sm\:gap-0{
    grid-gap: 0;
    gap: 0;
  }

  .sm\:gap-1{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .sm\:gap-2{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .sm\:gap-3{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .sm\:gap-4{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .sm\:gap-5{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .sm\:gap-6{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .sm\:gap-8{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .sm\:gap-10{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .sm\:gap-12{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .sm\:gap-14{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .sm\:gap-16{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .sm\:gap-20{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .sm\:gap-24{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .sm\:gap-32{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .sm\:gap-40{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .sm\:gap-48{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .sm\:gap-56{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .sm\:gap-64{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .sm\:gap-px{
    grid-gap: 1px;
    gap: 1px;
  }

  .sm\:col-gap-0{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:col-gap-1{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:col-gap-2{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:col-gap-3{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:col-gap-4{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:col-gap-5{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:col-gap-6{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:col-gap-8{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:col-gap-10{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:col-gap-12{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:col-gap-14{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:col-gap-16{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:col-gap-20{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:col-gap-24{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:col-gap-32{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:col-gap-40{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:col-gap-48{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:col-gap-56{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:col-gap-64{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:col-gap-px{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:gap-x-0{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:gap-x-1{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:gap-x-2{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:gap-x-3{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:gap-x-4{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:gap-x-5{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:gap-x-6{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:gap-x-8{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:gap-x-10{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:gap-x-12{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:gap-x-14{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:gap-x-16{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:gap-x-20{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:gap-x-24{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:gap-x-32{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:gap-x-40{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:gap-x-48{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:gap-x-56{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:gap-x-64{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:gap-x-px{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:row-gap-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:row-gap-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:row-gap-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:row-gap-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:row-gap-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:row-gap-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:row-gap-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:row-gap-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:row-gap-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:row-gap-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:row-gap-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:row-gap-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:row-gap-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:row-gap-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:row-gap-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:row-gap-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:row-gap-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:row-gap-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:row-gap-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:row-gap-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:gap-y-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:gap-y-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:gap-y-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:gap-y-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:gap-y-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:gap-y-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:gap-y-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:gap-y-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:gap-y-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:gap-y-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:gap-y-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:gap-y-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:gap-y-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:gap-y-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:gap-y-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:gap-y-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:gap-y-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:gap-y-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:gap-y-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:gap-y-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:hover\:gap-0:hover{
    grid-gap: 0;
    gap: 0;
  }

  .sm\:hover\:gap-1:hover{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .sm\:hover\:gap-2:hover{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .sm\:hover\:gap-3:hover{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .sm\:hover\:gap-4:hover{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .sm\:hover\:gap-5:hover{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .sm\:hover\:gap-6:hover{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .sm\:hover\:gap-8:hover{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .sm\:hover\:gap-10:hover{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .sm\:hover\:gap-12:hover{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .sm\:hover\:gap-14:hover{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .sm\:hover\:gap-16:hover{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .sm\:hover\:gap-20:hover{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .sm\:hover\:gap-24:hover{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .sm\:hover\:gap-32:hover{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .sm\:hover\:gap-40:hover{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .sm\:hover\:gap-48:hover{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .sm\:hover\:gap-56:hover{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .sm\:hover\:gap-64:hover{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .sm\:hover\:gap-px:hover{
    grid-gap: 1px;
    gap: 1px;
  }

  .sm\:hover\:col-gap-0:hover{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:hover\:col-gap-1:hover{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:hover\:col-gap-2:hover{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:hover\:col-gap-3:hover{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:hover\:col-gap-4:hover{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:hover\:col-gap-5:hover{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:hover\:col-gap-6:hover{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:hover\:col-gap-8:hover{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:hover\:col-gap-10:hover{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:hover\:col-gap-12:hover{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:hover\:col-gap-14:hover{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:hover\:col-gap-16:hover{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:hover\:col-gap-20:hover{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:hover\:col-gap-24:hover{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:hover\:col-gap-32:hover{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:hover\:col-gap-40:hover{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:hover\:col-gap-48:hover{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:hover\:col-gap-56:hover{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:hover\:col-gap-64:hover{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:hover\:col-gap-px:hover{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:hover\:gap-x-0:hover{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:hover\:gap-x-1:hover{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:hover\:gap-x-2:hover{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:hover\:gap-x-3:hover{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:hover\:gap-x-4:hover{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:hover\:gap-x-5:hover{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:hover\:gap-x-6:hover{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:hover\:gap-x-8:hover{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:hover\:gap-x-10:hover{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:hover\:gap-x-12:hover{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:hover\:gap-x-14:hover{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:hover\:gap-x-16:hover{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:hover\:gap-x-20:hover{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:hover\:gap-x-24:hover{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:hover\:gap-x-32:hover{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:hover\:gap-x-40:hover{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:hover\:gap-x-48:hover{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:hover\:gap-x-56:hover{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:hover\:gap-x-64:hover{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:hover\:gap-x-px:hover{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:hover\:row-gap-0:hover{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:hover\:row-gap-1:hover{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:hover\:row-gap-2:hover{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:hover\:row-gap-3:hover{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:hover\:row-gap-4:hover{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:hover\:row-gap-5:hover{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:hover\:row-gap-6:hover{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:hover\:row-gap-8:hover{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:hover\:row-gap-10:hover{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:hover\:row-gap-12:hover{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:hover\:row-gap-14:hover{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:hover\:row-gap-16:hover{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:hover\:row-gap-20:hover{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:hover\:row-gap-24:hover{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:hover\:row-gap-32:hover{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:hover\:row-gap-40:hover{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:hover\:row-gap-48:hover{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:hover\:row-gap-56:hover{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:hover\:row-gap-64:hover{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:hover\:row-gap-px:hover{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:hover\:gap-y-0:hover{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:hover\:gap-y-1:hover{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:hover\:gap-y-2:hover{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:hover\:gap-y-3:hover{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:hover\:gap-y-4:hover{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:hover\:gap-y-5:hover{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:hover\:gap-y-6:hover{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:hover\:gap-y-8:hover{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:hover\:gap-y-10:hover{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:hover\:gap-y-12:hover{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:hover\:gap-y-14:hover{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:hover\:gap-y-16:hover{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:hover\:gap-y-20:hover{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:hover\:gap-y-24:hover{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:hover\:gap-y-32:hover{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:hover\:gap-y-40:hover{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:hover\:gap-y-48:hover{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:hover\:gap-y-56:hover{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:hover\:gap-y-64:hover{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:hover\:gap-y-px:hover{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:focus\:gap-0:focus{
    grid-gap: 0;
    gap: 0;
  }

  .sm\:focus\:gap-1:focus{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .sm\:focus\:gap-2:focus{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .sm\:focus\:gap-3:focus{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .sm\:focus\:gap-4:focus{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .sm\:focus\:gap-5:focus{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .sm\:focus\:gap-6:focus{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .sm\:focus\:gap-8:focus{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .sm\:focus\:gap-10:focus{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .sm\:focus\:gap-12:focus{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .sm\:focus\:gap-14:focus{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .sm\:focus\:gap-16:focus{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .sm\:focus\:gap-20:focus{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .sm\:focus\:gap-24:focus{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .sm\:focus\:gap-32:focus{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .sm\:focus\:gap-40:focus{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .sm\:focus\:gap-48:focus{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .sm\:focus\:gap-56:focus{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .sm\:focus\:gap-64:focus{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .sm\:focus\:gap-px:focus{
    grid-gap: 1px;
    gap: 1px;
  }

  .sm\:focus\:col-gap-0:focus{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:focus\:col-gap-1:focus{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:focus\:col-gap-2:focus{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:focus\:col-gap-3:focus{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:focus\:col-gap-4:focus{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:focus\:col-gap-5:focus{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:focus\:col-gap-6:focus{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:focus\:col-gap-8:focus{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:focus\:col-gap-10:focus{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:focus\:col-gap-12:focus{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:focus\:col-gap-14:focus{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:focus\:col-gap-16:focus{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:focus\:col-gap-20:focus{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:focus\:col-gap-24:focus{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:focus\:col-gap-32:focus{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:focus\:col-gap-40:focus{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:focus\:col-gap-48:focus{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:focus\:col-gap-56:focus{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:focus\:col-gap-64:focus{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:focus\:col-gap-px:focus{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:focus\:gap-x-0:focus{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:focus\:gap-x-1:focus{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:focus\:gap-x-2:focus{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:focus\:gap-x-3:focus{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:focus\:gap-x-4:focus{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:focus\:gap-x-5:focus{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:focus\:gap-x-6:focus{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:focus\:gap-x-8:focus{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:focus\:gap-x-10:focus{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:focus\:gap-x-12:focus{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:focus\:gap-x-14:focus{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:focus\:gap-x-16:focus{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:focus\:gap-x-20:focus{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:focus\:gap-x-24:focus{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:focus\:gap-x-32:focus{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:focus\:gap-x-40:focus{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:focus\:gap-x-48:focus{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:focus\:gap-x-56:focus{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:focus\:gap-x-64:focus{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:focus\:gap-x-px:focus{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:focus\:row-gap-0:focus{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:focus\:row-gap-1:focus{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:focus\:row-gap-2:focus{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:focus\:row-gap-3:focus{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:focus\:row-gap-4:focus{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:focus\:row-gap-5:focus{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:focus\:row-gap-6:focus{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:focus\:row-gap-8:focus{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:focus\:row-gap-10:focus{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:focus\:row-gap-12:focus{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:focus\:row-gap-14:focus{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:focus\:row-gap-16:focus{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:focus\:row-gap-20:focus{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:focus\:row-gap-24:focus{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:focus\:row-gap-32:focus{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:focus\:row-gap-40:focus{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:focus\:row-gap-48:focus{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:focus\:row-gap-56:focus{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:focus\:row-gap-64:focus{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:focus\:row-gap-px:focus{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:focus\:gap-y-0:focus{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:focus\:gap-y-1:focus{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:focus\:gap-y-2:focus{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:focus\:gap-y-3:focus{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:focus\:gap-y-4:focus{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:focus\:gap-y-5:focus{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:focus\:gap-y-6:focus{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:focus\:gap-y-8:focus{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:focus\:gap-y-10:focus{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:focus\:gap-y-12:focus{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:focus\:gap-y-14:focus{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:focus\:gap-y-16:focus{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:focus\:gap-y-20:focus{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:focus\:gap-y-24:focus{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:focus\:gap-y-32:focus{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:focus\:gap-y-40:focus{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:focus\:gap-y-48:focus{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:focus\:gap-y-56:focus{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:focus\:gap-y-64:focus{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:focus\:gap-y-px:focus{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:active\:gap-0:active{
    grid-gap: 0;
    gap: 0;
  }

  .sm\:active\:gap-1:active{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .sm\:active\:gap-2:active{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .sm\:active\:gap-3:active{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .sm\:active\:gap-4:active{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .sm\:active\:gap-5:active{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .sm\:active\:gap-6:active{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .sm\:active\:gap-8:active{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .sm\:active\:gap-10:active{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .sm\:active\:gap-12:active{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .sm\:active\:gap-14:active{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .sm\:active\:gap-16:active{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .sm\:active\:gap-20:active{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .sm\:active\:gap-24:active{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .sm\:active\:gap-32:active{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .sm\:active\:gap-40:active{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .sm\:active\:gap-48:active{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .sm\:active\:gap-56:active{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .sm\:active\:gap-64:active{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .sm\:active\:gap-px:active{
    grid-gap: 1px;
    gap: 1px;
  }

  .sm\:active\:col-gap-0:active{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:active\:col-gap-1:active{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:active\:col-gap-2:active{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:active\:col-gap-3:active{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:active\:col-gap-4:active{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:active\:col-gap-5:active{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:active\:col-gap-6:active{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:active\:col-gap-8:active{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:active\:col-gap-10:active{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:active\:col-gap-12:active{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:active\:col-gap-14:active{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:active\:col-gap-16:active{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:active\:col-gap-20:active{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:active\:col-gap-24:active{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:active\:col-gap-32:active{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:active\:col-gap-40:active{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:active\:col-gap-48:active{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:active\:col-gap-56:active{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:active\:col-gap-64:active{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:active\:col-gap-px:active{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:active\:gap-x-0:active{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:active\:gap-x-1:active{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:active\:gap-x-2:active{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:active\:gap-x-3:active{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:active\:gap-x-4:active{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:active\:gap-x-5:active{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:active\:gap-x-6:active{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:active\:gap-x-8:active{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:active\:gap-x-10:active{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:active\:gap-x-12:active{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:active\:gap-x-14:active{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:active\:gap-x-16:active{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:active\:gap-x-20:active{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:active\:gap-x-24:active{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:active\:gap-x-32:active{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:active\:gap-x-40:active{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:active\:gap-x-48:active{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:active\:gap-x-56:active{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:active\:gap-x-64:active{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:active\:gap-x-px:active{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:active\:row-gap-0:active{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:active\:row-gap-1:active{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:active\:row-gap-2:active{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:active\:row-gap-3:active{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:active\:row-gap-4:active{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:active\:row-gap-5:active{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:active\:row-gap-6:active{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:active\:row-gap-8:active{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:active\:row-gap-10:active{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:active\:row-gap-12:active{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:active\:row-gap-14:active{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:active\:row-gap-16:active{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:active\:row-gap-20:active{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:active\:row-gap-24:active{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:active\:row-gap-32:active{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:active\:row-gap-40:active{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:active\:row-gap-48:active{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:active\:row-gap-56:active{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:active\:row-gap-64:active{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:active\:row-gap-px:active{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:active\:gap-y-0:active{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:active\:gap-y-1:active{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:active\:gap-y-2:active{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:active\:gap-y-3:active{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:active\:gap-y-4:active{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:active\:gap-y-5:active{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:active\:gap-y-6:active{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:active\:gap-y-8:active{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:active\:gap-y-10:active{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:active\:gap-y-12:active{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:active\:gap-y-14:active{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:active\:gap-y-16:active{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:active\:gap-y-20:active{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:active\:gap-y-24:active{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:active\:gap-y-32:active{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:active\:gap-y-40:active{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:active\:gap-y-48:active{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:active\:gap-y-56:active{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:active\:gap-y-64:active{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:active\:gap-y-px:active{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:first\:gap-0:first-child{
    grid-gap: 0;
    gap: 0;
  }

  .sm\:first\:gap-1:first-child{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .sm\:first\:gap-2:first-child{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .sm\:first\:gap-3:first-child{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .sm\:first\:gap-4:first-child{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .sm\:first\:gap-5:first-child{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .sm\:first\:gap-6:first-child{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .sm\:first\:gap-8:first-child{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .sm\:first\:gap-10:first-child{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .sm\:first\:gap-12:first-child{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .sm\:first\:gap-14:first-child{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .sm\:first\:gap-16:first-child{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .sm\:first\:gap-20:first-child{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .sm\:first\:gap-24:first-child{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .sm\:first\:gap-32:first-child{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .sm\:first\:gap-40:first-child{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .sm\:first\:gap-48:first-child{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .sm\:first\:gap-56:first-child{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .sm\:first\:gap-64:first-child{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .sm\:first\:gap-px:first-child{
    grid-gap: 1px;
    gap: 1px;
  }

  .sm\:first\:col-gap-0:first-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:first\:col-gap-1:first-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:first\:col-gap-2:first-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:first\:col-gap-3:first-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:first\:col-gap-4:first-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:first\:col-gap-5:first-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:first\:col-gap-6:first-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:first\:col-gap-8:first-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:first\:col-gap-10:first-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:first\:col-gap-12:first-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:first\:col-gap-14:first-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:first\:col-gap-16:first-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:first\:col-gap-20:first-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:first\:col-gap-24:first-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:first\:col-gap-32:first-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:first\:col-gap-40:first-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:first\:col-gap-48:first-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:first\:col-gap-56:first-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:first\:col-gap-64:first-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:first\:col-gap-px:first-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:first\:gap-x-0:first-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:first\:gap-x-1:first-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:first\:gap-x-2:first-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:first\:gap-x-3:first-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:first\:gap-x-4:first-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:first\:gap-x-5:first-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:first\:gap-x-6:first-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:first\:gap-x-8:first-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:first\:gap-x-10:first-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:first\:gap-x-12:first-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:first\:gap-x-14:first-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:first\:gap-x-16:first-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:first\:gap-x-20:first-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:first\:gap-x-24:first-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:first\:gap-x-32:first-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:first\:gap-x-40:first-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:first\:gap-x-48:first-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:first\:gap-x-56:first-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:first\:gap-x-64:first-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:first\:gap-x-px:first-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:first\:row-gap-0:first-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:first\:row-gap-1:first-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:first\:row-gap-2:first-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:first\:row-gap-3:first-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:first\:row-gap-4:first-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:first\:row-gap-5:first-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:first\:row-gap-6:first-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:first\:row-gap-8:first-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:first\:row-gap-10:first-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:first\:row-gap-12:first-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:first\:row-gap-14:first-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:first\:row-gap-16:first-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:first\:row-gap-20:first-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:first\:row-gap-24:first-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:first\:row-gap-32:first-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:first\:row-gap-40:first-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:first\:row-gap-48:first-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:first\:row-gap-56:first-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:first\:row-gap-64:first-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:first\:row-gap-px:first-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:first\:gap-y-0:first-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:first\:gap-y-1:first-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:first\:gap-y-2:first-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:first\:gap-y-3:first-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:first\:gap-y-4:first-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:first\:gap-y-5:first-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:first\:gap-y-6:first-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:first\:gap-y-8:first-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:first\:gap-y-10:first-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:first\:gap-y-12:first-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:first\:gap-y-14:first-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:first\:gap-y-16:first-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:first\:gap-y-20:first-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:first\:gap-y-24:first-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:first\:gap-y-32:first-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:first\:gap-y-40:first-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:first\:gap-y-48:first-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:first\:gap-y-56:first-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:first\:gap-y-64:first-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:first\:gap-y-px:first-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:last\:gap-0:last-child{
    grid-gap: 0;
    gap: 0;
  }

  .sm\:last\:gap-1:last-child{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .sm\:last\:gap-2:last-child{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .sm\:last\:gap-3:last-child{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .sm\:last\:gap-4:last-child{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .sm\:last\:gap-5:last-child{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .sm\:last\:gap-6:last-child{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .sm\:last\:gap-8:last-child{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .sm\:last\:gap-10:last-child{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .sm\:last\:gap-12:last-child{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .sm\:last\:gap-14:last-child{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .sm\:last\:gap-16:last-child{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .sm\:last\:gap-20:last-child{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .sm\:last\:gap-24:last-child{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .sm\:last\:gap-32:last-child{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .sm\:last\:gap-40:last-child{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .sm\:last\:gap-48:last-child{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .sm\:last\:gap-56:last-child{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .sm\:last\:gap-64:last-child{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .sm\:last\:gap-px:last-child{
    grid-gap: 1px;
    gap: 1px;
  }

  .sm\:last\:col-gap-0:last-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:last\:col-gap-1:last-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:last\:col-gap-2:last-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:last\:col-gap-3:last-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:last\:col-gap-4:last-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:last\:col-gap-5:last-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:last\:col-gap-6:last-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:last\:col-gap-8:last-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:last\:col-gap-10:last-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:last\:col-gap-12:last-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:last\:col-gap-14:last-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:last\:col-gap-16:last-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:last\:col-gap-20:last-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:last\:col-gap-24:last-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:last\:col-gap-32:last-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:last\:col-gap-40:last-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:last\:col-gap-48:last-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:last\:col-gap-56:last-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:last\:col-gap-64:last-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:last\:col-gap-px:last-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:last\:gap-x-0:last-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .sm\:last\:gap-x-1:last-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .sm\:last\:gap-x-2:last-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:last\:gap-x-3:last-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:last\:gap-x-4:last-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .sm\:last\:gap-x-5:last-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:last\:gap-x-6:last-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:last\:gap-x-8:last-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:last\:gap-x-10:last-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .sm\:last\:gap-x-12:last-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .sm\:last\:gap-x-14:last-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .sm\:last\:gap-x-16:last-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .sm\:last\:gap-x-20:last-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:last\:gap-x-24:last-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .sm\:last\:gap-x-32:last-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .sm\:last\:gap-x-40:last-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .sm\:last\:gap-x-48:last-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .sm\:last\:gap-x-56:last-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .sm\:last\:gap-x-64:last-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .sm\:last\:gap-x-px:last-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .sm\:last\:row-gap-0:last-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:last\:row-gap-1:last-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:last\:row-gap-2:last-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:last\:row-gap-3:last-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:last\:row-gap-4:last-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:last\:row-gap-5:last-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:last\:row-gap-6:last-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:last\:row-gap-8:last-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:last\:row-gap-10:last-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:last\:row-gap-12:last-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:last\:row-gap-14:last-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:last\:row-gap-16:last-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:last\:row-gap-20:last-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:last\:row-gap-24:last-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:last\:row-gap-32:last-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:last\:row-gap-40:last-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:last\:row-gap-48:last-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:last\:row-gap-56:last-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:last\:row-gap-64:last-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:last\:row-gap-px:last-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:last\:gap-y-0:last-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .sm\:last\:gap-y-1:last-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .sm\:last\:gap-y-2:last-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .sm\:last\:gap-y-3:last-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .sm\:last\:gap-y-4:last-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .sm\:last\:gap-y-5:last-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .sm\:last\:gap-y-6:last-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .sm\:last\:gap-y-8:last-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .sm\:last\:gap-y-10:last-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .sm\:last\:gap-y-12:last-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .sm\:last\:gap-y-14:last-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .sm\:last\:gap-y-16:last-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .sm\:last\:gap-y-20:last-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .sm\:last\:gap-y-24:last-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .sm\:last\:gap-y-32:last-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .sm\:last\:gap-y-40:last-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:last\:gap-y-48:last-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .sm\:last\:gap-y-56:last-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .sm\:last\:gap-y-64:last-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .sm\:last\:gap-y-px:last-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .sm\:grid-flow-row{
    grid-auto-flow: row;
  }

  .sm\:grid-flow-col{
    grid-auto-flow: column;
  }

  .sm\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .sm\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .sm\:hover\:grid-flow-row:hover{
    grid-auto-flow: row;
  }

  .sm\:hover\:grid-flow-col:hover{
    grid-auto-flow: column;
  }

  .sm\:hover\:grid-flow-row-dense:hover{
    grid-auto-flow: row dense;
  }

  .sm\:hover\:grid-flow-col-dense:hover{
    grid-auto-flow: column dense;
  }

  .sm\:focus\:grid-flow-row:focus{
    grid-auto-flow: row;
  }

  .sm\:focus\:grid-flow-col:focus{
    grid-auto-flow: column;
  }

  .sm\:focus\:grid-flow-row-dense:focus{
    grid-auto-flow: row dense;
  }

  .sm\:focus\:grid-flow-col-dense:focus{
    grid-auto-flow: column dense;
  }

  .sm\:active\:grid-flow-row:active{
    grid-auto-flow: row;
  }

  .sm\:active\:grid-flow-col:active{
    grid-auto-flow: column;
  }

  .sm\:active\:grid-flow-row-dense:active{
    grid-auto-flow: row dense;
  }

  .sm\:active\:grid-flow-col-dense:active{
    grid-auto-flow: column dense;
  }

  .sm\:first\:grid-flow-row:first-child{
    grid-auto-flow: row;
  }

  .sm\:first\:grid-flow-col:first-child{
    grid-auto-flow: column;
  }

  .sm\:first\:grid-flow-row-dense:first-child{
    grid-auto-flow: row dense;
  }

  .sm\:first\:grid-flow-col-dense:first-child{
    grid-auto-flow: column dense;
  }

  .sm\:last\:grid-flow-row:last-child{
    grid-auto-flow: row;
  }

  .sm\:last\:grid-flow-col:last-child{
    grid-auto-flow: column;
  }

  .sm\:last\:grid-flow-row-dense:last-child{
    grid-auto-flow: row dense;
  }

  .sm\:last\:grid-flow-col-dense:last-child{
    grid-auto-flow: column dense;
  }

  .sm\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sm\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .sm\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .sm\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .sm\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .sm\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .sm\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .sm\:grid-cols-none{
    grid-template-columns: none;
  }

  .sm\:hover\:grid-cols-1:hover{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-2:hover{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-3:hover{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-4:hover{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-5:hover{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-6:hover{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-7:hover{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-8:hover{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-9:hover{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-10:hover{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-11:hover{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-12:hover{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .sm\:hover\:grid-cols-none:hover{
    grid-template-columns: none;
  }

  .sm\:focus\:grid-cols-1:focus{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-2:focus{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-3:focus{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-4:focus{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-5:focus{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-6:focus{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-7:focus{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-8:focus{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-9:focus{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-10:focus{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-11:focus{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-12:focus{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .sm\:focus\:grid-cols-none:focus{
    grid-template-columns: none;
  }

  .sm\:active\:grid-cols-1:active{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-2:active{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-3:active{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-4:active{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-5:active{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-6:active{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-7:active{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-8:active{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-9:active{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-10:active{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-11:active{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-12:active{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .sm\:active\:grid-cols-none:active{
    grid-template-columns: none;
  }

  .sm\:first\:grid-cols-1:first-child{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-2:first-child{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-3:first-child{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-4:first-child{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-5:first-child{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-6:first-child{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-7:first-child{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-8:first-child{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-9:first-child{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-10:first-child{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-11:first-child{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-12:first-child{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .sm\:first\:grid-cols-none:first-child{
    grid-template-columns: none;
  }

  .sm\:last\:grid-cols-1:last-child{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-2:last-child{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-3:last-child{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-4:last-child{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-5:last-child{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-6:last-child{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-7:last-child{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-8:last-child{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-9:last-child{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-10:last-child{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-11:last-child{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-12:last-child{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .sm\:last\:grid-cols-none:last-child{
    grid-template-columns: none;
  }

  .sm\:col-auto{
    grid-column: auto;
  }

  .sm\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .sm\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .sm\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .sm\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .sm\:col-span-5{
    grid-column: span 5 / span 5;
  }

  .sm\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .sm\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .sm\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .sm\:col-span-9{
    grid-column: span 9 / span 9;
  }

  .sm\:col-span-10{
    grid-column: span 10 / span 10;
  }

  .sm\:col-span-11{
    grid-column: span 11 / span 11;
  }

  .sm\:col-span-12{
    grid-column: span 12 / span 12;
  }

  .sm\:hover\:col-auto:hover{
    grid-column: auto;
  }

  .sm\:hover\:col-span-1:hover{
    grid-column: span 1 / span 1;
  }

  .sm\:hover\:col-span-2:hover{
    grid-column: span 2 / span 2;
  }

  .sm\:hover\:col-span-3:hover{
    grid-column: span 3 / span 3;
  }

  .sm\:hover\:col-span-4:hover{
    grid-column: span 4 / span 4;
  }

  .sm\:hover\:col-span-5:hover{
    grid-column: span 5 / span 5;
  }

  .sm\:hover\:col-span-6:hover{
    grid-column: span 6 / span 6;
  }

  .sm\:hover\:col-span-7:hover{
    grid-column: span 7 / span 7;
  }

  .sm\:hover\:col-span-8:hover{
    grid-column: span 8 / span 8;
  }

  .sm\:hover\:col-span-9:hover{
    grid-column: span 9 / span 9;
  }

  .sm\:hover\:col-span-10:hover{
    grid-column: span 10 / span 10;
  }

  .sm\:hover\:col-span-11:hover{
    grid-column: span 11 / span 11;
  }

  .sm\:hover\:col-span-12:hover{
    grid-column: span 12 / span 12;
  }

  .sm\:focus\:col-auto:focus{
    grid-column: auto;
  }

  .sm\:focus\:col-span-1:focus{
    grid-column: span 1 / span 1;
  }

  .sm\:focus\:col-span-2:focus{
    grid-column: span 2 / span 2;
  }

  .sm\:focus\:col-span-3:focus{
    grid-column: span 3 / span 3;
  }

  .sm\:focus\:col-span-4:focus{
    grid-column: span 4 / span 4;
  }

  .sm\:focus\:col-span-5:focus{
    grid-column: span 5 / span 5;
  }

  .sm\:focus\:col-span-6:focus{
    grid-column: span 6 / span 6;
  }

  .sm\:focus\:col-span-7:focus{
    grid-column: span 7 / span 7;
  }

  .sm\:focus\:col-span-8:focus{
    grid-column: span 8 / span 8;
  }

  .sm\:focus\:col-span-9:focus{
    grid-column: span 9 / span 9;
  }

  .sm\:focus\:col-span-10:focus{
    grid-column: span 10 / span 10;
  }

  .sm\:focus\:col-span-11:focus{
    grid-column: span 11 / span 11;
  }

  .sm\:focus\:col-span-12:focus{
    grid-column: span 12 / span 12;
  }

  .sm\:active\:col-auto:active{
    grid-column: auto;
  }

  .sm\:active\:col-span-1:active{
    grid-column: span 1 / span 1;
  }

  .sm\:active\:col-span-2:active{
    grid-column: span 2 / span 2;
  }

  .sm\:active\:col-span-3:active{
    grid-column: span 3 / span 3;
  }

  .sm\:active\:col-span-4:active{
    grid-column: span 4 / span 4;
  }

  .sm\:active\:col-span-5:active{
    grid-column: span 5 / span 5;
  }

  .sm\:active\:col-span-6:active{
    grid-column: span 6 / span 6;
  }

  .sm\:active\:col-span-7:active{
    grid-column: span 7 / span 7;
  }

  .sm\:active\:col-span-8:active{
    grid-column: span 8 / span 8;
  }

  .sm\:active\:col-span-9:active{
    grid-column: span 9 / span 9;
  }

  .sm\:active\:col-span-10:active{
    grid-column: span 10 / span 10;
  }

  .sm\:active\:col-span-11:active{
    grid-column: span 11 / span 11;
  }

  .sm\:active\:col-span-12:active{
    grid-column: span 12 / span 12;
  }

  .sm\:first\:col-auto:first-child{
    grid-column: auto;
  }

  .sm\:first\:col-span-1:first-child{
    grid-column: span 1 / span 1;
  }

  .sm\:first\:col-span-2:first-child{
    grid-column: span 2 / span 2;
  }

  .sm\:first\:col-span-3:first-child{
    grid-column: span 3 / span 3;
  }

  .sm\:first\:col-span-4:first-child{
    grid-column: span 4 / span 4;
  }

  .sm\:first\:col-span-5:first-child{
    grid-column: span 5 / span 5;
  }

  .sm\:first\:col-span-6:first-child{
    grid-column: span 6 / span 6;
  }

  .sm\:first\:col-span-7:first-child{
    grid-column: span 7 / span 7;
  }

  .sm\:first\:col-span-8:first-child{
    grid-column: span 8 / span 8;
  }

  .sm\:first\:col-span-9:first-child{
    grid-column: span 9 / span 9;
  }

  .sm\:first\:col-span-10:first-child{
    grid-column: span 10 / span 10;
  }

  .sm\:first\:col-span-11:first-child{
    grid-column: span 11 / span 11;
  }

  .sm\:first\:col-span-12:first-child{
    grid-column: span 12 / span 12;
  }

  .sm\:last\:col-auto:last-child{
    grid-column: auto;
  }

  .sm\:last\:col-span-1:last-child{
    grid-column: span 1 / span 1;
  }

  .sm\:last\:col-span-2:last-child{
    grid-column: span 2 / span 2;
  }

  .sm\:last\:col-span-3:last-child{
    grid-column: span 3 / span 3;
  }

  .sm\:last\:col-span-4:last-child{
    grid-column: span 4 / span 4;
  }

  .sm\:last\:col-span-5:last-child{
    grid-column: span 5 / span 5;
  }

  .sm\:last\:col-span-6:last-child{
    grid-column: span 6 / span 6;
  }

  .sm\:last\:col-span-7:last-child{
    grid-column: span 7 / span 7;
  }

  .sm\:last\:col-span-8:last-child{
    grid-column: span 8 / span 8;
  }

  .sm\:last\:col-span-9:last-child{
    grid-column: span 9 / span 9;
  }

  .sm\:last\:col-span-10:last-child{
    grid-column: span 10 / span 10;
  }

  .sm\:last\:col-span-11:last-child{
    grid-column: span 11 / span 11;
  }

  .sm\:last\:col-span-12:last-child{
    grid-column: span 12 / span 12;
  }

  .sm\:col-start-1{
    grid-column-start: 1;
  }

  .sm\:col-start-2{
    grid-column-start: 2;
  }

  .sm\:col-start-3{
    grid-column-start: 3;
  }

  .sm\:col-start-4{
    grid-column-start: 4;
  }

  .sm\:col-start-5{
    grid-column-start: 5;
  }

  .sm\:col-start-6{
    grid-column-start: 6;
  }

  .sm\:col-start-7{
    grid-column-start: 7;
  }

  .sm\:col-start-8{
    grid-column-start: 8;
  }

  .sm\:col-start-9{
    grid-column-start: 9;
  }

  .sm\:col-start-10{
    grid-column-start: 10;
  }

  .sm\:col-start-11{
    grid-column-start: 11;
  }

  .sm\:col-start-12{
    grid-column-start: 12;
  }

  .sm\:col-start-13{
    grid-column-start: 13;
  }

  .sm\:col-start-auto{
    grid-column-start: auto;
  }

  .sm\:hover\:col-start-1:hover{
    grid-column-start: 1;
  }

  .sm\:hover\:col-start-2:hover{
    grid-column-start: 2;
  }

  .sm\:hover\:col-start-3:hover{
    grid-column-start: 3;
  }

  .sm\:hover\:col-start-4:hover{
    grid-column-start: 4;
  }

  .sm\:hover\:col-start-5:hover{
    grid-column-start: 5;
  }

  .sm\:hover\:col-start-6:hover{
    grid-column-start: 6;
  }

  .sm\:hover\:col-start-7:hover{
    grid-column-start: 7;
  }

  .sm\:hover\:col-start-8:hover{
    grid-column-start: 8;
  }

  .sm\:hover\:col-start-9:hover{
    grid-column-start: 9;
  }

  .sm\:hover\:col-start-10:hover{
    grid-column-start: 10;
  }

  .sm\:hover\:col-start-11:hover{
    grid-column-start: 11;
  }

  .sm\:hover\:col-start-12:hover{
    grid-column-start: 12;
  }

  .sm\:hover\:col-start-13:hover{
    grid-column-start: 13;
  }

  .sm\:hover\:col-start-auto:hover{
    grid-column-start: auto;
  }

  .sm\:focus\:col-start-1:focus{
    grid-column-start: 1;
  }

  .sm\:focus\:col-start-2:focus{
    grid-column-start: 2;
  }

  .sm\:focus\:col-start-3:focus{
    grid-column-start: 3;
  }

  .sm\:focus\:col-start-4:focus{
    grid-column-start: 4;
  }

  .sm\:focus\:col-start-5:focus{
    grid-column-start: 5;
  }

  .sm\:focus\:col-start-6:focus{
    grid-column-start: 6;
  }

  .sm\:focus\:col-start-7:focus{
    grid-column-start: 7;
  }

  .sm\:focus\:col-start-8:focus{
    grid-column-start: 8;
  }

  .sm\:focus\:col-start-9:focus{
    grid-column-start: 9;
  }

  .sm\:focus\:col-start-10:focus{
    grid-column-start: 10;
  }

  .sm\:focus\:col-start-11:focus{
    grid-column-start: 11;
  }

  .sm\:focus\:col-start-12:focus{
    grid-column-start: 12;
  }

  .sm\:focus\:col-start-13:focus{
    grid-column-start: 13;
  }

  .sm\:focus\:col-start-auto:focus{
    grid-column-start: auto;
  }

  .sm\:active\:col-start-1:active{
    grid-column-start: 1;
  }

  .sm\:active\:col-start-2:active{
    grid-column-start: 2;
  }

  .sm\:active\:col-start-3:active{
    grid-column-start: 3;
  }

  .sm\:active\:col-start-4:active{
    grid-column-start: 4;
  }

  .sm\:active\:col-start-5:active{
    grid-column-start: 5;
  }

  .sm\:active\:col-start-6:active{
    grid-column-start: 6;
  }

  .sm\:active\:col-start-7:active{
    grid-column-start: 7;
  }

  .sm\:active\:col-start-8:active{
    grid-column-start: 8;
  }

  .sm\:active\:col-start-9:active{
    grid-column-start: 9;
  }

  .sm\:active\:col-start-10:active{
    grid-column-start: 10;
  }

  .sm\:active\:col-start-11:active{
    grid-column-start: 11;
  }

  .sm\:active\:col-start-12:active{
    grid-column-start: 12;
  }

  .sm\:active\:col-start-13:active{
    grid-column-start: 13;
  }

  .sm\:active\:col-start-auto:active{
    grid-column-start: auto;
  }

  .sm\:first\:col-start-1:first-child{
    grid-column-start: 1;
  }

  .sm\:first\:col-start-2:first-child{
    grid-column-start: 2;
  }

  .sm\:first\:col-start-3:first-child{
    grid-column-start: 3;
  }

  .sm\:first\:col-start-4:first-child{
    grid-column-start: 4;
  }

  .sm\:first\:col-start-5:first-child{
    grid-column-start: 5;
  }

  .sm\:first\:col-start-6:first-child{
    grid-column-start: 6;
  }

  .sm\:first\:col-start-7:first-child{
    grid-column-start: 7;
  }

  .sm\:first\:col-start-8:first-child{
    grid-column-start: 8;
  }

  .sm\:first\:col-start-9:first-child{
    grid-column-start: 9;
  }

  .sm\:first\:col-start-10:first-child{
    grid-column-start: 10;
  }

  .sm\:first\:col-start-11:first-child{
    grid-column-start: 11;
  }

  .sm\:first\:col-start-12:first-child{
    grid-column-start: 12;
  }

  .sm\:first\:col-start-13:first-child{
    grid-column-start: 13;
  }

  .sm\:first\:col-start-auto:first-child{
    grid-column-start: auto;
  }

  .sm\:last\:col-start-1:last-child{
    grid-column-start: 1;
  }

  .sm\:last\:col-start-2:last-child{
    grid-column-start: 2;
  }

  .sm\:last\:col-start-3:last-child{
    grid-column-start: 3;
  }

  .sm\:last\:col-start-4:last-child{
    grid-column-start: 4;
  }

  .sm\:last\:col-start-5:last-child{
    grid-column-start: 5;
  }

  .sm\:last\:col-start-6:last-child{
    grid-column-start: 6;
  }

  .sm\:last\:col-start-7:last-child{
    grid-column-start: 7;
  }

  .sm\:last\:col-start-8:last-child{
    grid-column-start: 8;
  }

  .sm\:last\:col-start-9:last-child{
    grid-column-start: 9;
  }

  .sm\:last\:col-start-10:last-child{
    grid-column-start: 10;
  }

  .sm\:last\:col-start-11:last-child{
    grid-column-start: 11;
  }

  .sm\:last\:col-start-12:last-child{
    grid-column-start: 12;
  }

  .sm\:last\:col-start-13:last-child{
    grid-column-start: 13;
  }

  .sm\:last\:col-start-auto:last-child{
    grid-column-start: auto;
  }

  .sm\:col-end-1{
    grid-column-end: 1;
  }

  .sm\:col-end-2{
    grid-column-end: 2;
  }

  .sm\:col-end-3{
    grid-column-end: 3;
  }

  .sm\:col-end-4{
    grid-column-end: 4;
  }

  .sm\:col-end-5{
    grid-column-end: 5;
  }

  .sm\:col-end-6{
    grid-column-end: 6;
  }

  .sm\:col-end-7{
    grid-column-end: 7;
  }

  .sm\:col-end-8{
    grid-column-end: 8;
  }

  .sm\:col-end-9{
    grid-column-end: 9;
  }

  .sm\:col-end-10{
    grid-column-end: 10;
  }

  .sm\:col-end-11{
    grid-column-end: 11;
  }

  .sm\:col-end-12{
    grid-column-end: 12;
  }

  .sm\:col-end-13{
    grid-column-end: 13;
  }

  .sm\:col-end-auto{
    grid-column-end: auto;
  }

  .sm\:hover\:col-end-1:hover{
    grid-column-end: 1;
  }

  .sm\:hover\:col-end-2:hover{
    grid-column-end: 2;
  }

  .sm\:hover\:col-end-3:hover{
    grid-column-end: 3;
  }

  .sm\:hover\:col-end-4:hover{
    grid-column-end: 4;
  }

  .sm\:hover\:col-end-5:hover{
    grid-column-end: 5;
  }

  .sm\:hover\:col-end-6:hover{
    grid-column-end: 6;
  }

  .sm\:hover\:col-end-7:hover{
    grid-column-end: 7;
  }

  .sm\:hover\:col-end-8:hover{
    grid-column-end: 8;
  }

  .sm\:hover\:col-end-9:hover{
    grid-column-end: 9;
  }

  .sm\:hover\:col-end-10:hover{
    grid-column-end: 10;
  }

  .sm\:hover\:col-end-11:hover{
    grid-column-end: 11;
  }

  .sm\:hover\:col-end-12:hover{
    grid-column-end: 12;
  }

  .sm\:hover\:col-end-13:hover{
    grid-column-end: 13;
  }

  .sm\:hover\:col-end-auto:hover{
    grid-column-end: auto;
  }

  .sm\:focus\:col-end-1:focus{
    grid-column-end: 1;
  }

  .sm\:focus\:col-end-2:focus{
    grid-column-end: 2;
  }

  .sm\:focus\:col-end-3:focus{
    grid-column-end: 3;
  }

  .sm\:focus\:col-end-4:focus{
    grid-column-end: 4;
  }

  .sm\:focus\:col-end-5:focus{
    grid-column-end: 5;
  }

  .sm\:focus\:col-end-6:focus{
    grid-column-end: 6;
  }

  .sm\:focus\:col-end-7:focus{
    grid-column-end: 7;
  }

  .sm\:focus\:col-end-8:focus{
    grid-column-end: 8;
  }

  .sm\:focus\:col-end-9:focus{
    grid-column-end: 9;
  }

  .sm\:focus\:col-end-10:focus{
    grid-column-end: 10;
  }

  .sm\:focus\:col-end-11:focus{
    grid-column-end: 11;
  }

  .sm\:focus\:col-end-12:focus{
    grid-column-end: 12;
  }

  .sm\:focus\:col-end-13:focus{
    grid-column-end: 13;
  }

  .sm\:focus\:col-end-auto:focus{
    grid-column-end: auto;
  }

  .sm\:active\:col-end-1:active{
    grid-column-end: 1;
  }

  .sm\:active\:col-end-2:active{
    grid-column-end: 2;
  }

  .sm\:active\:col-end-3:active{
    grid-column-end: 3;
  }

  .sm\:active\:col-end-4:active{
    grid-column-end: 4;
  }

  .sm\:active\:col-end-5:active{
    grid-column-end: 5;
  }

  .sm\:active\:col-end-6:active{
    grid-column-end: 6;
  }

  .sm\:active\:col-end-7:active{
    grid-column-end: 7;
  }

  .sm\:active\:col-end-8:active{
    grid-column-end: 8;
  }

  .sm\:active\:col-end-9:active{
    grid-column-end: 9;
  }

  .sm\:active\:col-end-10:active{
    grid-column-end: 10;
  }

  .sm\:active\:col-end-11:active{
    grid-column-end: 11;
  }

  .sm\:active\:col-end-12:active{
    grid-column-end: 12;
  }

  .sm\:active\:col-end-13:active{
    grid-column-end: 13;
  }

  .sm\:active\:col-end-auto:active{
    grid-column-end: auto;
  }

  .sm\:first\:col-end-1:first-child{
    grid-column-end: 1;
  }

  .sm\:first\:col-end-2:first-child{
    grid-column-end: 2;
  }

  .sm\:first\:col-end-3:first-child{
    grid-column-end: 3;
  }

  .sm\:first\:col-end-4:first-child{
    grid-column-end: 4;
  }

  .sm\:first\:col-end-5:first-child{
    grid-column-end: 5;
  }

  .sm\:first\:col-end-6:first-child{
    grid-column-end: 6;
  }

  .sm\:first\:col-end-7:first-child{
    grid-column-end: 7;
  }

  .sm\:first\:col-end-8:first-child{
    grid-column-end: 8;
  }

  .sm\:first\:col-end-9:first-child{
    grid-column-end: 9;
  }

  .sm\:first\:col-end-10:first-child{
    grid-column-end: 10;
  }

  .sm\:first\:col-end-11:first-child{
    grid-column-end: 11;
  }

  .sm\:first\:col-end-12:first-child{
    grid-column-end: 12;
  }

  .sm\:first\:col-end-13:first-child{
    grid-column-end: 13;
  }

  .sm\:first\:col-end-auto:first-child{
    grid-column-end: auto;
  }

  .sm\:last\:col-end-1:last-child{
    grid-column-end: 1;
  }

  .sm\:last\:col-end-2:last-child{
    grid-column-end: 2;
  }

  .sm\:last\:col-end-3:last-child{
    grid-column-end: 3;
  }

  .sm\:last\:col-end-4:last-child{
    grid-column-end: 4;
  }

  .sm\:last\:col-end-5:last-child{
    grid-column-end: 5;
  }

  .sm\:last\:col-end-6:last-child{
    grid-column-end: 6;
  }

  .sm\:last\:col-end-7:last-child{
    grid-column-end: 7;
  }

  .sm\:last\:col-end-8:last-child{
    grid-column-end: 8;
  }

  .sm\:last\:col-end-9:last-child{
    grid-column-end: 9;
  }

  .sm\:last\:col-end-10:last-child{
    grid-column-end: 10;
  }

  .sm\:last\:col-end-11:last-child{
    grid-column-end: 11;
  }

  .sm\:last\:col-end-12:last-child{
    grid-column-end: 12;
  }

  .sm\:last\:col-end-13:last-child{
    grid-column-end: 13;
  }

  .sm\:last\:col-end-auto:last-child{
    grid-column-end: auto;
  }

  .sm\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .sm\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .sm\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .sm\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .sm\:grid-rows-none{
    grid-template-rows: none;
  }

  .sm\:hover\:grid-rows-1:hover{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .sm\:hover\:grid-rows-2:hover{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .sm\:hover\:grid-rows-3:hover{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .sm\:hover\:grid-rows-4:hover{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .sm\:hover\:grid-rows-5:hover{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .sm\:hover\:grid-rows-6:hover{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .sm\:hover\:grid-rows-none:hover{
    grid-template-rows: none;
  }

  .sm\:focus\:grid-rows-1:focus{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .sm\:focus\:grid-rows-2:focus{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .sm\:focus\:grid-rows-3:focus{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .sm\:focus\:grid-rows-4:focus{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .sm\:focus\:grid-rows-5:focus{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .sm\:focus\:grid-rows-6:focus{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .sm\:focus\:grid-rows-none:focus{
    grid-template-rows: none;
  }

  .sm\:active\:grid-rows-1:active{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .sm\:active\:grid-rows-2:active{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .sm\:active\:grid-rows-3:active{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .sm\:active\:grid-rows-4:active{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .sm\:active\:grid-rows-5:active{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .sm\:active\:grid-rows-6:active{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .sm\:active\:grid-rows-none:active{
    grid-template-rows: none;
  }

  .sm\:first\:grid-rows-1:first-child{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .sm\:first\:grid-rows-2:first-child{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .sm\:first\:grid-rows-3:first-child{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .sm\:first\:grid-rows-4:first-child{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .sm\:first\:grid-rows-5:first-child{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .sm\:first\:grid-rows-6:first-child{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .sm\:first\:grid-rows-none:first-child{
    grid-template-rows: none;
  }

  .sm\:last\:grid-rows-1:last-child{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .sm\:last\:grid-rows-2:last-child{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .sm\:last\:grid-rows-3:last-child{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .sm\:last\:grid-rows-4:last-child{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .sm\:last\:grid-rows-5:last-child{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .sm\:last\:grid-rows-6:last-child{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .sm\:last\:grid-rows-none:last-child{
    grid-template-rows: none;
  }

  .sm\:row-auto{
    grid-row: auto;
  }

  .sm\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .sm\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .sm\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .sm\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .sm\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .sm\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .sm\:hover\:row-auto:hover{
    grid-row: auto;
  }

  .sm\:hover\:row-span-1:hover{
    grid-row: span 1 / span 1;
  }

  .sm\:hover\:row-span-2:hover{
    grid-row: span 2 / span 2;
  }

  .sm\:hover\:row-span-3:hover{
    grid-row: span 3 / span 3;
  }

  .sm\:hover\:row-span-4:hover{
    grid-row: span 4 / span 4;
  }

  .sm\:hover\:row-span-5:hover{
    grid-row: span 5 / span 5;
  }

  .sm\:hover\:row-span-6:hover{
    grid-row: span 6 / span 6;
  }

  .sm\:focus\:row-auto:focus{
    grid-row: auto;
  }

  .sm\:focus\:row-span-1:focus{
    grid-row: span 1 / span 1;
  }

  .sm\:focus\:row-span-2:focus{
    grid-row: span 2 / span 2;
  }

  .sm\:focus\:row-span-3:focus{
    grid-row: span 3 / span 3;
  }

  .sm\:focus\:row-span-4:focus{
    grid-row: span 4 / span 4;
  }

  .sm\:focus\:row-span-5:focus{
    grid-row: span 5 / span 5;
  }

  .sm\:focus\:row-span-6:focus{
    grid-row: span 6 / span 6;
  }

  .sm\:active\:row-auto:active{
    grid-row: auto;
  }

  .sm\:active\:row-span-1:active{
    grid-row: span 1 / span 1;
  }

  .sm\:active\:row-span-2:active{
    grid-row: span 2 / span 2;
  }

  .sm\:active\:row-span-3:active{
    grid-row: span 3 / span 3;
  }

  .sm\:active\:row-span-4:active{
    grid-row: span 4 / span 4;
  }

  .sm\:active\:row-span-5:active{
    grid-row: span 5 / span 5;
  }

  .sm\:active\:row-span-6:active{
    grid-row: span 6 / span 6;
  }

  .sm\:first\:row-auto:first-child{
    grid-row: auto;
  }

  .sm\:first\:row-span-1:first-child{
    grid-row: span 1 / span 1;
  }

  .sm\:first\:row-span-2:first-child{
    grid-row: span 2 / span 2;
  }

  .sm\:first\:row-span-3:first-child{
    grid-row: span 3 / span 3;
  }

  .sm\:first\:row-span-4:first-child{
    grid-row: span 4 / span 4;
  }

  .sm\:first\:row-span-5:first-child{
    grid-row: span 5 / span 5;
  }

  .sm\:first\:row-span-6:first-child{
    grid-row: span 6 / span 6;
  }

  .sm\:last\:row-auto:last-child{
    grid-row: auto;
  }

  .sm\:last\:row-span-1:last-child{
    grid-row: span 1 / span 1;
  }

  .sm\:last\:row-span-2:last-child{
    grid-row: span 2 / span 2;
  }

  .sm\:last\:row-span-3:last-child{
    grid-row: span 3 / span 3;
  }

  .sm\:last\:row-span-4:last-child{
    grid-row: span 4 / span 4;
  }

  .sm\:last\:row-span-5:last-child{
    grid-row: span 5 / span 5;
  }

  .sm\:last\:row-span-6:last-child{
    grid-row: span 6 / span 6;
  }

  .sm\:row-start-1{
    grid-row-start: 1;
  }

  .sm\:row-start-2{
    grid-row-start: 2;
  }

  .sm\:row-start-3{
    grid-row-start: 3;
  }

  .sm\:row-start-4{
    grid-row-start: 4;
  }

  .sm\:row-start-5{
    grid-row-start: 5;
  }

  .sm\:row-start-6{
    grid-row-start: 6;
  }

  .sm\:row-start-7{
    grid-row-start: 7;
  }

  .sm\:row-start-auto{
    grid-row-start: auto;
  }

  .sm\:hover\:row-start-1:hover{
    grid-row-start: 1;
  }

  .sm\:hover\:row-start-2:hover{
    grid-row-start: 2;
  }

  .sm\:hover\:row-start-3:hover{
    grid-row-start: 3;
  }

  .sm\:hover\:row-start-4:hover{
    grid-row-start: 4;
  }

  .sm\:hover\:row-start-5:hover{
    grid-row-start: 5;
  }

  .sm\:hover\:row-start-6:hover{
    grid-row-start: 6;
  }

  .sm\:hover\:row-start-7:hover{
    grid-row-start: 7;
  }

  .sm\:hover\:row-start-auto:hover{
    grid-row-start: auto;
  }

  .sm\:focus\:row-start-1:focus{
    grid-row-start: 1;
  }

  .sm\:focus\:row-start-2:focus{
    grid-row-start: 2;
  }

  .sm\:focus\:row-start-3:focus{
    grid-row-start: 3;
  }

  .sm\:focus\:row-start-4:focus{
    grid-row-start: 4;
  }

  .sm\:focus\:row-start-5:focus{
    grid-row-start: 5;
  }

  .sm\:focus\:row-start-6:focus{
    grid-row-start: 6;
  }

  .sm\:focus\:row-start-7:focus{
    grid-row-start: 7;
  }

  .sm\:focus\:row-start-auto:focus{
    grid-row-start: auto;
  }

  .sm\:active\:row-start-1:active{
    grid-row-start: 1;
  }

  .sm\:active\:row-start-2:active{
    grid-row-start: 2;
  }

  .sm\:active\:row-start-3:active{
    grid-row-start: 3;
  }

  .sm\:active\:row-start-4:active{
    grid-row-start: 4;
  }

  .sm\:active\:row-start-5:active{
    grid-row-start: 5;
  }

  .sm\:active\:row-start-6:active{
    grid-row-start: 6;
  }

  .sm\:active\:row-start-7:active{
    grid-row-start: 7;
  }

  .sm\:active\:row-start-auto:active{
    grid-row-start: auto;
  }

  .sm\:first\:row-start-1:first-child{
    grid-row-start: 1;
  }

  .sm\:first\:row-start-2:first-child{
    grid-row-start: 2;
  }

  .sm\:first\:row-start-3:first-child{
    grid-row-start: 3;
  }

  .sm\:first\:row-start-4:first-child{
    grid-row-start: 4;
  }

  .sm\:first\:row-start-5:first-child{
    grid-row-start: 5;
  }

  .sm\:first\:row-start-6:first-child{
    grid-row-start: 6;
  }

  .sm\:first\:row-start-7:first-child{
    grid-row-start: 7;
  }

  .sm\:first\:row-start-auto:first-child{
    grid-row-start: auto;
  }

  .sm\:last\:row-start-1:last-child{
    grid-row-start: 1;
  }

  .sm\:last\:row-start-2:last-child{
    grid-row-start: 2;
  }

  .sm\:last\:row-start-3:last-child{
    grid-row-start: 3;
  }

  .sm\:last\:row-start-4:last-child{
    grid-row-start: 4;
  }

  .sm\:last\:row-start-5:last-child{
    grid-row-start: 5;
  }

  .sm\:last\:row-start-6:last-child{
    grid-row-start: 6;
  }

  .sm\:last\:row-start-7:last-child{
    grid-row-start: 7;
  }

  .sm\:last\:row-start-auto:last-child{
    grid-row-start: auto;
  }

  .sm\:row-end-1{
    grid-row-end: 1;
  }

  .sm\:row-end-2{
    grid-row-end: 2;
  }

  .sm\:row-end-3{
    grid-row-end: 3;
  }

  .sm\:row-end-4{
    grid-row-end: 4;
  }

  .sm\:row-end-5{
    grid-row-end: 5;
  }

  .sm\:row-end-6{
    grid-row-end: 6;
  }

  .sm\:row-end-7{
    grid-row-end: 7;
  }

  .sm\:row-end-auto{
    grid-row-end: auto;
  }

  .sm\:hover\:row-end-1:hover{
    grid-row-end: 1;
  }

  .sm\:hover\:row-end-2:hover{
    grid-row-end: 2;
  }

  .sm\:hover\:row-end-3:hover{
    grid-row-end: 3;
  }

  .sm\:hover\:row-end-4:hover{
    grid-row-end: 4;
  }

  .sm\:hover\:row-end-5:hover{
    grid-row-end: 5;
  }

  .sm\:hover\:row-end-6:hover{
    grid-row-end: 6;
  }

  .sm\:hover\:row-end-7:hover{
    grid-row-end: 7;
  }

  .sm\:hover\:row-end-auto:hover{
    grid-row-end: auto;
  }

  .sm\:focus\:row-end-1:focus{
    grid-row-end: 1;
  }

  .sm\:focus\:row-end-2:focus{
    grid-row-end: 2;
  }

  .sm\:focus\:row-end-3:focus{
    grid-row-end: 3;
  }

  .sm\:focus\:row-end-4:focus{
    grid-row-end: 4;
  }

  .sm\:focus\:row-end-5:focus{
    grid-row-end: 5;
  }

  .sm\:focus\:row-end-6:focus{
    grid-row-end: 6;
  }

  .sm\:focus\:row-end-7:focus{
    grid-row-end: 7;
  }

  .sm\:focus\:row-end-auto:focus{
    grid-row-end: auto;
  }

  .sm\:active\:row-end-1:active{
    grid-row-end: 1;
  }

  .sm\:active\:row-end-2:active{
    grid-row-end: 2;
  }

  .sm\:active\:row-end-3:active{
    grid-row-end: 3;
  }

  .sm\:active\:row-end-4:active{
    grid-row-end: 4;
  }

  .sm\:active\:row-end-5:active{
    grid-row-end: 5;
  }

  .sm\:active\:row-end-6:active{
    grid-row-end: 6;
  }

  .sm\:active\:row-end-7:active{
    grid-row-end: 7;
  }

  .sm\:active\:row-end-auto:active{
    grid-row-end: auto;
  }

  .sm\:first\:row-end-1:first-child{
    grid-row-end: 1;
  }

  .sm\:first\:row-end-2:first-child{
    grid-row-end: 2;
  }

  .sm\:first\:row-end-3:first-child{
    grid-row-end: 3;
  }

  .sm\:first\:row-end-4:first-child{
    grid-row-end: 4;
  }

  .sm\:first\:row-end-5:first-child{
    grid-row-end: 5;
  }

  .sm\:first\:row-end-6:first-child{
    grid-row-end: 6;
  }

  .sm\:first\:row-end-7:first-child{
    grid-row-end: 7;
  }

  .sm\:first\:row-end-auto:first-child{
    grid-row-end: auto;
  }

  .sm\:last\:row-end-1:last-child{
    grid-row-end: 1;
  }

  .sm\:last\:row-end-2:last-child{
    grid-row-end: 2;
  }

  .sm\:last\:row-end-3:last-child{
    grid-row-end: 3;
  }

  .sm\:last\:row-end-4:last-child{
    grid-row-end: 4;
  }

  .sm\:last\:row-end-5:last-child{
    grid-row-end: 5;
  }

  .sm\:last\:row-end-6:last-child{
    grid-row-end: 6;
  }

  .sm\:last\:row-end-7:last-child{
    grid-row-end: 7;
  }

  .sm\:last\:row-end-auto:last-child{
    grid-row-end: auto;
  }

  .sm\:transform{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .sm\:transform-none{
    transform: none;
  }

  .sm\:hover\:transform:hover{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .sm\:hover\:transform-none:hover{
    transform: none;
  }

  .sm\:focus\:transform:focus{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .sm\:focus\:transform-none:focus{
    transform: none;
  }

  .sm\:active\:transform:active{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .sm\:active\:transform-none:active{
    transform: none;
  }

  .sm\:first\:transform:first-child{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .sm\:first\:transform-none:first-child{
    transform: none;
  }

  .sm\:last\:transform:last-child{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .sm\:last\:transform-none:last-child{
    transform: none;
  }

  .sm\:origin-center{
    transform-origin: center;
  }

  .sm\:origin-top{
    transform-origin: top;
  }

  .sm\:origin-top-right{
    transform-origin: top right;
  }

  .sm\:origin-right{
    transform-origin: right;
  }

  .sm\:origin-bottom-right{
    transform-origin: bottom right;
  }

  .sm\:origin-bottom{
    transform-origin: bottom;
  }

  .sm\:origin-bottom-left{
    transform-origin: bottom left;
  }

  .sm\:origin-left{
    transform-origin: left;
  }

  .sm\:origin-top-left{
    transform-origin: top left;
  }

  .sm\:hover\:origin-center:hover{
    transform-origin: center;
  }

  .sm\:hover\:origin-top:hover{
    transform-origin: top;
  }

  .sm\:hover\:origin-top-right:hover{
    transform-origin: top right;
  }

  .sm\:hover\:origin-right:hover{
    transform-origin: right;
  }

  .sm\:hover\:origin-bottom-right:hover{
    transform-origin: bottom right;
  }

  .sm\:hover\:origin-bottom:hover{
    transform-origin: bottom;
  }

  .sm\:hover\:origin-bottom-left:hover{
    transform-origin: bottom left;
  }

  .sm\:hover\:origin-left:hover{
    transform-origin: left;
  }

  .sm\:hover\:origin-top-left:hover{
    transform-origin: top left;
  }

  .sm\:focus\:origin-center:focus{
    transform-origin: center;
  }

  .sm\:focus\:origin-top:focus{
    transform-origin: top;
  }

  .sm\:focus\:origin-top-right:focus{
    transform-origin: top right;
  }

  .sm\:focus\:origin-right:focus{
    transform-origin: right;
  }

  .sm\:focus\:origin-bottom-right:focus{
    transform-origin: bottom right;
  }

  .sm\:focus\:origin-bottom:focus{
    transform-origin: bottom;
  }

  .sm\:focus\:origin-bottom-left:focus{
    transform-origin: bottom left;
  }

  .sm\:focus\:origin-left:focus{
    transform-origin: left;
  }

  .sm\:focus\:origin-top-left:focus{
    transform-origin: top left;
  }

  .sm\:active\:origin-center:active{
    transform-origin: center;
  }

  .sm\:active\:origin-top:active{
    transform-origin: top;
  }

  .sm\:active\:origin-top-right:active{
    transform-origin: top right;
  }

  .sm\:active\:origin-right:active{
    transform-origin: right;
  }

  .sm\:active\:origin-bottom-right:active{
    transform-origin: bottom right;
  }

  .sm\:active\:origin-bottom:active{
    transform-origin: bottom;
  }

  .sm\:active\:origin-bottom-left:active{
    transform-origin: bottom left;
  }

  .sm\:active\:origin-left:active{
    transform-origin: left;
  }

  .sm\:active\:origin-top-left:active{
    transform-origin: top left;
  }

  .sm\:first\:origin-center:first-child{
    transform-origin: center;
  }

  .sm\:first\:origin-top:first-child{
    transform-origin: top;
  }

  .sm\:first\:origin-top-right:first-child{
    transform-origin: top right;
  }

  .sm\:first\:origin-right:first-child{
    transform-origin: right;
  }

  .sm\:first\:origin-bottom-right:first-child{
    transform-origin: bottom right;
  }

  .sm\:first\:origin-bottom:first-child{
    transform-origin: bottom;
  }

  .sm\:first\:origin-bottom-left:first-child{
    transform-origin: bottom left;
  }

  .sm\:first\:origin-left:first-child{
    transform-origin: left;
  }

  .sm\:first\:origin-top-left:first-child{
    transform-origin: top left;
  }

  .sm\:last\:origin-center:last-child{
    transform-origin: center;
  }

  .sm\:last\:origin-top:last-child{
    transform-origin: top;
  }

  .sm\:last\:origin-top-right:last-child{
    transform-origin: top right;
  }

  .sm\:last\:origin-right:last-child{
    transform-origin: right;
  }

  .sm\:last\:origin-bottom-right:last-child{
    transform-origin: bottom right;
  }

  .sm\:last\:origin-bottom:last-child{
    transform-origin: bottom;
  }

  .sm\:last\:origin-bottom-left:last-child{
    transform-origin: bottom left;
  }

  .sm\:last\:origin-left:last-child{
    transform-origin: left;
  }

  .sm\:last\:origin-top-left:last-child{
    transform-origin: top left;
  }

  .sm\:scale-0{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .sm\:scale-50{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .sm\:scale-75{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .sm\:scale-90{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .sm\:scale-95{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .sm\:scale-100{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .sm\:scale-105{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .sm\:scale-110{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .sm\:scale-125{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .sm\:scale-150{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .sm\:scale-x-0{
    --transform-scale-x: 0;
  }

  .sm\:scale-x-50{
    --transform-scale-x: .5;
  }

  .sm\:scale-x-75{
    --transform-scale-x: .75;
  }

  .sm\:scale-x-90{
    --transform-scale-x: .9;
  }

  .sm\:scale-x-95{
    --transform-scale-x: .95;
  }

  .sm\:scale-x-100{
    --transform-scale-x: 1;
  }

  .sm\:scale-x-105{
    --transform-scale-x: 1.05;
  }

  .sm\:scale-x-110{
    --transform-scale-x: 1.1;
  }

  .sm\:scale-x-125{
    --transform-scale-x: 1.25;
  }

  .sm\:scale-x-150{
    --transform-scale-x: 1.5;
  }

  .sm\:scale-y-0{
    --transform-scale-y: 0;
  }

  .sm\:scale-y-50{
    --transform-scale-y: .5;
  }

  .sm\:scale-y-75{
    --transform-scale-y: .75;
  }

  .sm\:scale-y-90{
    --transform-scale-y: .9;
  }

  .sm\:scale-y-95{
    --transform-scale-y: .95;
  }

  .sm\:scale-y-100{
    --transform-scale-y: 1;
  }

  .sm\:scale-y-105{
    --transform-scale-y: 1.05;
  }

  .sm\:scale-y-110{
    --transform-scale-y: 1.1;
  }

  .sm\:scale-y-125{
    --transform-scale-y: 1.25;
  }

  .sm\:scale-y-150{
    --transform-scale-y: 1.5;
  }

  .sm\:hover\:scale-0:hover{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .sm\:hover\:scale-50:hover{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .sm\:hover\:scale-75:hover{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .sm\:hover\:scale-90:hover{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .sm\:hover\:scale-95:hover{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .sm\:hover\:scale-100:hover{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .sm\:hover\:scale-105:hover{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .sm\:hover\:scale-110:hover{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .sm\:hover\:scale-125:hover{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .sm\:hover\:scale-150:hover{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .sm\:hover\:scale-x-0:hover{
    --transform-scale-x: 0;
  }

  .sm\:hover\:scale-x-50:hover{
    --transform-scale-x: .5;
  }

  .sm\:hover\:scale-x-75:hover{
    --transform-scale-x: .75;
  }

  .sm\:hover\:scale-x-90:hover{
    --transform-scale-x: .9;
  }

  .sm\:hover\:scale-x-95:hover{
    --transform-scale-x: .95;
  }

  .sm\:hover\:scale-x-100:hover{
    --transform-scale-x: 1;
  }

  .sm\:hover\:scale-x-105:hover{
    --transform-scale-x: 1.05;
  }

  .sm\:hover\:scale-x-110:hover{
    --transform-scale-x: 1.1;
  }

  .sm\:hover\:scale-x-125:hover{
    --transform-scale-x: 1.25;
  }

  .sm\:hover\:scale-x-150:hover{
    --transform-scale-x: 1.5;
  }

  .sm\:hover\:scale-y-0:hover{
    --transform-scale-y: 0;
  }

  .sm\:hover\:scale-y-50:hover{
    --transform-scale-y: .5;
  }

  .sm\:hover\:scale-y-75:hover{
    --transform-scale-y: .75;
  }

  .sm\:hover\:scale-y-90:hover{
    --transform-scale-y: .9;
  }

  .sm\:hover\:scale-y-95:hover{
    --transform-scale-y: .95;
  }

  .sm\:hover\:scale-y-100:hover{
    --transform-scale-y: 1;
  }

  .sm\:hover\:scale-y-105:hover{
    --transform-scale-y: 1.05;
  }

  .sm\:hover\:scale-y-110:hover{
    --transform-scale-y: 1.1;
  }

  .sm\:hover\:scale-y-125:hover{
    --transform-scale-y: 1.25;
  }

  .sm\:hover\:scale-y-150:hover{
    --transform-scale-y: 1.5;
  }

  .sm\:focus\:scale-0:focus{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .sm\:focus\:scale-50:focus{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .sm\:focus\:scale-75:focus{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .sm\:focus\:scale-90:focus{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .sm\:focus\:scale-95:focus{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .sm\:focus\:scale-100:focus{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .sm\:focus\:scale-105:focus{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .sm\:focus\:scale-110:focus{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .sm\:focus\:scale-125:focus{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .sm\:focus\:scale-150:focus{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .sm\:focus\:scale-x-0:focus{
    --transform-scale-x: 0;
  }

  .sm\:focus\:scale-x-50:focus{
    --transform-scale-x: .5;
  }

  .sm\:focus\:scale-x-75:focus{
    --transform-scale-x: .75;
  }

  .sm\:focus\:scale-x-90:focus{
    --transform-scale-x: .9;
  }

  .sm\:focus\:scale-x-95:focus{
    --transform-scale-x: .95;
  }

  .sm\:focus\:scale-x-100:focus{
    --transform-scale-x: 1;
  }

  .sm\:focus\:scale-x-105:focus{
    --transform-scale-x: 1.05;
  }

  .sm\:focus\:scale-x-110:focus{
    --transform-scale-x: 1.1;
  }

  .sm\:focus\:scale-x-125:focus{
    --transform-scale-x: 1.25;
  }

  .sm\:focus\:scale-x-150:focus{
    --transform-scale-x: 1.5;
  }

  .sm\:focus\:scale-y-0:focus{
    --transform-scale-y: 0;
  }

  .sm\:focus\:scale-y-50:focus{
    --transform-scale-y: .5;
  }

  .sm\:focus\:scale-y-75:focus{
    --transform-scale-y: .75;
  }

  .sm\:focus\:scale-y-90:focus{
    --transform-scale-y: .9;
  }

  .sm\:focus\:scale-y-95:focus{
    --transform-scale-y: .95;
  }

  .sm\:focus\:scale-y-100:focus{
    --transform-scale-y: 1;
  }

  .sm\:focus\:scale-y-105:focus{
    --transform-scale-y: 1.05;
  }

  .sm\:focus\:scale-y-110:focus{
    --transform-scale-y: 1.1;
  }

  .sm\:focus\:scale-y-125:focus{
    --transform-scale-y: 1.25;
  }

  .sm\:focus\:scale-y-150:focus{
    --transform-scale-y: 1.5;
  }

  .sm\:active\:scale-0:active{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .sm\:active\:scale-50:active{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .sm\:active\:scale-75:active{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .sm\:active\:scale-90:active{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .sm\:active\:scale-95:active{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .sm\:active\:scale-100:active{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .sm\:active\:scale-105:active{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .sm\:active\:scale-110:active{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .sm\:active\:scale-125:active{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .sm\:active\:scale-150:active{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .sm\:active\:scale-x-0:active{
    --transform-scale-x: 0;
  }

  .sm\:active\:scale-x-50:active{
    --transform-scale-x: .5;
  }

  .sm\:active\:scale-x-75:active{
    --transform-scale-x: .75;
  }

  .sm\:active\:scale-x-90:active{
    --transform-scale-x: .9;
  }

  .sm\:active\:scale-x-95:active{
    --transform-scale-x: .95;
  }

  .sm\:active\:scale-x-100:active{
    --transform-scale-x: 1;
  }

  .sm\:active\:scale-x-105:active{
    --transform-scale-x: 1.05;
  }

  .sm\:active\:scale-x-110:active{
    --transform-scale-x: 1.1;
  }

  .sm\:active\:scale-x-125:active{
    --transform-scale-x: 1.25;
  }

  .sm\:active\:scale-x-150:active{
    --transform-scale-x: 1.5;
  }

  .sm\:active\:scale-y-0:active{
    --transform-scale-y: 0;
  }

  .sm\:active\:scale-y-50:active{
    --transform-scale-y: .5;
  }

  .sm\:active\:scale-y-75:active{
    --transform-scale-y: .75;
  }

  .sm\:active\:scale-y-90:active{
    --transform-scale-y: .9;
  }

  .sm\:active\:scale-y-95:active{
    --transform-scale-y: .95;
  }

  .sm\:active\:scale-y-100:active{
    --transform-scale-y: 1;
  }

  .sm\:active\:scale-y-105:active{
    --transform-scale-y: 1.05;
  }

  .sm\:active\:scale-y-110:active{
    --transform-scale-y: 1.1;
  }

  .sm\:active\:scale-y-125:active{
    --transform-scale-y: 1.25;
  }

  .sm\:active\:scale-y-150:active{
    --transform-scale-y: 1.5;
  }

  .sm\:first\:scale-0:first-child{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .sm\:first\:scale-50:first-child{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .sm\:first\:scale-75:first-child{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .sm\:first\:scale-90:first-child{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .sm\:first\:scale-95:first-child{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .sm\:first\:scale-100:first-child{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .sm\:first\:scale-105:first-child{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .sm\:first\:scale-110:first-child{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .sm\:first\:scale-125:first-child{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .sm\:first\:scale-150:first-child{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .sm\:first\:scale-x-0:first-child{
    --transform-scale-x: 0;
  }

  .sm\:first\:scale-x-50:first-child{
    --transform-scale-x: .5;
  }

  .sm\:first\:scale-x-75:first-child{
    --transform-scale-x: .75;
  }

  .sm\:first\:scale-x-90:first-child{
    --transform-scale-x: .9;
  }

  .sm\:first\:scale-x-95:first-child{
    --transform-scale-x: .95;
  }

  .sm\:first\:scale-x-100:first-child{
    --transform-scale-x: 1;
  }

  .sm\:first\:scale-x-105:first-child{
    --transform-scale-x: 1.05;
  }

  .sm\:first\:scale-x-110:first-child{
    --transform-scale-x: 1.1;
  }

  .sm\:first\:scale-x-125:first-child{
    --transform-scale-x: 1.25;
  }

  .sm\:first\:scale-x-150:first-child{
    --transform-scale-x: 1.5;
  }

  .sm\:first\:scale-y-0:first-child{
    --transform-scale-y: 0;
  }

  .sm\:first\:scale-y-50:first-child{
    --transform-scale-y: .5;
  }

  .sm\:first\:scale-y-75:first-child{
    --transform-scale-y: .75;
  }

  .sm\:first\:scale-y-90:first-child{
    --transform-scale-y: .9;
  }

  .sm\:first\:scale-y-95:first-child{
    --transform-scale-y: .95;
  }

  .sm\:first\:scale-y-100:first-child{
    --transform-scale-y: 1;
  }

  .sm\:first\:scale-y-105:first-child{
    --transform-scale-y: 1.05;
  }

  .sm\:first\:scale-y-110:first-child{
    --transform-scale-y: 1.1;
  }

  .sm\:first\:scale-y-125:first-child{
    --transform-scale-y: 1.25;
  }

  .sm\:first\:scale-y-150:first-child{
    --transform-scale-y: 1.5;
  }

  .sm\:last\:scale-0:last-child{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .sm\:last\:scale-50:last-child{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .sm\:last\:scale-75:last-child{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .sm\:last\:scale-90:last-child{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .sm\:last\:scale-95:last-child{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .sm\:last\:scale-100:last-child{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .sm\:last\:scale-105:last-child{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .sm\:last\:scale-110:last-child{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .sm\:last\:scale-125:last-child{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .sm\:last\:scale-150:last-child{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .sm\:last\:scale-x-0:last-child{
    --transform-scale-x: 0;
  }

  .sm\:last\:scale-x-50:last-child{
    --transform-scale-x: .5;
  }

  .sm\:last\:scale-x-75:last-child{
    --transform-scale-x: .75;
  }

  .sm\:last\:scale-x-90:last-child{
    --transform-scale-x: .9;
  }

  .sm\:last\:scale-x-95:last-child{
    --transform-scale-x: .95;
  }

  .sm\:last\:scale-x-100:last-child{
    --transform-scale-x: 1;
  }

  .sm\:last\:scale-x-105:last-child{
    --transform-scale-x: 1.05;
  }

  .sm\:last\:scale-x-110:last-child{
    --transform-scale-x: 1.1;
  }

  .sm\:last\:scale-x-125:last-child{
    --transform-scale-x: 1.25;
  }

  .sm\:last\:scale-x-150:last-child{
    --transform-scale-x: 1.5;
  }

  .sm\:last\:scale-y-0:last-child{
    --transform-scale-y: 0;
  }

  .sm\:last\:scale-y-50:last-child{
    --transform-scale-y: .5;
  }

  .sm\:last\:scale-y-75:last-child{
    --transform-scale-y: .75;
  }

  .sm\:last\:scale-y-90:last-child{
    --transform-scale-y: .9;
  }

  .sm\:last\:scale-y-95:last-child{
    --transform-scale-y: .95;
  }

  .sm\:last\:scale-y-100:last-child{
    --transform-scale-y: 1;
  }

  .sm\:last\:scale-y-105:last-child{
    --transform-scale-y: 1.05;
  }

  .sm\:last\:scale-y-110:last-child{
    --transform-scale-y: 1.1;
  }

  .sm\:last\:scale-y-125:last-child{
    --transform-scale-y: 1.25;
  }

  .sm\:last\:scale-y-150:last-child{
    --transform-scale-y: 1.5;
  }

  .sm\:rotate-0{
    --transform-rotate: 0;
  }

  .sm\:rotate-45{
    --transform-rotate: 45deg;
  }

  .sm\:rotate-90{
    --transform-rotate: 90deg;
  }

  .sm\:rotate-180{
    --transform-rotate: 180deg;
  }

  .sm\:-rotate-180{
    --transform-rotate: -180deg;
  }

  .sm\:-rotate-90{
    --transform-rotate: -90deg;
  }

  .sm\:-rotate-45{
    --transform-rotate: -45deg;
  }

  .sm\:hover\:rotate-0:hover{
    --transform-rotate: 0;
  }

  .sm\:hover\:rotate-45:hover{
    --transform-rotate: 45deg;
  }

  .sm\:hover\:rotate-90:hover{
    --transform-rotate: 90deg;
  }

  .sm\:hover\:rotate-180:hover{
    --transform-rotate: 180deg;
  }

  .sm\:hover\:-rotate-180:hover{
    --transform-rotate: -180deg;
  }

  .sm\:hover\:-rotate-90:hover{
    --transform-rotate: -90deg;
  }

  .sm\:hover\:-rotate-45:hover{
    --transform-rotate: -45deg;
  }

  .sm\:focus\:rotate-0:focus{
    --transform-rotate: 0;
  }

  .sm\:focus\:rotate-45:focus{
    --transform-rotate: 45deg;
  }

  .sm\:focus\:rotate-90:focus{
    --transform-rotate: 90deg;
  }

  .sm\:focus\:rotate-180:focus{
    --transform-rotate: 180deg;
  }

  .sm\:focus\:-rotate-180:focus{
    --transform-rotate: -180deg;
  }

  .sm\:focus\:-rotate-90:focus{
    --transform-rotate: -90deg;
  }

  .sm\:focus\:-rotate-45:focus{
    --transform-rotate: -45deg;
  }

  .sm\:active\:rotate-0:active{
    --transform-rotate: 0;
  }

  .sm\:active\:rotate-45:active{
    --transform-rotate: 45deg;
  }

  .sm\:active\:rotate-90:active{
    --transform-rotate: 90deg;
  }

  .sm\:active\:rotate-180:active{
    --transform-rotate: 180deg;
  }

  .sm\:active\:-rotate-180:active{
    --transform-rotate: -180deg;
  }

  .sm\:active\:-rotate-90:active{
    --transform-rotate: -90deg;
  }

  .sm\:active\:-rotate-45:active{
    --transform-rotate: -45deg;
  }

  .sm\:first\:rotate-0:first-child{
    --transform-rotate: 0;
  }

  .sm\:first\:rotate-45:first-child{
    --transform-rotate: 45deg;
  }

  .sm\:first\:rotate-90:first-child{
    --transform-rotate: 90deg;
  }

  .sm\:first\:rotate-180:first-child{
    --transform-rotate: 180deg;
  }

  .sm\:first\:-rotate-180:first-child{
    --transform-rotate: -180deg;
  }

  .sm\:first\:-rotate-90:first-child{
    --transform-rotate: -90deg;
  }

  .sm\:first\:-rotate-45:first-child{
    --transform-rotate: -45deg;
  }

  .sm\:last\:rotate-0:last-child{
    --transform-rotate: 0;
  }

  .sm\:last\:rotate-45:last-child{
    --transform-rotate: 45deg;
  }

  .sm\:last\:rotate-90:last-child{
    --transform-rotate: 90deg;
  }

  .sm\:last\:rotate-180:last-child{
    --transform-rotate: 180deg;
  }

  .sm\:last\:-rotate-180:last-child{
    --transform-rotate: -180deg;
  }

  .sm\:last\:-rotate-90:last-child{
    --transform-rotate: -90deg;
  }

  .sm\:last\:-rotate-45:last-child{
    --transform-rotate: -45deg;
  }

  .sm\:translate-x-0{
    --transform-translate-x: 0;
  }

  .sm\:translate-x-1{
    --transform-translate-x: 0.25rem;
  }

  .sm\:translate-x-2{
    --transform-translate-x: 0.5rem;
  }

  .sm\:translate-x-3{
    --transform-translate-x: 0.75rem;
  }

  .sm\:translate-x-4{
    --transform-translate-x: 1rem;
  }

  .sm\:translate-x-5{
    --transform-translate-x: 1.25rem;
  }

  .sm\:translate-x-6{
    --transform-translate-x: 1.5rem;
  }

  .sm\:translate-x-8{
    --transform-translate-x: 2rem;
  }

  .sm\:translate-x-10{
    --transform-translate-x: 2.5rem;
  }

  .sm\:translate-x-12{
    --transform-translate-x: 3rem;
  }

  .sm\:translate-x-14{
    --transform-translate-x: 3.5rem;
  }

  .sm\:translate-x-16{
    --transform-translate-x: 4rem;
  }

  .sm\:translate-x-20{
    --transform-translate-x: 5rem;
  }

  .sm\:translate-x-24{
    --transform-translate-x: 6rem;
  }

  .sm\:translate-x-32{
    --transform-translate-x: 8rem;
  }

  .sm\:translate-x-40{
    --transform-translate-x: 10rem;
  }

  .sm\:translate-x-48{
    --transform-translate-x: 12rem;
  }

  .sm\:translate-x-56{
    --transform-translate-x: 14rem;
  }

  .sm\:translate-x-64{
    --transform-translate-x: 16rem;
  }

  .sm\:translate-x-px{
    --transform-translate-x: 1px;
  }

  .sm\:-translate-x-1{
    --transform-translate-x: -0.25rem;
  }

  .sm\:-translate-x-2{
    --transform-translate-x: -0.5rem;
  }

  .sm\:-translate-x-3{
    --transform-translate-x: -0.75rem;
  }

  .sm\:-translate-x-4{
    --transform-translate-x: -1rem;
  }

  .sm\:-translate-x-5{
    --transform-translate-x: -1.25rem;
  }

  .sm\:-translate-x-6{
    --transform-translate-x: -1.5rem;
  }

  .sm\:-translate-x-8{
    --transform-translate-x: -2rem;
  }

  .sm\:-translate-x-10{
    --transform-translate-x: -2.5rem;
  }

  .sm\:-translate-x-12{
    --transform-translate-x: -3rem;
  }

  .sm\:-translate-x-14{
    --transform-translate-x: -3.5rem;
  }

  .sm\:-translate-x-16{
    --transform-translate-x: -4rem;
  }

  .sm\:-translate-x-20{
    --transform-translate-x: -5rem;
  }

  .sm\:-translate-x-24{
    --transform-translate-x: -6rem;
  }

  .sm\:-translate-x-32{
    --transform-translate-x: -8rem;
  }

  .sm\:-translate-x-40{
    --transform-translate-x: -10rem;
  }

  .sm\:-translate-x-48{
    --transform-translate-x: -12rem;
  }

  .sm\:-translate-x-56{
    --transform-translate-x: -14rem;
  }

  .sm\:-translate-x-64{
    --transform-translate-x: -16rem;
  }

  .sm\:-translate-x-px{
    --transform-translate-x: -1px;
  }

  .sm\:-translate-x-full{
    --transform-translate-x: -100%;
  }

  .sm\:-translate-x-1\/2{
    --transform-translate-x: -50%;
  }

  .sm\:translate-x-1\/2{
    --transform-translate-x: 50%;
  }

  .sm\:translate-x-full{
    --transform-translate-x: 100%;
  }

  .sm\:translate-y-0{
    --transform-translate-y: 0;
  }

  .sm\:translate-y-1{
    --transform-translate-y: 0.25rem;
  }

  .sm\:translate-y-2{
    --transform-translate-y: 0.5rem;
  }

  .sm\:translate-y-3{
    --transform-translate-y: 0.75rem;
  }

  .sm\:translate-y-4{
    --transform-translate-y: 1rem;
  }

  .sm\:translate-y-5{
    --transform-translate-y: 1.25rem;
  }

  .sm\:translate-y-6{
    --transform-translate-y: 1.5rem;
  }

  .sm\:translate-y-8{
    --transform-translate-y: 2rem;
  }

  .sm\:translate-y-10{
    --transform-translate-y: 2.5rem;
  }

  .sm\:translate-y-12{
    --transform-translate-y: 3rem;
  }

  .sm\:translate-y-14{
    --transform-translate-y: 3.5rem;
  }

  .sm\:translate-y-16{
    --transform-translate-y: 4rem;
  }

  .sm\:translate-y-20{
    --transform-translate-y: 5rem;
  }

  .sm\:translate-y-24{
    --transform-translate-y: 6rem;
  }

  .sm\:translate-y-32{
    --transform-translate-y: 8rem;
  }

  .sm\:translate-y-40{
    --transform-translate-y: 10rem;
  }

  .sm\:translate-y-48{
    --transform-translate-y: 12rem;
  }

  .sm\:translate-y-56{
    --transform-translate-y: 14rem;
  }

  .sm\:translate-y-64{
    --transform-translate-y: 16rem;
  }

  .sm\:translate-y-px{
    --transform-translate-y: 1px;
  }

  .sm\:-translate-y-1{
    --transform-translate-y: -0.25rem;
  }

  .sm\:-translate-y-2{
    --transform-translate-y: -0.5rem;
  }

  .sm\:-translate-y-3{
    --transform-translate-y: -0.75rem;
  }

  .sm\:-translate-y-4{
    --transform-translate-y: -1rem;
  }

  .sm\:-translate-y-5{
    --transform-translate-y: -1.25rem;
  }

  .sm\:-translate-y-6{
    --transform-translate-y: -1.5rem;
  }

  .sm\:-translate-y-8{
    --transform-translate-y: -2rem;
  }

  .sm\:-translate-y-10{
    --transform-translate-y: -2.5rem;
  }

  .sm\:-translate-y-12{
    --transform-translate-y: -3rem;
  }

  .sm\:-translate-y-14{
    --transform-translate-y: -3.5rem;
  }

  .sm\:-translate-y-16{
    --transform-translate-y: -4rem;
  }

  .sm\:-translate-y-20{
    --transform-translate-y: -5rem;
  }

  .sm\:-translate-y-24{
    --transform-translate-y: -6rem;
  }

  .sm\:-translate-y-32{
    --transform-translate-y: -8rem;
  }

  .sm\:-translate-y-40{
    --transform-translate-y: -10rem;
  }

  .sm\:-translate-y-48{
    --transform-translate-y: -12rem;
  }

  .sm\:-translate-y-56{
    --transform-translate-y: -14rem;
  }

  .sm\:-translate-y-64{
    --transform-translate-y: -16rem;
  }

  .sm\:-translate-y-px{
    --transform-translate-y: -1px;
  }

  .sm\:-translate-y-full{
    --transform-translate-y: -100%;
  }

  .sm\:-translate-y-1\/2{
    --transform-translate-y: -50%;
  }

  .sm\:translate-y-1\/2{
    --transform-translate-y: 50%;
  }

  .sm\:translate-y-full{
    --transform-translate-y: 100%;
  }

  .sm\:hover\:translate-x-0:hover{
    --transform-translate-x: 0;
  }

  .sm\:hover\:translate-x-1:hover{
    --transform-translate-x: 0.25rem;
  }

  .sm\:hover\:translate-x-2:hover{
    --transform-translate-x: 0.5rem;
  }

  .sm\:hover\:translate-x-3:hover{
    --transform-translate-x: 0.75rem;
  }

  .sm\:hover\:translate-x-4:hover{
    --transform-translate-x: 1rem;
  }

  .sm\:hover\:translate-x-5:hover{
    --transform-translate-x: 1.25rem;
  }

  .sm\:hover\:translate-x-6:hover{
    --transform-translate-x: 1.5rem;
  }

  .sm\:hover\:translate-x-8:hover{
    --transform-translate-x: 2rem;
  }

  .sm\:hover\:translate-x-10:hover{
    --transform-translate-x: 2.5rem;
  }

  .sm\:hover\:translate-x-12:hover{
    --transform-translate-x: 3rem;
  }

  .sm\:hover\:translate-x-14:hover{
    --transform-translate-x: 3.5rem;
  }

  .sm\:hover\:translate-x-16:hover{
    --transform-translate-x: 4rem;
  }

  .sm\:hover\:translate-x-20:hover{
    --transform-translate-x: 5rem;
  }

  .sm\:hover\:translate-x-24:hover{
    --transform-translate-x: 6rem;
  }

  .sm\:hover\:translate-x-32:hover{
    --transform-translate-x: 8rem;
  }

  .sm\:hover\:translate-x-40:hover{
    --transform-translate-x: 10rem;
  }

  .sm\:hover\:translate-x-48:hover{
    --transform-translate-x: 12rem;
  }

  .sm\:hover\:translate-x-56:hover{
    --transform-translate-x: 14rem;
  }

  .sm\:hover\:translate-x-64:hover{
    --transform-translate-x: 16rem;
  }

  .sm\:hover\:translate-x-px:hover{
    --transform-translate-x: 1px;
  }

  .sm\:hover\:-translate-x-1:hover{
    --transform-translate-x: -0.25rem;
  }

  .sm\:hover\:-translate-x-2:hover{
    --transform-translate-x: -0.5rem;
  }

  .sm\:hover\:-translate-x-3:hover{
    --transform-translate-x: -0.75rem;
  }

  .sm\:hover\:-translate-x-4:hover{
    --transform-translate-x: -1rem;
  }

  .sm\:hover\:-translate-x-5:hover{
    --transform-translate-x: -1.25rem;
  }

  .sm\:hover\:-translate-x-6:hover{
    --transform-translate-x: -1.5rem;
  }

  .sm\:hover\:-translate-x-8:hover{
    --transform-translate-x: -2rem;
  }

  .sm\:hover\:-translate-x-10:hover{
    --transform-translate-x: -2.5rem;
  }

  .sm\:hover\:-translate-x-12:hover{
    --transform-translate-x: -3rem;
  }

  .sm\:hover\:-translate-x-14:hover{
    --transform-translate-x: -3.5rem;
  }

  .sm\:hover\:-translate-x-16:hover{
    --transform-translate-x: -4rem;
  }

  .sm\:hover\:-translate-x-20:hover{
    --transform-translate-x: -5rem;
  }

  .sm\:hover\:-translate-x-24:hover{
    --transform-translate-x: -6rem;
  }

  .sm\:hover\:-translate-x-32:hover{
    --transform-translate-x: -8rem;
  }

  .sm\:hover\:-translate-x-40:hover{
    --transform-translate-x: -10rem;
  }

  .sm\:hover\:-translate-x-48:hover{
    --transform-translate-x: -12rem;
  }

  .sm\:hover\:-translate-x-56:hover{
    --transform-translate-x: -14rem;
  }

  .sm\:hover\:-translate-x-64:hover{
    --transform-translate-x: -16rem;
  }

  .sm\:hover\:-translate-x-px:hover{
    --transform-translate-x: -1px;
  }

  .sm\:hover\:-translate-x-full:hover{
    --transform-translate-x: -100%;
  }

  .sm\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x: -50%;
  }

  .sm\:hover\:translate-x-1\/2:hover{
    --transform-translate-x: 50%;
  }

  .sm\:hover\:translate-x-full:hover{
    --transform-translate-x: 100%;
  }

  .sm\:hover\:translate-y-0:hover{
    --transform-translate-y: 0;
  }

  .sm\:hover\:translate-y-1:hover{
    --transform-translate-y: 0.25rem;
  }

  .sm\:hover\:translate-y-2:hover{
    --transform-translate-y: 0.5rem;
  }

  .sm\:hover\:translate-y-3:hover{
    --transform-translate-y: 0.75rem;
  }

  .sm\:hover\:translate-y-4:hover{
    --transform-translate-y: 1rem;
  }

  .sm\:hover\:translate-y-5:hover{
    --transform-translate-y: 1.25rem;
  }

  .sm\:hover\:translate-y-6:hover{
    --transform-translate-y: 1.5rem;
  }

  .sm\:hover\:translate-y-8:hover{
    --transform-translate-y: 2rem;
  }

  .sm\:hover\:translate-y-10:hover{
    --transform-translate-y: 2.5rem;
  }

  .sm\:hover\:translate-y-12:hover{
    --transform-translate-y: 3rem;
  }

  .sm\:hover\:translate-y-14:hover{
    --transform-translate-y: 3.5rem;
  }

  .sm\:hover\:translate-y-16:hover{
    --transform-translate-y: 4rem;
  }

  .sm\:hover\:translate-y-20:hover{
    --transform-translate-y: 5rem;
  }

  .sm\:hover\:translate-y-24:hover{
    --transform-translate-y: 6rem;
  }

  .sm\:hover\:translate-y-32:hover{
    --transform-translate-y: 8rem;
  }

  .sm\:hover\:translate-y-40:hover{
    --transform-translate-y: 10rem;
  }

  .sm\:hover\:translate-y-48:hover{
    --transform-translate-y: 12rem;
  }

  .sm\:hover\:translate-y-56:hover{
    --transform-translate-y: 14rem;
  }

  .sm\:hover\:translate-y-64:hover{
    --transform-translate-y: 16rem;
  }

  .sm\:hover\:translate-y-px:hover{
    --transform-translate-y: 1px;
  }

  .sm\:hover\:-translate-y-1:hover{
    --transform-translate-y: -0.25rem;
  }

  .sm\:hover\:-translate-y-2:hover{
    --transform-translate-y: -0.5rem;
  }

  .sm\:hover\:-translate-y-3:hover{
    --transform-translate-y: -0.75rem;
  }

  .sm\:hover\:-translate-y-4:hover{
    --transform-translate-y: -1rem;
  }

  .sm\:hover\:-translate-y-5:hover{
    --transform-translate-y: -1.25rem;
  }

  .sm\:hover\:-translate-y-6:hover{
    --transform-translate-y: -1.5rem;
  }

  .sm\:hover\:-translate-y-8:hover{
    --transform-translate-y: -2rem;
  }

  .sm\:hover\:-translate-y-10:hover{
    --transform-translate-y: -2.5rem;
  }

  .sm\:hover\:-translate-y-12:hover{
    --transform-translate-y: -3rem;
  }

  .sm\:hover\:-translate-y-14:hover{
    --transform-translate-y: -3.5rem;
  }

  .sm\:hover\:-translate-y-16:hover{
    --transform-translate-y: -4rem;
  }

  .sm\:hover\:-translate-y-20:hover{
    --transform-translate-y: -5rem;
  }

  .sm\:hover\:-translate-y-24:hover{
    --transform-translate-y: -6rem;
  }

  .sm\:hover\:-translate-y-32:hover{
    --transform-translate-y: -8rem;
  }

  .sm\:hover\:-translate-y-40:hover{
    --transform-translate-y: -10rem;
  }

  .sm\:hover\:-translate-y-48:hover{
    --transform-translate-y: -12rem;
  }

  .sm\:hover\:-translate-y-56:hover{
    --transform-translate-y: -14rem;
  }

  .sm\:hover\:-translate-y-64:hover{
    --transform-translate-y: -16rem;
  }

  .sm\:hover\:-translate-y-px:hover{
    --transform-translate-y: -1px;
  }

  .sm\:hover\:-translate-y-full:hover{
    --transform-translate-y: -100%;
  }

  .sm\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y: -50%;
  }

  .sm\:hover\:translate-y-1\/2:hover{
    --transform-translate-y: 50%;
  }

  .sm\:hover\:translate-y-full:hover{
    --transform-translate-y: 100%;
  }

  .sm\:focus\:translate-x-0:focus{
    --transform-translate-x: 0;
  }

  .sm\:focus\:translate-x-1:focus{
    --transform-translate-x: 0.25rem;
  }

  .sm\:focus\:translate-x-2:focus{
    --transform-translate-x: 0.5rem;
  }

  .sm\:focus\:translate-x-3:focus{
    --transform-translate-x: 0.75rem;
  }

  .sm\:focus\:translate-x-4:focus{
    --transform-translate-x: 1rem;
  }

  .sm\:focus\:translate-x-5:focus{
    --transform-translate-x: 1.25rem;
  }

  .sm\:focus\:translate-x-6:focus{
    --transform-translate-x: 1.5rem;
  }

  .sm\:focus\:translate-x-8:focus{
    --transform-translate-x: 2rem;
  }

  .sm\:focus\:translate-x-10:focus{
    --transform-translate-x: 2.5rem;
  }

  .sm\:focus\:translate-x-12:focus{
    --transform-translate-x: 3rem;
  }

  .sm\:focus\:translate-x-14:focus{
    --transform-translate-x: 3.5rem;
  }

  .sm\:focus\:translate-x-16:focus{
    --transform-translate-x: 4rem;
  }

  .sm\:focus\:translate-x-20:focus{
    --transform-translate-x: 5rem;
  }

  .sm\:focus\:translate-x-24:focus{
    --transform-translate-x: 6rem;
  }

  .sm\:focus\:translate-x-32:focus{
    --transform-translate-x: 8rem;
  }

  .sm\:focus\:translate-x-40:focus{
    --transform-translate-x: 10rem;
  }

  .sm\:focus\:translate-x-48:focus{
    --transform-translate-x: 12rem;
  }

  .sm\:focus\:translate-x-56:focus{
    --transform-translate-x: 14rem;
  }

  .sm\:focus\:translate-x-64:focus{
    --transform-translate-x: 16rem;
  }

  .sm\:focus\:translate-x-px:focus{
    --transform-translate-x: 1px;
  }

  .sm\:focus\:-translate-x-1:focus{
    --transform-translate-x: -0.25rem;
  }

  .sm\:focus\:-translate-x-2:focus{
    --transform-translate-x: -0.5rem;
  }

  .sm\:focus\:-translate-x-3:focus{
    --transform-translate-x: -0.75rem;
  }

  .sm\:focus\:-translate-x-4:focus{
    --transform-translate-x: -1rem;
  }

  .sm\:focus\:-translate-x-5:focus{
    --transform-translate-x: -1.25rem;
  }

  .sm\:focus\:-translate-x-6:focus{
    --transform-translate-x: -1.5rem;
  }

  .sm\:focus\:-translate-x-8:focus{
    --transform-translate-x: -2rem;
  }

  .sm\:focus\:-translate-x-10:focus{
    --transform-translate-x: -2.5rem;
  }

  .sm\:focus\:-translate-x-12:focus{
    --transform-translate-x: -3rem;
  }

  .sm\:focus\:-translate-x-14:focus{
    --transform-translate-x: -3.5rem;
  }

  .sm\:focus\:-translate-x-16:focus{
    --transform-translate-x: -4rem;
  }

  .sm\:focus\:-translate-x-20:focus{
    --transform-translate-x: -5rem;
  }

  .sm\:focus\:-translate-x-24:focus{
    --transform-translate-x: -6rem;
  }

  .sm\:focus\:-translate-x-32:focus{
    --transform-translate-x: -8rem;
  }

  .sm\:focus\:-translate-x-40:focus{
    --transform-translate-x: -10rem;
  }

  .sm\:focus\:-translate-x-48:focus{
    --transform-translate-x: -12rem;
  }

  .sm\:focus\:-translate-x-56:focus{
    --transform-translate-x: -14rem;
  }

  .sm\:focus\:-translate-x-64:focus{
    --transform-translate-x: -16rem;
  }

  .sm\:focus\:-translate-x-px:focus{
    --transform-translate-x: -1px;
  }

  .sm\:focus\:-translate-x-full:focus{
    --transform-translate-x: -100%;
  }

  .sm\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x: -50%;
  }

  .sm\:focus\:translate-x-1\/2:focus{
    --transform-translate-x: 50%;
  }

  .sm\:focus\:translate-x-full:focus{
    --transform-translate-x: 100%;
  }

  .sm\:focus\:translate-y-0:focus{
    --transform-translate-y: 0;
  }

  .sm\:focus\:translate-y-1:focus{
    --transform-translate-y: 0.25rem;
  }

  .sm\:focus\:translate-y-2:focus{
    --transform-translate-y: 0.5rem;
  }

  .sm\:focus\:translate-y-3:focus{
    --transform-translate-y: 0.75rem;
  }

  .sm\:focus\:translate-y-4:focus{
    --transform-translate-y: 1rem;
  }

  .sm\:focus\:translate-y-5:focus{
    --transform-translate-y: 1.25rem;
  }

  .sm\:focus\:translate-y-6:focus{
    --transform-translate-y: 1.5rem;
  }

  .sm\:focus\:translate-y-8:focus{
    --transform-translate-y: 2rem;
  }

  .sm\:focus\:translate-y-10:focus{
    --transform-translate-y: 2.5rem;
  }

  .sm\:focus\:translate-y-12:focus{
    --transform-translate-y: 3rem;
  }

  .sm\:focus\:translate-y-14:focus{
    --transform-translate-y: 3.5rem;
  }

  .sm\:focus\:translate-y-16:focus{
    --transform-translate-y: 4rem;
  }

  .sm\:focus\:translate-y-20:focus{
    --transform-translate-y: 5rem;
  }

  .sm\:focus\:translate-y-24:focus{
    --transform-translate-y: 6rem;
  }

  .sm\:focus\:translate-y-32:focus{
    --transform-translate-y: 8rem;
  }

  .sm\:focus\:translate-y-40:focus{
    --transform-translate-y: 10rem;
  }

  .sm\:focus\:translate-y-48:focus{
    --transform-translate-y: 12rem;
  }

  .sm\:focus\:translate-y-56:focus{
    --transform-translate-y: 14rem;
  }

  .sm\:focus\:translate-y-64:focus{
    --transform-translate-y: 16rem;
  }

  .sm\:focus\:translate-y-px:focus{
    --transform-translate-y: 1px;
  }

  .sm\:focus\:-translate-y-1:focus{
    --transform-translate-y: -0.25rem;
  }

  .sm\:focus\:-translate-y-2:focus{
    --transform-translate-y: -0.5rem;
  }

  .sm\:focus\:-translate-y-3:focus{
    --transform-translate-y: -0.75rem;
  }

  .sm\:focus\:-translate-y-4:focus{
    --transform-translate-y: -1rem;
  }

  .sm\:focus\:-translate-y-5:focus{
    --transform-translate-y: -1.25rem;
  }

  .sm\:focus\:-translate-y-6:focus{
    --transform-translate-y: -1.5rem;
  }

  .sm\:focus\:-translate-y-8:focus{
    --transform-translate-y: -2rem;
  }

  .sm\:focus\:-translate-y-10:focus{
    --transform-translate-y: -2.5rem;
  }

  .sm\:focus\:-translate-y-12:focus{
    --transform-translate-y: -3rem;
  }

  .sm\:focus\:-translate-y-14:focus{
    --transform-translate-y: -3.5rem;
  }

  .sm\:focus\:-translate-y-16:focus{
    --transform-translate-y: -4rem;
  }

  .sm\:focus\:-translate-y-20:focus{
    --transform-translate-y: -5rem;
  }

  .sm\:focus\:-translate-y-24:focus{
    --transform-translate-y: -6rem;
  }

  .sm\:focus\:-translate-y-32:focus{
    --transform-translate-y: -8rem;
  }

  .sm\:focus\:-translate-y-40:focus{
    --transform-translate-y: -10rem;
  }

  .sm\:focus\:-translate-y-48:focus{
    --transform-translate-y: -12rem;
  }

  .sm\:focus\:-translate-y-56:focus{
    --transform-translate-y: -14rem;
  }

  .sm\:focus\:-translate-y-64:focus{
    --transform-translate-y: -16rem;
  }

  .sm\:focus\:-translate-y-px:focus{
    --transform-translate-y: -1px;
  }

  .sm\:focus\:-translate-y-full:focus{
    --transform-translate-y: -100%;
  }

  .sm\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y: -50%;
  }

  .sm\:focus\:translate-y-1\/2:focus{
    --transform-translate-y: 50%;
  }

  .sm\:focus\:translate-y-full:focus{
    --transform-translate-y: 100%;
  }

  .sm\:active\:translate-x-0:active{
    --transform-translate-x: 0;
  }

  .sm\:active\:translate-x-1:active{
    --transform-translate-x: 0.25rem;
  }

  .sm\:active\:translate-x-2:active{
    --transform-translate-x: 0.5rem;
  }

  .sm\:active\:translate-x-3:active{
    --transform-translate-x: 0.75rem;
  }

  .sm\:active\:translate-x-4:active{
    --transform-translate-x: 1rem;
  }

  .sm\:active\:translate-x-5:active{
    --transform-translate-x: 1.25rem;
  }

  .sm\:active\:translate-x-6:active{
    --transform-translate-x: 1.5rem;
  }

  .sm\:active\:translate-x-8:active{
    --transform-translate-x: 2rem;
  }

  .sm\:active\:translate-x-10:active{
    --transform-translate-x: 2.5rem;
  }

  .sm\:active\:translate-x-12:active{
    --transform-translate-x: 3rem;
  }

  .sm\:active\:translate-x-14:active{
    --transform-translate-x: 3.5rem;
  }

  .sm\:active\:translate-x-16:active{
    --transform-translate-x: 4rem;
  }

  .sm\:active\:translate-x-20:active{
    --transform-translate-x: 5rem;
  }

  .sm\:active\:translate-x-24:active{
    --transform-translate-x: 6rem;
  }

  .sm\:active\:translate-x-32:active{
    --transform-translate-x: 8rem;
  }

  .sm\:active\:translate-x-40:active{
    --transform-translate-x: 10rem;
  }

  .sm\:active\:translate-x-48:active{
    --transform-translate-x: 12rem;
  }

  .sm\:active\:translate-x-56:active{
    --transform-translate-x: 14rem;
  }

  .sm\:active\:translate-x-64:active{
    --transform-translate-x: 16rem;
  }

  .sm\:active\:translate-x-px:active{
    --transform-translate-x: 1px;
  }

  .sm\:active\:-translate-x-1:active{
    --transform-translate-x: -0.25rem;
  }

  .sm\:active\:-translate-x-2:active{
    --transform-translate-x: -0.5rem;
  }

  .sm\:active\:-translate-x-3:active{
    --transform-translate-x: -0.75rem;
  }

  .sm\:active\:-translate-x-4:active{
    --transform-translate-x: -1rem;
  }

  .sm\:active\:-translate-x-5:active{
    --transform-translate-x: -1.25rem;
  }

  .sm\:active\:-translate-x-6:active{
    --transform-translate-x: -1.5rem;
  }

  .sm\:active\:-translate-x-8:active{
    --transform-translate-x: -2rem;
  }

  .sm\:active\:-translate-x-10:active{
    --transform-translate-x: -2.5rem;
  }

  .sm\:active\:-translate-x-12:active{
    --transform-translate-x: -3rem;
  }

  .sm\:active\:-translate-x-14:active{
    --transform-translate-x: -3.5rem;
  }

  .sm\:active\:-translate-x-16:active{
    --transform-translate-x: -4rem;
  }

  .sm\:active\:-translate-x-20:active{
    --transform-translate-x: -5rem;
  }

  .sm\:active\:-translate-x-24:active{
    --transform-translate-x: -6rem;
  }

  .sm\:active\:-translate-x-32:active{
    --transform-translate-x: -8rem;
  }

  .sm\:active\:-translate-x-40:active{
    --transform-translate-x: -10rem;
  }

  .sm\:active\:-translate-x-48:active{
    --transform-translate-x: -12rem;
  }

  .sm\:active\:-translate-x-56:active{
    --transform-translate-x: -14rem;
  }

  .sm\:active\:-translate-x-64:active{
    --transform-translate-x: -16rem;
  }

  .sm\:active\:-translate-x-px:active{
    --transform-translate-x: -1px;
  }

  .sm\:active\:-translate-x-full:active{
    --transform-translate-x: -100%;
  }

  .sm\:active\:-translate-x-1\/2:active{
    --transform-translate-x: -50%;
  }

  .sm\:active\:translate-x-1\/2:active{
    --transform-translate-x: 50%;
  }

  .sm\:active\:translate-x-full:active{
    --transform-translate-x: 100%;
  }

  .sm\:active\:translate-y-0:active{
    --transform-translate-y: 0;
  }

  .sm\:active\:translate-y-1:active{
    --transform-translate-y: 0.25rem;
  }

  .sm\:active\:translate-y-2:active{
    --transform-translate-y: 0.5rem;
  }

  .sm\:active\:translate-y-3:active{
    --transform-translate-y: 0.75rem;
  }

  .sm\:active\:translate-y-4:active{
    --transform-translate-y: 1rem;
  }

  .sm\:active\:translate-y-5:active{
    --transform-translate-y: 1.25rem;
  }

  .sm\:active\:translate-y-6:active{
    --transform-translate-y: 1.5rem;
  }

  .sm\:active\:translate-y-8:active{
    --transform-translate-y: 2rem;
  }

  .sm\:active\:translate-y-10:active{
    --transform-translate-y: 2.5rem;
  }

  .sm\:active\:translate-y-12:active{
    --transform-translate-y: 3rem;
  }

  .sm\:active\:translate-y-14:active{
    --transform-translate-y: 3.5rem;
  }

  .sm\:active\:translate-y-16:active{
    --transform-translate-y: 4rem;
  }

  .sm\:active\:translate-y-20:active{
    --transform-translate-y: 5rem;
  }

  .sm\:active\:translate-y-24:active{
    --transform-translate-y: 6rem;
  }

  .sm\:active\:translate-y-32:active{
    --transform-translate-y: 8rem;
  }

  .sm\:active\:translate-y-40:active{
    --transform-translate-y: 10rem;
  }

  .sm\:active\:translate-y-48:active{
    --transform-translate-y: 12rem;
  }

  .sm\:active\:translate-y-56:active{
    --transform-translate-y: 14rem;
  }

  .sm\:active\:translate-y-64:active{
    --transform-translate-y: 16rem;
  }

  .sm\:active\:translate-y-px:active{
    --transform-translate-y: 1px;
  }

  .sm\:active\:-translate-y-1:active{
    --transform-translate-y: -0.25rem;
  }

  .sm\:active\:-translate-y-2:active{
    --transform-translate-y: -0.5rem;
  }

  .sm\:active\:-translate-y-3:active{
    --transform-translate-y: -0.75rem;
  }

  .sm\:active\:-translate-y-4:active{
    --transform-translate-y: -1rem;
  }

  .sm\:active\:-translate-y-5:active{
    --transform-translate-y: -1.25rem;
  }

  .sm\:active\:-translate-y-6:active{
    --transform-translate-y: -1.5rem;
  }

  .sm\:active\:-translate-y-8:active{
    --transform-translate-y: -2rem;
  }

  .sm\:active\:-translate-y-10:active{
    --transform-translate-y: -2.5rem;
  }

  .sm\:active\:-translate-y-12:active{
    --transform-translate-y: -3rem;
  }

  .sm\:active\:-translate-y-14:active{
    --transform-translate-y: -3.5rem;
  }

  .sm\:active\:-translate-y-16:active{
    --transform-translate-y: -4rem;
  }

  .sm\:active\:-translate-y-20:active{
    --transform-translate-y: -5rem;
  }

  .sm\:active\:-translate-y-24:active{
    --transform-translate-y: -6rem;
  }

  .sm\:active\:-translate-y-32:active{
    --transform-translate-y: -8rem;
  }

  .sm\:active\:-translate-y-40:active{
    --transform-translate-y: -10rem;
  }

  .sm\:active\:-translate-y-48:active{
    --transform-translate-y: -12rem;
  }

  .sm\:active\:-translate-y-56:active{
    --transform-translate-y: -14rem;
  }

  .sm\:active\:-translate-y-64:active{
    --transform-translate-y: -16rem;
  }

  .sm\:active\:-translate-y-px:active{
    --transform-translate-y: -1px;
  }

  .sm\:active\:-translate-y-full:active{
    --transform-translate-y: -100%;
  }

  .sm\:active\:-translate-y-1\/2:active{
    --transform-translate-y: -50%;
  }

  .sm\:active\:translate-y-1\/2:active{
    --transform-translate-y: 50%;
  }

  .sm\:active\:translate-y-full:active{
    --transform-translate-y: 100%;
  }

  .sm\:first\:translate-x-0:first-child{
    --transform-translate-x: 0;
  }

  .sm\:first\:translate-x-1:first-child{
    --transform-translate-x: 0.25rem;
  }

  .sm\:first\:translate-x-2:first-child{
    --transform-translate-x: 0.5rem;
  }

  .sm\:first\:translate-x-3:first-child{
    --transform-translate-x: 0.75rem;
  }

  .sm\:first\:translate-x-4:first-child{
    --transform-translate-x: 1rem;
  }

  .sm\:first\:translate-x-5:first-child{
    --transform-translate-x: 1.25rem;
  }

  .sm\:first\:translate-x-6:first-child{
    --transform-translate-x: 1.5rem;
  }

  .sm\:first\:translate-x-8:first-child{
    --transform-translate-x: 2rem;
  }

  .sm\:first\:translate-x-10:first-child{
    --transform-translate-x: 2.5rem;
  }

  .sm\:first\:translate-x-12:first-child{
    --transform-translate-x: 3rem;
  }

  .sm\:first\:translate-x-14:first-child{
    --transform-translate-x: 3.5rem;
  }

  .sm\:first\:translate-x-16:first-child{
    --transform-translate-x: 4rem;
  }

  .sm\:first\:translate-x-20:first-child{
    --transform-translate-x: 5rem;
  }

  .sm\:first\:translate-x-24:first-child{
    --transform-translate-x: 6rem;
  }

  .sm\:first\:translate-x-32:first-child{
    --transform-translate-x: 8rem;
  }

  .sm\:first\:translate-x-40:first-child{
    --transform-translate-x: 10rem;
  }

  .sm\:first\:translate-x-48:first-child{
    --transform-translate-x: 12rem;
  }

  .sm\:first\:translate-x-56:first-child{
    --transform-translate-x: 14rem;
  }

  .sm\:first\:translate-x-64:first-child{
    --transform-translate-x: 16rem;
  }

  .sm\:first\:translate-x-px:first-child{
    --transform-translate-x: 1px;
  }

  .sm\:first\:-translate-x-1:first-child{
    --transform-translate-x: -0.25rem;
  }

  .sm\:first\:-translate-x-2:first-child{
    --transform-translate-x: -0.5rem;
  }

  .sm\:first\:-translate-x-3:first-child{
    --transform-translate-x: -0.75rem;
  }

  .sm\:first\:-translate-x-4:first-child{
    --transform-translate-x: -1rem;
  }

  .sm\:first\:-translate-x-5:first-child{
    --transform-translate-x: -1.25rem;
  }

  .sm\:first\:-translate-x-6:first-child{
    --transform-translate-x: -1.5rem;
  }

  .sm\:first\:-translate-x-8:first-child{
    --transform-translate-x: -2rem;
  }

  .sm\:first\:-translate-x-10:first-child{
    --transform-translate-x: -2.5rem;
  }

  .sm\:first\:-translate-x-12:first-child{
    --transform-translate-x: -3rem;
  }

  .sm\:first\:-translate-x-14:first-child{
    --transform-translate-x: -3.5rem;
  }

  .sm\:first\:-translate-x-16:first-child{
    --transform-translate-x: -4rem;
  }

  .sm\:first\:-translate-x-20:first-child{
    --transform-translate-x: -5rem;
  }

  .sm\:first\:-translate-x-24:first-child{
    --transform-translate-x: -6rem;
  }

  .sm\:first\:-translate-x-32:first-child{
    --transform-translate-x: -8rem;
  }

  .sm\:first\:-translate-x-40:first-child{
    --transform-translate-x: -10rem;
  }

  .sm\:first\:-translate-x-48:first-child{
    --transform-translate-x: -12rem;
  }

  .sm\:first\:-translate-x-56:first-child{
    --transform-translate-x: -14rem;
  }

  .sm\:first\:-translate-x-64:first-child{
    --transform-translate-x: -16rem;
  }

  .sm\:first\:-translate-x-px:first-child{
    --transform-translate-x: -1px;
  }

  .sm\:first\:-translate-x-full:first-child{
    --transform-translate-x: -100%;
  }

  .sm\:first\:-translate-x-1\/2:first-child{
    --transform-translate-x: -50%;
  }

  .sm\:first\:translate-x-1\/2:first-child{
    --transform-translate-x: 50%;
  }

  .sm\:first\:translate-x-full:first-child{
    --transform-translate-x: 100%;
  }

  .sm\:first\:translate-y-0:first-child{
    --transform-translate-y: 0;
  }

  .sm\:first\:translate-y-1:first-child{
    --transform-translate-y: 0.25rem;
  }

  .sm\:first\:translate-y-2:first-child{
    --transform-translate-y: 0.5rem;
  }

  .sm\:first\:translate-y-3:first-child{
    --transform-translate-y: 0.75rem;
  }

  .sm\:first\:translate-y-4:first-child{
    --transform-translate-y: 1rem;
  }

  .sm\:first\:translate-y-5:first-child{
    --transform-translate-y: 1.25rem;
  }

  .sm\:first\:translate-y-6:first-child{
    --transform-translate-y: 1.5rem;
  }

  .sm\:first\:translate-y-8:first-child{
    --transform-translate-y: 2rem;
  }

  .sm\:first\:translate-y-10:first-child{
    --transform-translate-y: 2.5rem;
  }

  .sm\:first\:translate-y-12:first-child{
    --transform-translate-y: 3rem;
  }

  .sm\:first\:translate-y-14:first-child{
    --transform-translate-y: 3.5rem;
  }

  .sm\:first\:translate-y-16:first-child{
    --transform-translate-y: 4rem;
  }

  .sm\:first\:translate-y-20:first-child{
    --transform-translate-y: 5rem;
  }

  .sm\:first\:translate-y-24:first-child{
    --transform-translate-y: 6rem;
  }

  .sm\:first\:translate-y-32:first-child{
    --transform-translate-y: 8rem;
  }

  .sm\:first\:translate-y-40:first-child{
    --transform-translate-y: 10rem;
  }

  .sm\:first\:translate-y-48:first-child{
    --transform-translate-y: 12rem;
  }

  .sm\:first\:translate-y-56:first-child{
    --transform-translate-y: 14rem;
  }

  .sm\:first\:translate-y-64:first-child{
    --transform-translate-y: 16rem;
  }

  .sm\:first\:translate-y-px:first-child{
    --transform-translate-y: 1px;
  }

  .sm\:first\:-translate-y-1:first-child{
    --transform-translate-y: -0.25rem;
  }

  .sm\:first\:-translate-y-2:first-child{
    --transform-translate-y: -0.5rem;
  }

  .sm\:first\:-translate-y-3:first-child{
    --transform-translate-y: -0.75rem;
  }

  .sm\:first\:-translate-y-4:first-child{
    --transform-translate-y: -1rem;
  }

  .sm\:first\:-translate-y-5:first-child{
    --transform-translate-y: -1.25rem;
  }

  .sm\:first\:-translate-y-6:first-child{
    --transform-translate-y: -1.5rem;
  }

  .sm\:first\:-translate-y-8:first-child{
    --transform-translate-y: -2rem;
  }

  .sm\:first\:-translate-y-10:first-child{
    --transform-translate-y: -2.5rem;
  }

  .sm\:first\:-translate-y-12:first-child{
    --transform-translate-y: -3rem;
  }

  .sm\:first\:-translate-y-14:first-child{
    --transform-translate-y: -3.5rem;
  }

  .sm\:first\:-translate-y-16:first-child{
    --transform-translate-y: -4rem;
  }

  .sm\:first\:-translate-y-20:first-child{
    --transform-translate-y: -5rem;
  }

  .sm\:first\:-translate-y-24:first-child{
    --transform-translate-y: -6rem;
  }

  .sm\:first\:-translate-y-32:first-child{
    --transform-translate-y: -8rem;
  }

  .sm\:first\:-translate-y-40:first-child{
    --transform-translate-y: -10rem;
  }

  .sm\:first\:-translate-y-48:first-child{
    --transform-translate-y: -12rem;
  }

  .sm\:first\:-translate-y-56:first-child{
    --transform-translate-y: -14rem;
  }

  .sm\:first\:-translate-y-64:first-child{
    --transform-translate-y: -16rem;
  }

  .sm\:first\:-translate-y-px:first-child{
    --transform-translate-y: -1px;
  }

  .sm\:first\:-translate-y-full:first-child{
    --transform-translate-y: -100%;
  }

  .sm\:first\:-translate-y-1\/2:first-child{
    --transform-translate-y: -50%;
  }

  .sm\:first\:translate-y-1\/2:first-child{
    --transform-translate-y: 50%;
  }

  .sm\:first\:translate-y-full:first-child{
    --transform-translate-y: 100%;
  }

  .sm\:last\:translate-x-0:last-child{
    --transform-translate-x: 0;
  }

  .sm\:last\:translate-x-1:last-child{
    --transform-translate-x: 0.25rem;
  }

  .sm\:last\:translate-x-2:last-child{
    --transform-translate-x: 0.5rem;
  }

  .sm\:last\:translate-x-3:last-child{
    --transform-translate-x: 0.75rem;
  }

  .sm\:last\:translate-x-4:last-child{
    --transform-translate-x: 1rem;
  }

  .sm\:last\:translate-x-5:last-child{
    --transform-translate-x: 1.25rem;
  }

  .sm\:last\:translate-x-6:last-child{
    --transform-translate-x: 1.5rem;
  }

  .sm\:last\:translate-x-8:last-child{
    --transform-translate-x: 2rem;
  }

  .sm\:last\:translate-x-10:last-child{
    --transform-translate-x: 2.5rem;
  }

  .sm\:last\:translate-x-12:last-child{
    --transform-translate-x: 3rem;
  }

  .sm\:last\:translate-x-14:last-child{
    --transform-translate-x: 3.5rem;
  }

  .sm\:last\:translate-x-16:last-child{
    --transform-translate-x: 4rem;
  }

  .sm\:last\:translate-x-20:last-child{
    --transform-translate-x: 5rem;
  }

  .sm\:last\:translate-x-24:last-child{
    --transform-translate-x: 6rem;
  }

  .sm\:last\:translate-x-32:last-child{
    --transform-translate-x: 8rem;
  }

  .sm\:last\:translate-x-40:last-child{
    --transform-translate-x: 10rem;
  }

  .sm\:last\:translate-x-48:last-child{
    --transform-translate-x: 12rem;
  }

  .sm\:last\:translate-x-56:last-child{
    --transform-translate-x: 14rem;
  }

  .sm\:last\:translate-x-64:last-child{
    --transform-translate-x: 16rem;
  }

  .sm\:last\:translate-x-px:last-child{
    --transform-translate-x: 1px;
  }

  .sm\:last\:-translate-x-1:last-child{
    --transform-translate-x: -0.25rem;
  }

  .sm\:last\:-translate-x-2:last-child{
    --transform-translate-x: -0.5rem;
  }

  .sm\:last\:-translate-x-3:last-child{
    --transform-translate-x: -0.75rem;
  }

  .sm\:last\:-translate-x-4:last-child{
    --transform-translate-x: -1rem;
  }

  .sm\:last\:-translate-x-5:last-child{
    --transform-translate-x: -1.25rem;
  }

  .sm\:last\:-translate-x-6:last-child{
    --transform-translate-x: -1.5rem;
  }

  .sm\:last\:-translate-x-8:last-child{
    --transform-translate-x: -2rem;
  }

  .sm\:last\:-translate-x-10:last-child{
    --transform-translate-x: -2.5rem;
  }

  .sm\:last\:-translate-x-12:last-child{
    --transform-translate-x: -3rem;
  }

  .sm\:last\:-translate-x-14:last-child{
    --transform-translate-x: -3.5rem;
  }

  .sm\:last\:-translate-x-16:last-child{
    --transform-translate-x: -4rem;
  }

  .sm\:last\:-translate-x-20:last-child{
    --transform-translate-x: -5rem;
  }

  .sm\:last\:-translate-x-24:last-child{
    --transform-translate-x: -6rem;
  }

  .sm\:last\:-translate-x-32:last-child{
    --transform-translate-x: -8rem;
  }

  .sm\:last\:-translate-x-40:last-child{
    --transform-translate-x: -10rem;
  }

  .sm\:last\:-translate-x-48:last-child{
    --transform-translate-x: -12rem;
  }

  .sm\:last\:-translate-x-56:last-child{
    --transform-translate-x: -14rem;
  }

  .sm\:last\:-translate-x-64:last-child{
    --transform-translate-x: -16rem;
  }

  .sm\:last\:-translate-x-px:last-child{
    --transform-translate-x: -1px;
  }

  .sm\:last\:-translate-x-full:last-child{
    --transform-translate-x: -100%;
  }

  .sm\:last\:-translate-x-1\/2:last-child{
    --transform-translate-x: -50%;
  }

  .sm\:last\:translate-x-1\/2:last-child{
    --transform-translate-x: 50%;
  }

  .sm\:last\:translate-x-full:last-child{
    --transform-translate-x: 100%;
  }

  .sm\:last\:translate-y-0:last-child{
    --transform-translate-y: 0;
  }

  .sm\:last\:translate-y-1:last-child{
    --transform-translate-y: 0.25rem;
  }

  .sm\:last\:translate-y-2:last-child{
    --transform-translate-y: 0.5rem;
  }

  .sm\:last\:translate-y-3:last-child{
    --transform-translate-y: 0.75rem;
  }

  .sm\:last\:translate-y-4:last-child{
    --transform-translate-y: 1rem;
  }

  .sm\:last\:translate-y-5:last-child{
    --transform-translate-y: 1.25rem;
  }

  .sm\:last\:translate-y-6:last-child{
    --transform-translate-y: 1.5rem;
  }

  .sm\:last\:translate-y-8:last-child{
    --transform-translate-y: 2rem;
  }

  .sm\:last\:translate-y-10:last-child{
    --transform-translate-y: 2.5rem;
  }

  .sm\:last\:translate-y-12:last-child{
    --transform-translate-y: 3rem;
  }

  .sm\:last\:translate-y-14:last-child{
    --transform-translate-y: 3.5rem;
  }

  .sm\:last\:translate-y-16:last-child{
    --transform-translate-y: 4rem;
  }

  .sm\:last\:translate-y-20:last-child{
    --transform-translate-y: 5rem;
  }

  .sm\:last\:translate-y-24:last-child{
    --transform-translate-y: 6rem;
  }

  .sm\:last\:translate-y-32:last-child{
    --transform-translate-y: 8rem;
  }

  .sm\:last\:translate-y-40:last-child{
    --transform-translate-y: 10rem;
  }

  .sm\:last\:translate-y-48:last-child{
    --transform-translate-y: 12rem;
  }

  .sm\:last\:translate-y-56:last-child{
    --transform-translate-y: 14rem;
  }

  .sm\:last\:translate-y-64:last-child{
    --transform-translate-y: 16rem;
  }

  .sm\:last\:translate-y-px:last-child{
    --transform-translate-y: 1px;
  }

  .sm\:last\:-translate-y-1:last-child{
    --transform-translate-y: -0.25rem;
  }

  .sm\:last\:-translate-y-2:last-child{
    --transform-translate-y: -0.5rem;
  }

  .sm\:last\:-translate-y-3:last-child{
    --transform-translate-y: -0.75rem;
  }

  .sm\:last\:-translate-y-4:last-child{
    --transform-translate-y: -1rem;
  }

  .sm\:last\:-translate-y-5:last-child{
    --transform-translate-y: -1.25rem;
  }

  .sm\:last\:-translate-y-6:last-child{
    --transform-translate-y: -1.5rem;
  }

  .sm\:last\:-translate-y-8:last-child{
    --transform-translate-y: -2rem;
  }

  .sm\:last\:-translate-y-10:last-child{
    --transform-translate-y: -2.5rem;
  }

  .sm\:last\:-translate-y-12:last-child{
    --transform-translate-y: -3rem;
  }

  .sm\:last\:-translate-y-14:last-child{
    --transform-translate-y: -3.5rem;
  }

  .sm\:last\:-translate-y-16:last-child{
    --transform-translate-y: -4rem;
  }

  .sm\:last\:-translate-y-20:last-child{
    --transform-translate-y: -5rem;
  }

  .sm\:last\:-translate-y-24:last-child{
    --transform-translate-y: -6rem;
  }

  .sm\:last\:-translate-y-32:last-child{
    --transform-translate-y: -8rem;
  }

  .sm\:last\:-translate-y-40:last-child{
    --transform-translate-y: -10rem;
  }

  .sm\:last\:-translate-y-48:last-child{
    --transform-translate-y: -12rem;
  }

  .sm\:last\:-translate-y-56:last-child{
    --transform-translate-y: -14rem;
  }

  .sm\:last\:-translate-y-64:last-child{
    --transform-translate-y: -16rem;
  }

  .sm\:last\:-translate-y-px:last-child{
    --transform-translate-y: -1px;
  }

  .sm\:last\:-translate-y-full:last-child{
    --transform-translate-y: -100%;
  }

  .sm\:last\:-translate-y-1\/2:last-child{
    --transform-translate-y: -50%;
  }

  .sm\:last\:translate-y-1\/2:last-child{
    --transform-translate-y: 50%;
  }

  .sm\:last\:translate-y-full:last-child{
    --transform-translate-y: 100%;
  }

  .sm\:skew-x-0{
    --transform-skew-x: 0;
  }

  .sm\:skew-x-3{
    --transform-skew-x: 3deg;
  }

  .sm\:skew-x-6{
    --transform-skew-x: 6deg;
  }

  .sm\:skew-x-12{
    --transform-skew-x: 12deg;
  }

  .sm\:-skew-x-12{
    --transform-skew-x: -12deg;
  }

  .sm\:-skew-x-6{
    --transform-skew-x: -6deg;
  }

  .sm\:-skew-x-3{
    --transform-skew-x: -3deg;
  }

  .sm\:skew-y-0{
    --transform-skew-y: 0;
  }

  .sm\:skew-y-3{
    --transform-skew-y: 3deg;
  }

  .sm\:skew-y-6{
    --transform-skew-y: 6deg;
  }

  .sm\:skew-y-12{
    --transform-skew-y: 12deg;
  }

  .sm\:-skew-y-12{
    --transform-skew-y: -12deg;
  }

  .sm\:-skew-y-6{
    --transform-skew-y: -6deg;
  }

  .sm\:-skew-y-3{
    --transform-skew-y: -3deg;
  }

  .sm\:hover\:skew-x-0:hover{
    --transform-skew-x: 0;
  }

  .sm\:hover\:skew-x-3:hover{
    --transform-skew-x: 3deg;
  }

  .sm\:hover\:skew-x-6:hover{
    --transform-skew-x: 6deg;
  }

  .sm\:hover\:skew-x-12:hover{
    --transform-skew-x: 12deg;
  }

  .sm\:hover\:-skew-x-12:hover{
    --transform-skew-x: -12deg;
  }

  .sm\:hover\:-skew-x-6:hover{
    --transform-skew-x: -6deg;
  }

  .sm\:hover\:-skew-x-3:hover{
    --transform-skew-x: -3deg;
  }

  .sm\:hover\:skew-y-0:hover{
    --transform-skew-y: 0;
  }

  .sm\:hover\:skew-y-3:hover{
    --transform-skew-y: 3deg;
  }

  .sm\:hover\:skew-y-6:hover{
    --transform-skew-y: 6deg;
  }

  .sm\:hover\:skew-y-12:hover{
    --transform-skew-y: 12deg;
  }

  .sm\:hover\:-skew-y-12:hover{
    --transform-skew-y: -12deg;
  }

  .sm\:hover\:-skew-y-6:hover{
    --transform-skew-y: -6deg;
  }

  .sm\:hover\:-skew-y-3:hover{
    --transform-skew-y: -3deg;
  }

  .sm\:focus\:skew-x-0:focus{
    --transform-skew-x: 0;
  }

  .sm\:focus\:skew-x-3:focus{
    --transform-skew-x: 3deg;
  }

  .sm\:focus\:skew-x-6:focus{
    --transform-skew-x: 6deg;
  }

  .sm\:focus\:skew-x-12:focus{
    --transform-skew-x: 12deg;
  }

  .sm\:focus\:-skew-x-12:focus{
    --transform-skew-x: -12deg;
  }

  .sm\:focus\:-skew-x-6:focus{
    --transform-skew-x: -6deg;
  }

  .sm\:focus\:-skew-x-3:focus{
    --transform-skew-x: -3deg;
  }

  .sm\:focus\:skew-y-0:focus{
    --transform-skew-y: 0;
  }

  .sm\:focus\:skew-y-3:focus{
    --transform-skew-y: 3deg;
  }

  .sm\:focus\:skew-y-6:focus{
    --transform-skew-y: 6deg;
  }

  .sm\:focus\:skew-y-12:focus{
    --transform-skew-y: 12deg;
  }

  .sm\:focus\:-skew-y-12:focus{
    --transform-skew-y: -12deg;
  }

  .sm\:focus\:-skew-y-6:focus{
    --transform-skew-y: -6deg;
  }

  .sm\:focus\:-skew-y-3:focus{
    --transform-skew-y: -3deg;
  }

  .sm\:active\:skew-x-0:active{
    --transform-skew-x: 0;
  }

  .sm\:active\:skew-x-3:active{
    --transform-skew-x: 3deg;
  }

  .sm\:active\:skew-x-6:active{
    --transform-skew-x: 6deg;
  }

  .sm\:active\:skew-x-12:active{
    --transform-skew-x: 12deg;
  }

  .sm\:active\:-skew-x-12:active{
    --transform-skew-x: -12deg;
  }

  .sm\:active\:-skew-x-6:active{
    --transform-skew-x: -6deg;
  }

  .sm\:active\:-skew-x-3:active{
    --transform-skew-x: -3deg;
  }

  .sm\:active\:skew-y-0:active{
    --transform-skew-y: 0;
  }

  .sm\:active\:skew-y-3:active{
    --transform-skew-y: 3deg;
  }

  .sm\:active\:skew-y-6:active{
    --transform-skew-y: 6deg;
  }

  .sm\:active\:skew-y-12:active{
    --transform-skew-y: 12deg;
  }

  .sm\:active\:-skew-y-12:active{
    --transform-skew-y: -12deg;
  }

  .sm\:active\:-skew-y-6:active{
    --transform-skew-y: -6deg;
  }

  .sm\:active\:-skew-y-3:active{
    --transform-skew-y: -3deg;
  }

  .sm\:first\:skew-x-0:first-child{
    --transform-skew-x: 0;
  }

  .sm\:first\:skew-x-3:first-child{
    --transform-skew-x: 3deg;
  }

  .sm\:first\:skew-x-6:first-child{
    --transform-skew-x: 6deg;
  }

  .sm\:first\:skew-x-12:first-child{
    --transform-skew-x: 12deg;
  }

  .sm\:first\:-skew-x-12:first-child{
    --transform-skew-x: -12deg;
  }

  .sm\:first\:-skew-x-6:first-child{
    --transform-skew-x: -6deg;
  }

  .sm\:first\:-skew-x-3:first-child{
    --transform-skew-x: -3deg;
  }

  .sm\:first\:skew-y-0:first-child{
    --transform-skew-y: 0;
  }

  .sm\:first\:skew-y-3:first-child{
    --transform-skew-y: 3deg;
  }

  .sm\:first\:skew-y-6:first-child{
    --transform-skew-y: 6deg;
  }

  .sm\:first\:skew-y-12:first-child{
    --transform-skew-y: 12deg;
  }

  .sm\:first\:-skew-y-12:first-child{
    --transform-skew-y: -12deg;
  }

  .sm\:first\:-skew-y-6:first-child{
    --transform-skew-y: -6deg;
  }

  .sm\:first\:-skew-y-3:first-child{
    --transform-skew-y: -3deg;
  }

  .sm\:last\:skew-x-0:last-child{
    --transform-skew-x: 0;
  }

  .sm\:last\:skew-x-3:last-child{
    --transform-skew-x: 3deg;
  }

  .sm\:last\:skew-x-6:last-child{
    --transform-skew-x: 6deg;
  }

  .sm\:last\:skew-x-12:last-child{
    --transform-skew-x: 12deg;
  }

  .sm\:last\:-skew-x-12:last-child{
    --transform-skew-x: -12deg;
  }

  .sm\:last\:-skew-x-6:last-child{
    --transform-skew-x: -6deg;
  }

  .sm\:last\:-skew-x-3:last-child{
    --transform-skew-x: -3deg;
  }

  .sm\:last\:skew-y-0:last-child{
    --transform-skew-y: 0;
  }

  .sm\:last\:skew-y-3:last-child{
    --transform-skew-y: 3deg;
  }

  .sm\:last\:skew-y-6:last-child{
    --transform-skew-y: 6deg;
  }

  .sm\:last\:skew-y-12:last-child{
    --transform-skew-y: 12deg;
  }

  .sm\:last\:-skew-y-12:last-child{
    --transform-skew-y: -12deg;
  }

  .sm\:last\:-skew-y-6:last-child{
    --transform-skew-y: -6deg;
  }

  .sm\:last\:-skew-y-3:last-child{
    --transform-skew-y: -3deg;
  }

  .sm\:transition-none{
    transition-property: none;
  }

  .sm\:transition-all{
    transition-property: all;
  }

  .sm\:transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .sm\:transition-colors{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .sm\:transition-opacity{
    transition-property: opacity;
  }

  .sm\:transition-shadow{
    transition-property: box-shadow;
  }

  .sm\:transition-transform{
    transition-property: transform;
  }

  .sm\:hover\:transition-none:hover{
    transition-property: none;
  }

  .sm\:hover\:transition-all:hover{
    transition-property: all;
  }

  .sm\:hover\:transition:hover{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .sm\:hover\:transition-colors:hover{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .sm\:hover\:transition-opacity:hover{
    transition-property: opacity;
  }

  .sm\:hover\:transition-shadow:hover{
    transition-property: box-shadow;
  }

  .sm\:hover\:transition-transform:hover{
    transition-property: transform;
  }

  .sm\:focus\:transition-none:focus{
    transition-property: none;
  }

  .sm\:focus\:transition-all:focus{
    transition-property: all;
  }

  .sm\:focus\:transition:focus{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .sm\:focus\:transition-colors:focus{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .sm\:focus\:transition-opacity:focus{
    transition-property: opacity;
  }

  .sm\:focus\:transition-shadow:focus{
    transition-property: box-shadow;
  }

  .sm\:focus\:transition-transform:focus{
    transition-property: transform;
  }

  .sm\:active\:transition-none:active{
    transition-property: none;
  }

  .sm\:active\:transition-all:active{
    transition-property: all;
  }

  .sm\:active\:transition:active{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .sm\:active\:transition-colors:active{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .sm\:active\:transition-opacity:active{
    transition-property: opacity;
  }

  .sm\:active\:transition-shadow:active{
    transition-property: box-shadow;
  }

  .sm\:active\:transition-transform:active{
    transition-property: transform;
  }

  .sm\:first\:transition-none:first-child{
    transition-property: none;
  }

  .sm\:first\:transition-all:first-child{
    transition-property: all;
  }

  .sm\:first\:transition:first-child{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .sm\:first\:transition-colors:first-child{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .sm\:first\:transition-opacity:first-child{
    transition-property: opacity;
  }

  .sm\:first\:transition-shadow:first-child{
    transition-property: box-shadow;
  }

  .sm\:first\:transition-transform:first-child{
    transition-property: transform;
  }

  .sm\:last\:transition-none:last-child{
    transition-property: none;
  }

  .sm\:last\:transition-all:last-child{
    transition-property: all;
  }

  .sm\:last\:transition:last-child{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .sm\:last\:transition-colors:last-child{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .sm\:last\:transition-opacity:last-child{
    transition-property: opacity;
  }

  .sm\:last\:transition-shadow:last-child{
    transition-property: box-shadow;
  }

  .sm\:last\:transition-transform:last-child{
    transition-property: transform;
  }

  .sm\:ease-linear{
    transition-timing-function: linear;
  }

  .sm\:ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .sm\:ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .sm\:ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sm\:hover\:ease-linear:hover{
    transition-timing-function: linear;
  }

  .sm\:hover\:ease-in:hover{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .sm\:hover\:ease-out:hover{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .sm\:hover\:ease-in-out:hover{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sm\:focus\:ease-linear:focus{
    transition-timing-function: linear;
  }

  .sm\:focus\:ease-in:focus{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .sm\:focus\:ease-out:focus{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .sm\:focus\:ease-in-out:focus{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sm\:active\:ease-linear:active{
    transition-timing-function: linear;
  }

  .sm\:active\:ease-in:active{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .sm\:active\:ease-out:active{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .sm\:active\:ease-in-out:active{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sm\:first\:ease-linear:first-child{
    transition-timing-function: linear;
  }

  .sm\:first\:ease-in:first-child{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .sm\:first\:ease-out:first-child{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .sm\:first\:ease-in-out:first-child{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sm\:last\:ease-linear:last-child{
    transition-timing-function: linear;
  }

  .sm\:last\:ease-in:last-child{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .sm\:last\:ease-out:last-child{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .sm\:last\:ease-in-out:last-child{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sm\:duration-75{
    transition-duration: 75ms;
  }

  .sm\:duration-100{
    transition-duration: 100ms;
  }

  .sm\:duration-150{
    transition-duration: 150ms;
  }

  .sm\:duration-200{
    transition-duration: 200ms;
  }

  .sm\:duration-300{
    transition-duration: 300ms;
  }

  .sm\:duration-500{
    transition-duration: 500ms;
  }

  .sm\:duration-700{
    transition-duration: 700ms;
  }

  .sm\:duration-1000{
    transition-duration: 1000ms;
  }

  .sm\:hover\:duration-75:hover{
    transition-duration: 75ms;
  }

  .sm\:hover\:duration-100:hover{
    transition-duration: 100ms;
  }

  .sm\:hover\:duration-150:hover{
    transition-duration: 150ms;
  }

  .sm\:hover\:duration-200:hover{
    transition-duration: 200ms;
  }

  .sm\:hover\:duration-300:hover{
    transition-duration: 300ms;
  }

  .sm\:hover\:duration-500:hover{
    transition-duration: 500ms;
  }

  .sm\:hover\:duration-700:hover{
    transition-duration: 700ms;
  }

  .sm\:hover\:duration-1000:hover{
    transition-duration: 1000ms;
  }

  .sm\:focus\:duration-75:focus{
    transition-duration: 75ms;
  }

  .sm\:focus\:duration-100:focus{
    transition-duration: 100ms;
  }

  .sm\:focus\:duration-150:focus{
    transition-duration: 150ms;
  }

  .sm\:focus\:duration-200:focus{
    transition-duration: 200ms;
  }

  .sm\:focus\:duration-300:focus{
    transition-duration: 300ms;
  }

  .sm\:focus\:duration-500:focus{
    transition-duration: 500ms;
  }

  .sm\:focus\:duration-700:focus{
    transition-duration: 700ms;
  }

  .sm\:focus\:duration-1000:focus{
    transition-duration: 1000ms;
  }

  .sm\:active\:duration-75:active{
    transition-duration: 75ms;
  }

  .sm\:active\:duration-100:active{
    transition-duration: 100ms;
  }

  .sm\:active\:duration-150:active{
    transition-duration: 150ms;
  }

  .sm\:active\:duration-200:active{
    transition-duration: 200ms;
  }

  .sm\:active\:duration-300:active{
    transition-duration: 300ms;
  }

  .sm\:active\:duration-500:active{
    transition-duration: 500ms;
  }

  .sm\:active\:duration-700:active{
    transition-duration: 700ms;
  }

  .sm\:active\:duration-1000:active{
    transition-duration: 1000ms;
  }

  .sm\:first\:duration-75:first-child{
    transition-duration: 75ms;
  }

  .sm\:first\:duration-100:first-child{
    transition-duration: 100ms;
  }

  .sm\:first\:duration-150:first-child{
    transition-duration: 150ms;
  }

  .sm\:first\:duration-200:first-child{
    transition-duration: 200ms;
  }

  .sm\:first\:duration-300:first-child{
    transition-duration: 300ms;
  }

  .sm\:first\:duration-500:first-child{
    transition-duration: 500ms;
  }

  .sm\:first\:duration-700:first-child{
    transition-duration: 700ms;
  }

  .sm\:first\:duration-1000:first-child{
    transition-duration: 1000ms;
  }

  .sm\:last\:duration-75:last-child{
    transition-duration: 75ms;
  }

  .sm\:last\:duration-100:last-child{
    transition-duration: 100ms;
  }

  .sm\:last\:duration-150:last-child{
    transition-duration: 150ms;
  }

  .sm\:last\:duration-200:last-child{
    transition-duration: 200ms;
  }

  .sm\:last\:duration-300:last-child{
    transition-duration: 300ms;
  }

  .sm\:last\:duration-500:last-child{
    transition-duration: 500ms;
  }

  .sm\:last\:duration-700:last-child{
    transition-duration: 700ms;
  }

  .sm\:last\:duration-1000:last-child{
    transition-duration: 1000ms;
  }

  .sm\:delay-75{
    transition-delay: 75ms;
  }

  .sm\:delay-100{
    transition-delay: 100ms;
  }

  .sm\:delay-150{
    transition-delay: 150ms;
  }

  .sm\:delay-200{
    transition-delay: 200ms;
  }

  .sm\:delay-300{
    transition-delay: 300ms;
  }

  .sm\:delay-500{
    transition-delay: 500ms;
  }

  .sm\:delay-700{
    transition-delay: 700ms;
  }

  .sm\:delay-1000{
    transition-delay: 1000ms;
  }

  .sm\:hover\:delay-75:hover{
    transition-delay: 75ms;
  }

  .sm\:hover\:delay-100:hover{
    transition-delay: 100ms;
  }

  .sm\:hover\:delay-150:hover{
    transition-delay: 150ms;
  }

  .sm\:hover\:delay-200:hover{
    transition-delay: 200ms;
  }

  .sm\:hover\:delay-300:hover{
    transition-delay: 300ms;
  }

  .sm\:hover\:delay-500:hover{
    transition-delay: 500ms;
  }

  .sm\:hover\:delay-700:hover{
    transition-delay: 700ms;
  }

  .sm\:hover\:delay-1000:hover{
    transition-delay: 1000ms;
  }

  .sm\:focus\:delay-75:focus{
    transition-delay: 75ms;
  }

  .sm\:focus\:delay-100:focus{
    transition-delay: 100ms;
  }

  .sm\:focus\:delay-150:focus{
    transition-delay: 150ms;
  }

  .sm\:focus\:delay-200:focus{
    transition-delay: 200ms;
  }

  .sm\:focus\:delay-300:focus{
    transition-delay: 300ms;
  }

  .sm\:focus\:delay-500:focus{
    transition-delay: 500ms;
  }

  .sm\:focus\:delay-700:focus{
    transition-delay: 700ms;
  }

  .sm\:focus\:delay-1000:focus{
    transition-delay: 1000ms;
  }

  .sm\:active\:delay-75:active{
    transition-delay: 75ms;
  }

  .sm\:active\:delay-100:active{
    transition-delay: 100ms;
  }

  .sm\:active\:delay-150:active{
    transition-delay: 150ms;
  }

  .sm\:active\:delay-200:active{
    transition-delay: 200ms;
  }

  .sm\:active\:delay-300:active{
    transition-delay: 300ms;
  }

  .sm\:active\:delay-500:active{
    transition-delay: 500ms;
  }

  .sm\:active\:delay-700:active{
    transition-delay: 700ms;
  }

  .sm\:active\:delay-1000:active{
    transition-delay: 1000ms;
  }

  .sm\:first\:delay-75:first-child{
    transition-delay: 75ms;
  }

  .sm\:first\:delay-100:first-child{
    transition-delay: 100ms;
  }

  .sm\:first\:delay-150:first-child{
    transition-delay: 150ms;
  }

  .sm\:first\:delay-200:first-child{
    transition-delay: 200ms;
  }

  .sm\:first\:delay-300:first-child{
    transition-delay: 300ms;
  }

  .sm\:first\:delay-500:first-child{
    transition-delay: 500ms;
  }

  .sm\:first\:delay-700:first-child{
    transition-delay: 700ms;
  }

  .sm\:first\:delay-1000:first-child{
    transition-delay: 1000ms;
  }

  .sm\:last\:delay-75:last-child{
    transition-delay: 75ms;
  }

  .sm\:last\:delay-100:last-child{
    transition-delay: 100ms;
  }

  .sm\:last\:delay-150:last-child{
    transition-delay: 150ms;
  }

  .sm\:last\:delay-200:last-child{
    transition-delay: 200ms;
  }

  .sm\:last\:delay-300:last-child{
    transition-delay: 300ms;
  }

  .sm\:last\:delay-500:last-child{
    transition-delay: 500ms;
  }

  .sm\:last\:delay-700:last-child{
    transition-delay: 700ms;
  }

  .sm\:last\:delay-1000:last-child{
    transition-delay: 1000ms;
  }

  .sm\:shadow-border-2-black{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .sm\:shadow-border-4-black{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .sm\:shadow-border-black{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .sm\:shadow-border-2-transparent{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .sm\:shadow-border-4-transparent{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .sm\:shadow-border-transparent{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .sm\:shadow-border-2-error{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:shadow-border-4-error{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:shadow-border-error{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:shadow-border-2-success{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:shadow-border-4-success{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:shadow-border-success{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:shadow-border-2-white-10{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .sm\:shadow-border-2-white-20{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .sm\:shadow-border-2-white{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .sm\:shadow-border-4-white-10{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .sm\:shadow-border-4-white-20{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .sm\:shadow-border-4-white{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .sm\:shadow-border-white-10{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .sm\:shadow-border-white-20{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .sm\:shadow-border-white{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .sm\:shadow-border-2-cheeto{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .sm\:shadow-border-2-cheeto-very-light{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .sm\:shadow-border-2-cheeto-light{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .sm\:shadow-border-2-cheeto-dark{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .sm\:shadow-border-2-cheeto-hocus{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .sm\:shadow-border-2-cheeto-active{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .sm\:shadow-border-2-cheeto-ml-plus{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .sm\:shadow-border-2-cheeto-banner{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .sm\:shadow-border-4-cheeto{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .sm\:shadow-border-4-cheeto-very-light{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .sm\:shadow-border-4-cheeto-light{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .sm\:shadow-border-4-cheeto-dark{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .sm\:shadow-border-4-cheeto-hocus{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .sm\:shadow-border-4-cheeto-active{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .sm\:shadow-border-4-cheeto-ml-plus{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .sm\:shadow-border-4-cheeto-banner{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .sm\:shadow-border-cheeto{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .sm\:shadow-border-cheeto-very-light{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .sm\:shadow-border-cheeto-light{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .sm\:shadow-border-cheeto-dark{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .sm\:shadow-border-cheeto-hocus{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .sm\:shadow-border-cheeto-active{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .sm\:shadow-border-cheeto-ml-plus{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .sm\:shadow-border-cheeto-banner{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .sm\:shadow-border-2-gracy-1{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .sm\:shadow-border-2-gracy-10{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .sm\:shadow-border-2-gracy-20{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .sm\:shadow-border-2-gracy-30{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .sm\:shadow-border-2-gracy-40{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .sm\:shadow-border-2-gracy-50{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .sm\:shadow-border-2-gracy-60{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .sm\:shadow-border-2-gracy-70{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .sm\:shadow-border-2-gracy-80{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .sm\:shadow-border-2-gracy-90{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .sm\:shadow-border-2-gracy-100{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .sm\:shadow-border-2-gracy{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .sm\:shadow-border-2-gracy-overlay-90{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .sm\:shadow-border-4-gracy-1{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .sm\:shadow-border-4-gracy-10{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .sm\:shadow-border-4-gracy-20{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .sm\:shadow-border-4-gracy-30{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .sm\:shadow-border-4-gracy-40{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .sm\:shadow-border-4-gracy-50{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .sm\:shadow-border-4-gracy-60{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .sm\:shadow-border-4-gracy-70{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .sm\:shadow-border-4-gracy-80{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .sm\:shadow-border-4-gracy-90{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .sm\:shadow-border-4-gracy-100{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .sm\:shadow-border-4-gracy{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .sm\:shadow-border-4-gracy-overlay-90{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .sm\:shadow-border-gracy-1{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .sm\:shadow-border-gracy-10{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .sm\:shadow-border-gracy-20{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .sm\:shadow-border-gracy-30{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .sm\:shadow-border-gracy-40{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .sm\:shadow-border-gracy-50{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .sm\:shadow-border-gracy-60{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .sm\:shadow-border-gracy-70{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .sm\:shadow-border-gracy-80{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .sm\:shadow-border-gracy-90{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .sm\:shadow-border-gracy-100{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .sm\:shadow-border-gracy{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .sm\:shadow-border-gracy-overlay-90{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .sm\:shadow-border-2-login-0{
    box-shadow: inset 0 0 0 2px #;
  }

  .sm\:shadow-border-2-login-1{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:shadow-border-2-login-2{
    box-shadow: inset 0 0 0 2px D;
  }

  .sm\:shadow-border-2-login-3{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:shadow-border-2-login-4{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:shadow-border-2-login-5{
    box-shadow: inset 0 0 0 2px E;
  }

  .sm\:shadow-border-2-login-6{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:shadow-border-2-login-bold{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-strip{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-stripColors{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-trap{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .sm\:shadow-border-2-login-zalgo{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .sm\:shadow-border-2-login-zebra{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-rainbow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-random{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-america{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-reset{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-dim{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-italic{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-underline{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-inverse{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-hidden{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-strikethrough{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-black{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-red{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-green{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-yellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-blue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-magenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-cyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-white{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-gray{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-grey{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-brightRed{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-brightGreen{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-brightYellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-brightBlue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-brightMagenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-brightCyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-brightWhite{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgBlack{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgRed{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgGreen{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgYellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgBlue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgMagenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgCyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgWhite{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgGray{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgGrey{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgBrightRed{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgBrightGreen{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgBrightYellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgBrightBlue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgBrightMagenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgBrightCyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-bgBrightWhite{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-blackBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-redBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-greenBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-yellowBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-blueBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-magentaBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-cyanBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-2-login-whiteBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:shadow-border-4-login-0{
    box-shadow: inset 0 0 0 4px #;
  }

  .sm\:shadow-border-4-login-1{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:shadow-border-4-login-2{
    box-shadow: inset 0 0 0 4px D;
  }

  .sm\:shadow-border-4-login-3{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:shadow-border-4-login-4{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:shadow-border-4-login-5{
    box-shadow: inset 0 0 0 4px E;
  }

  .sm\:shadow-border-4-login-6{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:shadow-border-4-login-bold{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-strip{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-stripColors{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-trap{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .sm\:shadow-border-4-login-zalgo{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .sm\:shadow-border-4-login-zebra{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-rainbow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-random{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-america{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-reset{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-dim{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-italic{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-underline{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-inverse{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-hidden{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-strikethrough{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-black{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-red{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-green{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-yellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-blue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-magenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-cyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-white{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-gray{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-grey{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-brightRed{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-brightGreen{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-brightYellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-brightBlue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-brightMagenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-brightCyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-brightWhite{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgBlack{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgRed{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgGreen{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgYellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgBlue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgMagenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgCyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgWhite{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgGray{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgGrey{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgBrightRed{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgBrightGreen{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgBrightYellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgBrightBlue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgBrightMagenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgBrightCyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-bgBrightWhite{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-blackBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-redBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-greenBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-yellowBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-blueBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-magentaBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-cyanBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-4-login-whiteBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:shadow-border-login-0{
    box-shadow: inset 0 0 0 1px #;
  }

  .sm\:shadow-border-login-1{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:shadow-border-login-2{
    box-shadow: inset 0 0 0 1px D;
  }

  .sm\:shadow-border-login-3{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:shadow-border-login-4{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:shadow-border-login-5{
    box-shadow: inset 0 0 0 1px E;
  }

  .sm\:shadow-border-login-6{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:shadow-border-login-bold{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-strip{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-stripColors{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-trap{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .sm\:shadow-border-login-zalgo{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .sm\:shadow-border-login-zebra{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-rainbow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-random{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-america{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-reset{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-dim{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-italic{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-underline{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-inverse{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-hidden{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-strikethrough{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-black{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-red{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-green{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-yellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-blue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-magenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-cyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-white{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-gray{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-grey{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-brightRed{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-brightGreen{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-brightYellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-brightBlue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-brightMagenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-brightCyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-brightWhite{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgBlack{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgRed{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgGreen{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgYellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgBlue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgMagenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgCyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgWhite{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgGray{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgGrey{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgBrightRed{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgBrightGreen{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgBrightYellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgBrightBlue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgBrightMagenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgBrightCyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-bgBrightWhite{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-blackBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-redBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-greenBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-yellowBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-blueBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-magentaBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-cyanBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-login-whiteBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:shadow-border-2-olive-light{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .sm\:shadow-border-2-olive-drab{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:shadow-border-2-olive-dark{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .sm\:shadow-border-4-olive-light{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .sm\:shadow-border-4-olive-drab{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:shadow-border-4-olive-dark{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .sm\:shadow-border-olive-light{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .sm\:shadow-border-olive-drab{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:shadow-border-olive-dark{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .sm\:shadow-border-2-daisy-light{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .sm\:shadow-border-4-daisy-light{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .sm\:shadow-border-daisy-light{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .sm\:shadow-border-2-feedback-gumby{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .sm\:shadow-border-2-feedback-daisy{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .sm\:shadow-border-2-feedback-pokey{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .sm\:shadow-border-2-feedback-aster{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .sm\:shadow-border-2-feedback-aster-dark{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .sm\:shadow-border-2-feedback-roxo{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .sm\:shadow-border-2-feedback-error{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:shadow-border-2-feedback-success{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:shadow-border-4-feedback-gumby{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .sm\:shadow-border-4-feedback-daisy{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .sm\:shadow-border-4-feedback-pokey{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .sm\:shadow-border-4-feedback-aster{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .sm\:shadow-border-4-feedback-aster-dark{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .sm\:shadow-border-4-feedback-roxo{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .sm\:shadow-border-4-feedback-error{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:shadow-border-4-feedback-success{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:shadow-border-feedback-gumby{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .sm\:shadow-border-feedback-daisy{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .sm\:shadow-border-feedback-pokey{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .sm\:shadow-border-feedback-aster{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .sm\:shadow-border-feedback-aster-dark{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .sm\:shadow-border-feedback-roxo{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .sm\:shadow-border-feedback-error{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:shadow-border-feedback-success{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:shadow-border-2-functional-aoki{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .sm\:shadow-border-2-functional-aoki-dark{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .sm\:shadow-border-2-functional-aoki-hocus{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .sm\:shadow-border-2-functional-aoki-active{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .sm\:shadow-border-2-functional-aoki-light{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .sm\:shadow-border-2-functional-kermit{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .sm\:shadow-border-4-functional-aoki{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .sm\:shadow-border-4-functional-aoki-dark{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .sm\:shadow-border-4-functional-aoki-hocus{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .sm\:shadow-border-4-functional-aoki-active{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .sm\:shadow-border-4-functional-aoki-light{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .sm\:shadow-border-4-functional-kermit{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .sm\:shadow-border-functional-aoki{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .sm\:shadow-border-functional-aoki-dark{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .sm\:shadow-border-functional-aoki-hocus{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .sm\:shadow-border-functional-aoki-active{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .sm\:shadow-border-functional-aoki-light{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .sm\:shadow-border-functional-kermit{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .sm\:shadow-border-2-mixlabPlus-light{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .sm\:shadow-border-4-mixlabPlus-light{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .sm\:shadow-border-mixlabPlus-light{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .sm\:shadow-border-2-primary-orange-light{
    box-shadow: inset 0 0 0 2px ;
  }

  .sm\:shadow-border-4-primary-orange-light{
    box-shadow: inset 0 0 0 4px ;
  }

  .sm\:shadow-border-primary-orange-light{
    box-shadow: inset 0 0 0 1px ;
  }

  .sm\:shadow-border-2-off-white{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .sm\:shadow-border-4-off-white{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .sm\:shadow-border-off-white{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .sm\:hover\:shadow-border-2-black:hover{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .sm\:hover\:shadow-border-4-black:hover{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .sm\:hover\:shadow-border-black:hover{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .sm\:hover\:shadow-border-2-transparent:hover{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .sm\:hover\:shadow-border-4-transparent:hover{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .sm\:hover\:shadow-border-transparent:hover{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .sm\:hover\:shadow-border-2-error:hover{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:hover\:shadow-border-4-error:hover{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:hover\:shadow-border-error:hover{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:hover\:shadow-border-2-success:hover{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:hover\:shadow-border-4-success:hover{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:hover\:shadow-border-success:hover{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:hover\:shadow-border-2-white-10:hover{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .sm\:hover\:shadow-border-2-white-20:hover{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .sm\:hover\:shadow-border-2-white:hover{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .sm\:hover\:shadow-border-4-white-10:hover{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .sm\:hover\:shadow-border-4-white-20:hover{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .sm\:hover\:shadow-border-4-white:hover{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .sm\:hover\:shadow-border-white-10:hover{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .sm\:hover\:shadow-border-white-20:hover{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .sm\:hover\:shadow-border-white:hover{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .sm\:hover\:shadow-border-2-cheeto:hover{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .sm\:hover\:shadow-border-2-cheeto-very-light:hover{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .sm\:hover\:shadow-border-2-cheeto-light:hover{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .sm\:hover\:shadow-border-2-cheeto-dark:hover{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .sm\:hover\:shadow-border-2-cheeto-hocus:hover{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .sm\:hover\:shadow-border-2-cheeto-active:hover{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .sm\:hover\:shadow-border-2-cheeto-ml-plus:hover{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .sm\:hover\:shadow-border-2-cheeto-banner:hover{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .sm\:hover\:shadow-border-4-cheeto:hover{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .sm\:hover\:shadow-border-4-cheeto-very-light:hover{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .sm\:hover\:shadow-border-4-cheeto-light:hover{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .sm\:hover\:shadow-border-4-cheeto-dark:hover{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .sm\:hover\:shadow-border-4-cheeto-hocus:hover{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .sm\:hover\:shadow-border-4-cheeto-active:hover{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .sm\:hover\:shadow-border-4-cheeto-ml-plus:hover{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .sm\:hover\:shadow-border-4-cheeto-banner:hover{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .sm\:hover\:shadow-border-cheeto:hover{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .sm\:hover\:shadow-border-cheeto-very-light:hover{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .sm\:hover\:shadow-border-cheeto-light:hover{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .sm\:hover\:shadow-border-cheeto-dark:hover{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .sm\:hover\:shadow-border-cheeto-hocus:hover{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .sm\:hover\:shadow-border-cheeto-active:hover{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .sm\:hover\:shadow-border-cheeto-ml-plus:hover{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .sm\:hover\:shadow-border-cheeto-banner:hover{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .sm\:hover\:shadow-border-2-gracy-1:hover{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .sm\:hover\:shadow-border-2-gracy-10:hover{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .sm\:hover\:shadow-border-2-gracy-20:hover{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .sm\:hover\:shadow-border-2-gracy-30:hover{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .sm\:hover\:shadow-border-2-gracy-40:hover{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .sm\:hover\:shadow-border-2-gracy-50:hover{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .sm\:hover\:shadow-border-2-gracy-60:hover{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .sm\:hover\:shadow-border-2-gracy-70:hover{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .sm\:hover\:shadow-border-2-gracy-80:hover{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .sm\:hover\:shadow-border-2-gracy-90:hover{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .sm\:hover\:shadow-border-2-gracy-100:hover{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .sm\:hover\:shadow-border-2-gracy:hover{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .sm\:hover\:shadow-border-2-gracy-overlay-90:hover{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .sm\:hover\:shadow-border-4-gracy-1:hover{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .sm\:hover\:shadow-border-4-gracy-10:hover{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .sm\:hover\:shadow-border-4-gracy-20:hover{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .sm\:hover\:shadow-border-4-gracy-30:hover{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .sm\:hover\:shadow-border-4-gracy-40:hover{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .sm\:hover\:shadow-border-4-gracy-50:hover{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .sm\:hover\:shadow-border-4-gracy-60:hover{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .sm\:hover\:shadow-border-4-gracy-70:hover{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .sm\:hover\:shadow-border-4-gracy-80:hover{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .sm\:hover\:shadow-border-4-gracy-90:hover{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .sm\:hover\:shadow-border-4-gracy-100:hover{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .sm\:hover\:shadow-border-4-gracy:hover{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .sm\:hover\:shadow-border-4-gracy-overlay-90:hover{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .sm\:hover\:shadow-border-gracy-1:hover{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .sm\:hover\:shadow-border-gracy-10:hover{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .sm\:hover\:shadow-border-gracy-20:hover{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .sm\:hover\:shadow-border-gracy-30:hover{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .sm\:hover\:shadow-border-gracy-40:hover{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .sm\:hover\:shadow-border-gracy-50:hover{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .sm\:hover\:shadow-border-gracy-60:hover{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .sm\:hover\:shadow-border-gracy-70:hover{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .sm\:hover\:shadow-border-gracy-80:hover{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .sm\:hover\:shadow-border-gracy-90:hover{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .sm\:hover\:shadow-border-gracy-100:hover{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .sm\:hover\:shadow-border-gracy:hover{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .sm\:hover\:shadow-border-gracy-overlay-90:hover{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .sm\:hover\:shadow-border-2-login-0:hover{
    box-shadow: inset 0 0 0 2px #;
  }

  .sm\:hover\:shadow-border-2-login-1:hover{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:hover\:shadow-border-2-login-2:hover{
    box-shadow: inset 0 0 0 2px D;
  }

  .sm\:hover\:shadow-border-2-login-3:hover{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:hover\:shadow-border-2-login-4:hover{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:hover\:shadow-border-2-login-5:hover{
    box-shadow: inset 0 0 0 2px E;
  }

  .sm\:hover\:shadow-border-2-login-6:hover{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:hover\:shadow-border-2-login-bold:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-strip:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-stripColors:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-trap:hover{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .sm\:hover\:shadow-border-2-login-zalgo:hover{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .sm\:hover\:shadow-border-2-login-zebra:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-rainbow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-random:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-america:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-reset:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-dim:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-italic:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-underline:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-inverse:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-hidden:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-strikethrough:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-black:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-red:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-green:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-yellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-blue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-magenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-cyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-white:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-gray:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-grey:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-brightRed:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-brightGreen:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-brightYellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-brightBlue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-brightMagenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-brightCyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-brightWhite:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgBlack:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgRed:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgGreen:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgYellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgBlue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgMagenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgCyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgWhite:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgGray:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgGrey:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgBrightRed:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgBrightGreen:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgBrightYellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgBrightBlue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgBrightMagenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgBrightCyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-bgBrightWhite:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-blackBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-redBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-greenBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-yellowBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-blueBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-magentaBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-cyanBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-login-whiteBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-0:hover{
    box-shadow: inset 0 0 0 4px #;
  }

  .sm\:hover\:shadow-border-4-login-1:hover{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:hover\:shadow-border-4-login-2:hover{
    box-shadow: inset 0 0 0 4px D;
  }

  .sm\:hover\:shadow-border-4-login-3:hover{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:hover\:shadow-border-4-login-4:hover{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:hover\:shadow-border-4-login-5:hover{
    box-shadow: inset 0 0 0 4px E;
  }

  .sm\:hover\:shadow-border-4-login-6:hover{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:hover\:shadow-border-4-login-bold:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-strip:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-stripColors:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-trap:hover{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .sm\:hover\:shadow-border-4-login-zalgo:hover{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .sm\:hover\:shadow-border-4-login-zebra:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-rainbow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-random:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-america:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-reset:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-dim:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-italic:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-underline:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-inverse:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-hidden:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-strikethrough:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-black:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-red:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-green:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-yellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-blue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-magenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-cyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-white:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-gray:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-grey:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-brightRed:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-brightGreen:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-brightYellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-brightBlue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-brightMagenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-brightCyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-brightWhite:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgBlack:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgRed:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgGreen:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgYellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgBlue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgMagenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgCyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgWhite:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgGray:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgGrey:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgBrightRed:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgBrightGreen:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgBrightYellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgBrightBlue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgBrightMagenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgBrightCyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-bgBrightWhite:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-blackBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-redBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-greenBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-yellowBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-blueBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-magentaBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-cyanBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-4-login-whiteBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-0:hover{
    box-shadow: inset 0 0 0 1px #;
  }

  .sm\:hover\:shadow-border-login-1:hover{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:hover\:shadow-border-login-2:hover{
    box-shadow: inset 0 0 0 1px D;
  }

  .sm\:hover\:shadow-border-login-3:hover{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:hover\:shadow-border-login-4:hover{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:hover\:shadow-border-login-5:hover{
    box-shadow: inset 0 0 0 1px E;
  }

  .sm\:hover\:shadow-border-login-6:hover{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:hover\:shadow-border-login-bold:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-strip:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-stripColors:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-trap:hover{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .sm\:hover\:shadow-border-login-zalgo:hover{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .sm\:hover\:shadow-border-login-zebra:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-rainbow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-random:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-america:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-reset:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-dim:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-italic:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-underline:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-inverse:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-hidden:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-strikethrough:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-black:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-red:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-green:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-yellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-blue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-magenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-cyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-white:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-gray:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-grey:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-brightRed:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-brightGreen:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-brightYellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-brightBlue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-brightMagenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-brightCyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-brightWhite:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgBlack:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgRed:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgGreen:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgYellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgBlue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgMagenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgCyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgWhite:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgGray:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgGrey:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgBrightRed:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgBrightGreen:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgBrightYellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgBrightBlue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgBrightMagenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgBrightCyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-bgBrightWhite:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-blackBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-redBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-greenBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-yellowBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-blueBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-magentaBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-cyanBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-login-whiteBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:hover\:shadow-border-2-olive-light:hover{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .sm\:hover\:shadow-border-2-olive-drab:hover{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:hover\:shadow-border-2-olive-dark:hover{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .sm\:hover\:shadow-border-4-olive-light:hover{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .sm\:hover\:shadow-border-4-olive-drab:hover{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:hover\:shadow-border-4-olive-dark:hover{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .sm\:hover\:shadow-border-olive-light:hover{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .sm\:hover\:shadow-border-olive-drab:hover{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:hover\:shadow-border-olive-dark:hover{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .sm\:hover\:shadow-border-2-daisy-light:hover{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .sm\:hover\:shadow-border-4-daisy-light:hover{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .sm\:hover\:shadow-border-daisy-light:hover{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .sm\:hover\:shadow-border-2-feedback-gumby:hover{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .sm\:hover\:shadow-border-2-feedback-daisy:hover{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .sm\:hover\:shadow-border-2-feedback-pokey:hover{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .sm\:hover\:shadow-border-2-feedback-aster:hover{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .sm\:hover\:shadow-border-2-feedback-aster-dark:hover{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .sm\:hover\:shadow-border-2-feedback-roxo:hover{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .sm\:hover\:shadow-border-2-feedback-error:hover{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:hover\:shadow-border-2-feedback-success:hover{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:hover\:shadow-border-4-feedback-gumby:hover{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .sm\:hover\:shadow-border-4-feedback-daisy:hover{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .sm\:hover\:shadow-border-4-feedback-pokey:hover{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .sm\:hover\:shadow-border-4-feedback-aster:hover{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .sm\:hover\:shadow-border-4-feedback-aster-dark:hover{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .sm\:hover\:shadow-border-4-feedback-roxo:hover{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .sm\:hover\:shadow-border-4-feedback-error:hover{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:hover\:shadow-border-4-feedback-success:hover{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:hover\:shadow-border-feedback-gumby:hover{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .sm\:hover\:shadow-border-feedback-daisy:hover{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .sm\:hover\:shadow-border-feedback-pokey:hover{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .sm\:hover\:shadow-border-feedback-aster:hover{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .sm\:hover\:shadow-border-feedback-aster-dark:hover{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .sm\:hover\:shadow-border-feedback-roxo:hover{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .sm\:hover\:shadow-border-feedback-error:hover{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:hover\:shadow-border-feedback-success:hover{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:hover\:shadow-border-2-functional-aoki:hover{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .sm\:hover\:shadow-border-2-functional-aoki-dark:hover{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .sm\:hover\:shadow-border-2-functional-aoki-hocus:hover{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .sm\:hover\:shadow-border-2-functional-aoki-active:hover{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .sm\:hover\:shadow-border-2-functional-aoki-light:hover{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .sm\:hover\:shadow-border-2-functional-kermit:hover{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .sm\:hover\:shadow-border-4-functional-aoki:hover{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .sm\:hover\:shadow-border-4-functional-aoki-dark:hover{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .sm\:hover\:shadow-border-4-functional-aoki-hocus:hover{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .sm\:hover\:shadow-border-4-functional-aoki-active:hover{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .sm\:hover\:shadow-border-4-functional-aoki-light:hover{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .sm\:hover\:shadow-border-4-functional-kermit:hover{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .sm\:hover\:shadow-border-functional-aoki:hover{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .sm\:hover\:shadow-border-functional-aoki-dark:hover{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .sm\:hover\:shadow-border-functional-aoki-hocus:hover{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .sm\:hover\:shadow-border-functional-aoki-active:hover{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .sm\:hover\:shadow-border-functional-aoki-light:hover{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .sm\:hover\:shadow-border-functional-kermit:hover{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .sm\:hover\:shadow-border-2-mixlabPlus-light:hover{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .sm\:hover\:shadow-border-4-mixlabPlus-light:hover{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .sm\:hover\:shadow-border-mixlabPlus-light:hover{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .sm\:hover\:shadow-border-2-primary-orange-light:hover{
    box-shadow: inset 0 0 0 2px ;
  }

  .sm\:hover\:shadow-border-4-primary-orange-light:hover{
    box-shadow: inset 0 0 0 4px ;
  }

  .sm\:hover\:shadow-border-primary-orange-light:hover{
    box-shadow: inset 0 0 0 1px ;
  }

  .sm\:hover\:shadow-border-2-off-white:hover{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .sm\:hover\:shadow-border-4-off-white:hover{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .sm\:hover\:shadow-border-off-white:hover{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .sm\:focus\:shadow-border-2-black:focus{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .sm\:focus\:shadow-border-4-black:focus{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .sm\:focus\:shadow-border-black:focus{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .sm\:focus\:shadow-border-2-transparent:focus{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .sm\:focus\:shadow-border-4-transparent:focus{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .sm\:focus\:shadow-border-transparent:focus{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .sm\:focus\:shadow-border-2-error:focus{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:focus\:shadow-border-4-error:focus{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:focus\:shadow-border-error:focus{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:focus\:shadow-border-2-success:focus{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:focus\:shadow-border-4-success:focus{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:focus\:shadow-border-success:focus{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:focus\:shadow-border-2-white-10:focus{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .sm\:focus\:shadow-border-2-white-20:focus{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .sm\:focus\:shadow-border-2-white:focus{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .sm\:focus\:shadow-border-4-white-10:focus{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .sm\:focus\:shadow-border-4-white-20:focus{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .sm\:focus\:shadow-border-4-white:focus{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .sm\:focus\:shadow-border-white-10:focus{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .sm\:focus\:shadow-border-white-20:focus{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .sm\:focus\:shadow-border-white:focus{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .sm\:focus\:shadow-border-2-cheeto:focus{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .sm\:focus\:shadow-border-2-cheeto-very-light:focus{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .sm\:focus\:shadow-border-2-cheeto-light:focus{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .sm\:focus\:shadow-border-2-cheeto-dark:focus{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .sm\:focus\:shadow-border-2-cheeto-hocus:focus{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .sm\:focus\:shadow-border-2-cheeto-active:focus{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .sm\:focus\:shadow-border-2-cheeto-ml-plus:focus{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .sm\:focus\:shadow-border-2-cheeto-banner:focus{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .sm\:focus\:shadow-border-4-cheeto:focus{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .sm\:focus\:shadow-border-4-cheeto-very-light:focus{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .sm\:focus\:shadow-border-4-cheeto-light:focus{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .sm\:focus\:shadow-border-4-cheeto-dark:focus{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .sm\:focus\:shadow-border-4-cheeto-hocus:focus{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .sm\:focus\:shadow-border-4-cheeto-active:focus{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .sm\:focus\:shadow-border-4-cheeto-ml-plus:focus{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .sm\:focus\:shadow-border-4-cheeto-banner:focus{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .sm\:focus\:shadow-border-cheeto:focus{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .sm\:focus\:shadow-border-cheeto-very-light:focus{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .sm\:focus\:shadow-border-cheeto-light:focus{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .sm\:focus\:shadow-border-cheeto-dark:focus{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .sm\:focus\:shadow-border-cheeto-hocus:focus{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .sm\:focus\:shadow-border-cheeto-active:focus{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .sm\:focus\:shadow-border-cheeto-ml-plus:focus{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .sm\:focus\:shadow-border-cheeto-banner:focus{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .sm\:focus\:shadow-border-2-gracy-1:focus{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .sm\:focus\:shadow-border-2-gracy-10:focus{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .sm\:focus\:shadow-border-2-gracy-20:focus{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .sm\:focus\:shadow-border-2-gracy-30:focus{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .sm\:focus\:shadow-border-2-gracy-40:focus{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .sm\:focus\:shadow-border-2-gracy-50:focus{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .sm\:focus\:shadow-border-2-gracy-60:focus{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .sm\:focus\:shadow-border-2-gracy-70:focus{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .sm\:focus\:shadow-border-2-gracy-80:focus{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .sm\:focus\:shadow-border-2-gracy-90:focus{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .sm\:focus\:shadow-border-2-gracy-100:focus{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .sm\:focus\:shadow-border-2-gracy:focus{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .sm\:focus\:shadow-border-2-gracy-overlay-90:focus{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .sm\:focus\:shadow-border-4-gracy-1:focus{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .sm\:focus\:shadow-border-4-gracy-10:focus{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .sm\:focus\:shadow-border-4-gracy-20:focus{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .sm\:focus\:shadow-border-4-gracy-30:focus{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .sm\:focus\:shadow-border-4-gracy-40:focus{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .sm\:focus\:shadow-border-4-gracy-50:focus{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .sm\:focus\:shadow-border-4-gracy-60:focus{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .sm\:focus\:shadow-border-4-gracy-70:focus{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .sm\:focus\:shadow-border-4-gracy-80:focus{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .sm\:focus\:shadow-border-4-gracy-90:focus{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .sm\:focus\:shadow-border-4-gracy-100:focus{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .sm\:focus\:shadow-border-4-gracy:focus{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .sm\:focus\:shadow-border-4-gracy-overlay-90:focus{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .sm\:focus\:shadow-border-gracy-1:focus{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .sm\:focus\:shadow-border-gracy-10:focus{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .sm\:focus\:shadow-border-gracy-20:focus{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .sm\:focus\:shadow-border-gracy-30:focus{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .sm\:focus\:shadow-border-gracy-40:focus{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .sm\:focus\:shadow-border-gracy-50:focus{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .sm\:focus\:shadow-border-gracy-60:focus{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .sm\:focus\:shadow-border-gracy-70:focus{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .sm\:focus\:shadow-border-gracy-80:focus{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .sm\:focus\:shadow-border-gracy-90:focus{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .sm\:focus\:shadow-border-gracy-100:focus{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .sm\:focus\:shadow-border-gracy:focus{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .sm\:focus\:shadow-border-gracy-overlay-90:focus{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .sm\:focus\:shadow-border-2-login-0:focus{
    box-shadow: inset 0 0 0 2px #;
  }

  .sm\:focus\:shadow-border-2-login-1:focus{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:focus\:shadow-border-2-login-2:focus{
    box-shadow: inset 0 0 0 2px D;
  }

  .sm\:focus\:shadow-border-2-login-3:focus{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:focus\:shadow-border-2-login-4:focus{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:focus\:shadow-border-2-login-5:focus{
    box-shadow: inset 0 0 0 2px E;
  }

  .sm\:focus\:shadow-border-2-login-6:focus{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:focus\:shadow-border-2-login-bold:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-strip:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-stripColors:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-trap:focus{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .sm\:focus\:shadow-border-2-login-zalgo:focus{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .sm\:focus\:shadow-border-2-login-zebra:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-rainbow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-random:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-america:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-reset:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-dim:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-italic:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-underline:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-inverse:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-hidden:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-strikethrough:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-black:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-red:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-green:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-yellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-blue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-magenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-cyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-white:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-gray:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-grey:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-brightRed:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-brightGreen:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-brightYellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-brightBlue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-brightMagenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-brightCyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-brightWhite:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgBlack:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgRed:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgGreen:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgYellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgBlue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgMagenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgCyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgWhite:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgGray:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgGrey:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgBrightRed:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgBrightGreen:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgBrightYellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgBrightBlue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgBrightMagenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgBrightCyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-bgBrightWhite:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-blackBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-redBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-greenBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-yellowBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-blueBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-magentaBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-cyanBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-login-whiteBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-0:focus{
    box-shadow: inset 0 0 0 4px #;
  }

  .sm\:focus\:shadow-border-4-login-1:focus{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:focus\:shadow-border-4-login-2:focus{
    box-shadow: inset 0 0 0 4px D;
  }

  .sm\:focus\:shadow-border-4-login-3:focus{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:focus\:shadow-border-4-login-4:focus{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:focus\:shadow-border-4-login-5:focus{
    box-shadow: inset 0 0 0 4px E;
  }

  .sm\:focus\:shadow-border-4-login-6:focus{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:focus\:shadow-border-4-login-bold:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-strip:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-stripColors:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-trap:focus{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .sm\:focus\:shadow-border-4-login-zalgo:focus{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .sm\:focus\:shadow-border-4-login-zebra:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-rainbow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-random:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-america:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-reset:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-dim:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-italic:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-underline:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-inverse:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-hidden:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-strikethrough:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-black:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-red:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-green:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-yellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-blue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-magenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-cyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-white:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-gray:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-grey:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-brightRed:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-brightGreen:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-brightYellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-brightBlue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-brightMagenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-brightCyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-brightWhite:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgBlack:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgRed:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgGreen:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgYellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgBlue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgMagenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgCyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgWhite:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgGray:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgGrey:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgBrightRed:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgBrightGreen:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgBrightYellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgBrightBlue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgBrightMagenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgBrightCyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-bgBrightWhite:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-blackBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-redBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-greenBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-yellowBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-blueBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-magentaBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-cyanBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-4-login-whiteBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-0:focus{
    box-shadow: inset 0 0 0 1px #;
  }

  .sm\:focus\:shadow-border-login-1:focus{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:focus\:shadow-border-login-2:focus{
    box-shadow: inset 0 0 0 1px D;
  }

  .sm\:focus\:shadow-border-login-3:focus{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:focus\:shadow-border-login-4:focus{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:focus\:shadow-border-login-5:focus{
    box-shadow: inset 0 0 0 1px E;
  }

  .sm\:focus\:shadow-border-login-6:focus{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:focus\:shadow-border-login-bold:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-strip:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-stripColors:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-trap:focus{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .sm\:focus\:shadow-border-login-zalgo:focus{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .sm\:focus\:shadow-border-login-zebra:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-rainbow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-random:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-america:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-reset:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-dim:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-italic:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-underline:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-inverse:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-hidden:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-strikethrough:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-black:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-red:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-green:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-yellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-blue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-magenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-cyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-white:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-gray:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-grey:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-brightRed:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-brightGreen:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-brightYellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-brightBlue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-brightMagenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-brightCyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-brightWhite:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgBlack:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgRed:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgGreen:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgYellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgBlue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgMagenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgCyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgWhite:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgGray:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgGrey:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgBrightRed:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgBrightGreen:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgBrightYellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgBrightBlue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgBrightMagenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgBrightCyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-bgBrightWhite:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-blackBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-redBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-greenBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-yellowBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-blueBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-magentaBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-cyanBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-login-whiteBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:focus\:shadow-border-2-olive-light:focus{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .sm\:focus\:shadow-border-2-olive-drab:focus{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:focus\:shadow-border-2-olive-dark:focus{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .sm\:focus\:shadow-border-4-olive-light:focus{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .sm\:focus\:shadow-border-4-olive-drab:focus{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:focus\:shadow-border-4-olive-dark:focus{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .sm\:focus\:shadow-border-olive-light:focus{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .sm\:focus\:shadow-border-olive-drab:focus{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:focus\:shadow-border-olive-dark:focus{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .sm\:focus\:shadow-border-2-daisy-light:focus{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .sm\:focus\:shadow-border-4-daisy-light:focus{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .sm\:focus\:shadow-border-daisy-light:focus{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .sm\:focus\:shadow-border-2-feedback-gumby:focus{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .sm\:focus\:shadow-border-2-feedback-daisy:focus{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .sm\:focus\:shadow-border-2-feedback-pokey:focus{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .sm\:focus\:shadow-border-2-feedback-aster:focus{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .sm\:focus\:shadow-border-2-feedback-aster-dark:focus{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .sm\:focus\:shadow-border-2-feedback-roxo:focus{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .sm\:focus\:shadow-border-2-feedback-error:focus{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:focus\:shadow-border-2-feedback-success:focus{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:focus\:shadow-border-4-feedback-gumby:focus{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .sm\:focus\:shadow-border-4-feedback-daisy:focus{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .sm\:focus\:shadow-border-4-feedback-pokey:focus{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .sm\:focus\:shadow-border-4-feedback-aster:focus{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .sm\:focus\:shadow-border-4-feedback-aster-dark:focus{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .sm\:focus\:shadow-border-4-feedback-roxo:focus{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .sm\:focus\:shadow-border-4-feedback-error:focus{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:focus\:shadow-border-4-feedback-success:focus{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:focus\:shadow-border-feedback-gumby:focus{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .sm\:focus\:shadow-border-feedback-daisy:focus{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .sm\:focus\:shadow-border-feedback-pokey:focus{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .sm\:focus\:shadow-border-feedback-aster:focus{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .sm\:focus\:shadow-border-feedback-aster-dark:focus{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .sm\:focus\:shadow-border-feedback-roxo:focus{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .sm\:focus\:shadow-border-feedback-error:focus{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:focus\:shadow-border-feedback-success:focus{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:focus\:shadow-border-2-functional-aoki:focus{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .sm\:focus\:shadow-border-2-functional-aoki-dark:focus{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .sm\:focus\:shadow-border-2-functional-aoki-hocus:focus{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .sm\:focus\:shadow-border-2-functional-aoki-active:focus{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .sm\:focus\:shadow-border-2-functional-aoki-light:focus{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .sm\:focus\:shadow-border-2-functional-kermit:focus{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .sm\:focus\:shadow-border-4-functional-aoki:focus{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .sm\:focus\:shadow-border-4-functional-aoki-dark:focus{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .sm\:focus\:shadow-border-4-functional-aoki-hocus:focus{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .sm\:focus\:shadow-border-4-functional-aoki-active:focus{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .sm\:focus\:shadow-border-4-functional-aoki-light:focus{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .sm\:focus\:shadow-border-4-functional-kermit:focus{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .sm\:focus\:shadow-border-functional-aoki:focus{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .sm\:focus\:shadow-border-functional-aoki-dark:focus{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .sm\:focus\:shadow-border-functional-aoki-hocus:focus{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .sm\:focus\:shadow-border-functional-aoki-active:focus{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .sm\:focus\:shadow-border-functional-aoki-light:focus{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .sm\:focus\:shadow-border-functional-kermit:focus{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .sm\:focus\:shadow-border-2-mixlabPlus-light:focus{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .sm\:focus\:shadow-border-4-mixlabPlus-light:focus{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .sm\:focus\:shadow-border-mixlabPlus-light:focus{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .sm\:focus\:shadow-border-2-primary-orange-light:focus{
    box-shadow: inset 0 0 0 2px ;
  }

  .sm\:focus\:shadow-border-4-primary-orange-light:focus{
    box-shadow: inset 0 0 0 4px ;
  }

  .sm\:focus\:shadow-border-primary-orange-light:focus{
    box-shadow: inset 0 0 0 1px ;
  }

  .sm\:focus\:shadow-border-2-off-white:focus{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .sm\:focus\:shadow-border-4-off-white:focus{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .sm\:focus\:shadow-border-off-white:focus{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .sm\:active\:shadow-border-2-black:active{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .sm\:active\:shadow-border-4-black:active{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .sm\:active\:shadow-border-black:active{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .sm\:active\:shadow-border-2-transparent:active{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .sm\:active\:shadow-border-4-transparent:active{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .sm\:active\:shadow-border-transparent:active{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .sm\:active\:shadow-border-2-error:active{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:active\:shadow-border-4-error:active{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:active\:shadow-border-error:active{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:active\:shadow-border-2-success:active{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:active\:shadow-border-4-success:active{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:active\:shadow-border-success:active{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:active\:shadow-border-2-white-10:active{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .sm\:active\:shadow-border-2-white-20:active{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .sm\:active\:shadow-border-2-white:active{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .sm\:active\:shadow-border-4-white-10:active{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .sm\:active\:shadow-border-4-white-20:active{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .sm\:active\:shadow-border-4-white:active{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .sm\:active\:shadow-border-white-10:active{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .sm\:active\:shadow-border-white-20:active{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .sm\:active\:shadow-border-white:active{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .sm\:active\:shadow-border-2-cheeto:active{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .sm\:active\:shadow-border-2-cheeto-very-light:active{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .sm\:active\:shadow-border-2-cheeto-light:active{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .sm\:active\:shadow-border-2-cheeto-dark:active{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .sm\:active\:shadow-border-2-cheeto-hocus:active{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .sm\:active\:shadow-border-2-cheeto-active:active{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .sm\:active\:shadow-border-2-cheeto-ml-plus:active{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .sm\:active\:shadow-border-2-cheeto-banner:active{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .sm\:active\:shadow-border-4-cheeto:active{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .sm\:active\:shadow-border-4-cheeto-very-light:active{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .sm\:active\:shadow-border-4-cheeto-light:active{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .sm\:active\:shadow-border-4-cheeto-dark:active{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .sm\:active\:shadow-border-4-cheeto-hocus:active{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .sm\:active\:shadow-border-4-cheeto-active:active{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .sm\:active\:shadow-border-4-cheeto-ml-plus:active{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .sm\:active\:shadow-border-4-cheeto-banner:active{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .sm\:active\:shadow-border-cheeto:active{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .sm\:active\:shadow-border-cheeto-very-light:active{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .sm\:active\:shadow-border-cheeto-light:active{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .sm\:active\:shadow-border-cheeto-dark:active{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .sm\:active\:shadow-border-cheeto-hocus:active{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .sm\:active\:shadow-border-cheeto-active:active{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .sm\:active\:shadow-border-cheeto-ml-plus:active{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .sm\:active\:shadow-border-cheeto-banner:active{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .sm\:active\:shadow-border-2-gracy-1:active{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .sm\:active\:shadow-border-2-gracy-10:active{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .sm\:active\:shadow-border-2-gracy-20:active{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .sm\:active\:shadow-border-2-gracy-30:active{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .sm\:active\:shadow-border-2-gracy-40:active{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .sm\:active\:shadow-border-2-gracy-50:active{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .sm\:active\:shadow-border-2-gracy-60:active{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .sm\:active\:shadow-border-2-gracy-70:active{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .sm\:active\:shadow-border-2-gracy-80:active{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .sm\:active\:shadow-border-2-gracy-90:active{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .sm\:active\:shadow-border-2-gracy-100:active{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .sm\:active\:shadow-border-2-gracy:active{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .sm\:active\:shadow-border-2-gracy-overlay-90:active{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .sm\:active\:shadow-border-4-gracy-1:active{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .sm\:active\:shadow-border-4-gracy-10:active{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .sm\:active\:shadow-border-4-gracy-20:active{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .sm\:active\:shadow-border-4-gracy-30:active{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .sm\:active\:shadow-border-4-gracy-40:active{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .sm\:active\:shadow-border-4-gracy-50:active{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .sm\:active\:shadow-border-4-gracy-60:active{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .sm\:active\:shadow-border-4-gracy-70:active{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .sm\:active\:shadow-border-4-gracy-80:active{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .sm\:active\:shadow-border-4-gracy-90:active{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .sm\:active\:shadow-border-4-gracy-100:active{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .sm\:active\:shadow-border-4-gracy:active{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .sm\:active\:shadow-border-4-gracy-overlay-90:active{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .sm\:active\:shadow-border-gracy-1:active{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .sm\:active\:shadow-border-gracy-10:active{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .sm\:active\:shadow-border-gracy-20:active{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .sm\:active\:shadow-border-gracy-30:active{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .sm\:active\:shadow-border-gracy-40:active{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .sm\:active\:shadow-border-gracy-50:active{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .sm\:active\:shadow-border-gracy-60:active{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .sm\:active\:shadow-border-gracy-70:active{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .sm\:active\:shadow-border-gracy-80:active{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .sm\:active\:shadow-border-gracy-90:active{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .sm\:active\:shadow-border-gracy-100:active{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .sm\:active\:shadow-border-gracy:active{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .sm\:active\:shadow-border-gracy-overlay-90:active{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .sm\:active\:shadow-border-2-login-0:active{
    box-shadow: inset 0 0 0 2px #;
  }

  .sm\:active\:shadow-border-2-login-1:active{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:active\:shadow-border-2-login-2:active{
    box-shadow: inset 0 0 0 2px D;
  }

  .sm\:active\:shadow-border-2-login-3:active{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:active\:shadow-border-2-login-4:active{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:active\:shadow-border-2-login-5:active{
    box-shadow: inset 0 0 0 2px E;
  }

  .sm\:active\:shadow-border-2-login-6:active{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:active\:shadow-border-2-login-bold:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-strip:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-stripColors:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-trap:active{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .sm\:active\:shadow-border-2-login-zalgo:active{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .sm\:active\:shadow-border-2-login-zebra:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-rainbow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-random:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-america:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-reset:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-dim:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-italic:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-underline:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-inverse:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-hidden:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-strikethrough:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-black:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-red:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-green:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-yellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-blue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-magenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-cyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-white:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-gray:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-grey:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-brightRed:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-brightGreen:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-brightYellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-brightBlue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-brightMagenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-brightCyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-brightWhite:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgBlack:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgRed:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgGreen:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgYellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgBlue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgMagenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgCyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgWhite:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgGray:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgGrey:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgBrightRed:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgBrightGreen:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgBrightYellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgBrightBlue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgBrightMagenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgBrightCyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-bgBrightWhite:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-blackBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-redBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-greenBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-yellowBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-blueBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-magentaBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-cyanBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-login-whiteBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-0:active{
    box-shadow: inset 0 0 0 4px #;
  }

  .sm\:active\:shadow-border-4-login-1:active{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:active\:shadow-border-4-login-2:active{
    box-shadow: inset 0 0 0 4px D;
  }

  .sm\:active\:shadow-border-4-login-3:active{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:active\:shadow-border-4-login-4:active{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:active\:shadow-border-4-login-5:active{
    box-shadow: inset 0 0 0 4px E;
  }

  .sm\:active\:shadow-border-4-login-6:active{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:active\:shadow-border-4-login-bold:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-strip:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-stripColors:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-trap:active{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .sm\:active\:shadow-border-4-login-zalgo:active{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .sm\:active\:shadow-border-4-login-zebra:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-rainbow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-random:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-america:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-reset:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-dim:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-italic:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-underline:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-inverse:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-hidden:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-strikethrough:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-black:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-red:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-green:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-yellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-blue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-magenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-cyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-white:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-gray:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-grey:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-brightRed:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-brightGreen:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-brightYellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-brightBlue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-brightMagenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-brightCyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-brightWhite:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgBlack:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgRed:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgGreen:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgYellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgBlue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgMagenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgCyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgWhite:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgGray:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgGrey:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgBrightRed:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgBrightGreen:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgBrightYellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgBrightBlue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgBrightMagenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgBrightCyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-bgBrightWhite:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-blackBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-redBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-greenBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-yellowBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-blueBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-magentaBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-cyanBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-4-login-whiteBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-0:active{
    box-shadow: inset 0 0 0 1px #;
  }

  .sm\:active\:shadow-border-login-1:active{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:active\:shadow-border-login-2:active{
    box-shadow: inset 0 0 0 1px D;
  }

  .sm\:active\:shadow-border-login-3:active{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:active\:shadow-border-login-4:active{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:active\:shadow-border-login-5:active{
    box-shadow: inset 0 0 0 1px E;
  }

  .sm\:active\:shadow-border-login-6:active{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:active\:shadow-border-login-bold:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-strip:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-stripColors:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-trap:active{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .sm\:active\:shadow-border-login-zalgo:active{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .sm\:active\:shadow-border-login-zebra:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-rainbow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-random:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-america:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-reset:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-dim:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-italic:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-underline:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-inverse:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-hidden:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-strikethrough:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-black:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-red:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-green:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-yellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-blue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-magenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-cyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-white:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-gray:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-grey:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-brightRed:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-brightGreen:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-brightYellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-brightBlue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-brightMagenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-brightCyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-brightWhite:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgBlack:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgRed:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgGreen:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgYellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgBlue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgMagenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgCyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgWhite:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgGray:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgGrey:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgBrightRed:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgBrightGreen:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgBrightYellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgBrightBlue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgBrightMagenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgBrightCyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-bgBrightWhite:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-blackBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-redBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-greenBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-yellowBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-blueBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-magentaBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-cyanBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-login-whiteBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:active\:shadow-border-2-olive-light:active{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .sm\:active\:shadow-border-2-olive-drab:active{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:active\:shadow-border-2-olive-dark:active{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .sm\:active\:shadow-border-4-olive-light:active{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .sm\:active\:shadow-border-4-olive-drab:active{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:active\:shadow-border-4-olive-dark:active{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .sm\:active\:shadow-border-olive-light:active{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .sm\:active\:shadow-border-olive-drab:active{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:active\:shadow-border-olive-dark:active{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .sm\:active\:shadow-border-2-daisy-light:active{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .sm\:active\:shadow-border-4-daisy-light:active{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .sm\:active\:shadow-border-daisy-light:active{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .sm\:active\:shadow-border-2-feedback-gumby:active{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .sm\:active\:shadow-border-2-feedback-daisy:active{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .sm\:active\:shadow-border-2-feedback-pokey:active{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .sm\:active\:shadow-border-2-feedback-aster:active{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .sm\:active\:shadow-border-2-feedback-aster-dark:active{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .sm\:active\:shadow-border-2-feedback-roxo:active{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .sm\:active\:shadow-border-2-feedback-error:active{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:active\:shadow-border-2-feedback-success:active{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:active\:shadow-border-4-feedback-gumby:active{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .sm\:active\:shadow-border-4-feedback-daisy:active{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .sm\:active\:shadow-border-4-feedback-pokey:active{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .sm\:active\:shadow-border-4-feedback-aster:active{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .sm\:active\:shadow-border-4-feedback-aster-dark:active{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .sm\:active\:shadow-border-4-feedback-roxo:active{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .sm\:active\:shadow-border-4-feedback-error:active{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:active\:shadow-border-4-feedback-success:active{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:active\:shadow-border-feedback-gumby:active{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .sm\:active\:shadow-border-feedback-daisy:active{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .sm\:active\:shadow-border-feedback-pokey:active{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .sm\:active\:shadow-border-feedback-aster:active{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .sm\:active\:shadow-border-feedback-aster-dark:active{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .sm\:active\:shadow-border-feedback-roxo:active{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .sm\:active\:shadow-border-feedback-error:active{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:active\:shadow-border-feedback-success:active{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:active\:shadow-border-2-functional-aoki:active{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .sm\:active\:shadow-border-2-functional-aoki-dark:active{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .sm\:active\:shadow-border-2-functional-aoki-hocus:active{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .sm\:active\:shadow-border-2-functional-aoki-active:active{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .sm\:active\:shadow-border-2-functional-aoki-light:active{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .sm\:active\:shadow-border-2-functional-kermit:active{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .sm\:active\:shadow-border-4-functional-aoki:active{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .sm\:active\:shadow-border-4-functional-aoki-dark:active{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .sm\:active\:shadow-border-4-functional-aoki-hocus:active{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .sm\:active\:shadow-border-4-functional-aoki-active:active{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .sm\:active\:shadow-border-4-functional-aoki-light:active{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .sm\:active\:shadow-border-4-functional-kermit:active{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .sm\:active\:shadow-border-functional-aoki:active{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .sm\:active\:shadow-border-functional-aoki-dark:active{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .sm\:active\:shadow-border-functional-aoki-hocus:active{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .sm\:active\:shadow-border-functional-aoki-active:active{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .sm\:active\:shadow-border-functional-aoki-light:active{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .sm\:active\:shadow-border-functional-kermit:active{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .sm\:active\:shadow-border-2-mixlabPlus-light:active{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .sm\:active\:shadow-border-4-mixlabPlus-light:active{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .sm\:active\:shadow-border-mixlabPlus-light:active{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .sm\:active\:shadow-border-2-primary-orange-light:active{
    box-shadow: inset 0 0 0 2px ;
  }

  .sm\:active\:shadow-border-4-primary-orange-light:active{
    box-shadow: inset 0 0 0 4px ;
  }

  .sm\:active\:shadow-border-primary-orange-light:active{
    box-shadow: inset 0 0 0 1px ;
  }

  .sm\:active\:shadow-border-2-off-white:active{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .sm\:active\:shadow-border-4-off-white:active{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .sm\:active\:shadow-border-off-white:active{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .sm\:first\:shadow-border-2-black:first-child{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .sm\:first\:shadow-border-4-black:first-child{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .sm\:first\:shadow-border-black:first-child{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .sm\:first\:shadow-border-2-transparent:first-child{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .sm\:first\:shadow-border-4-transparent:first-child{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .sm\:first\:shadow-border-transparent:first-child{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .sm\:first\:shadow-border-2-error:first-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:first\:shadow-border-4-error:first-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:first\:shadow-border-error:first-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:first\:shadow-border-2-success:first-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:first\:shadow-border-4-success:first-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:first\:shadow-border-success:first-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:first\:shadow-border-2-white-10:first-child{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .sm\:first\:shadow-border-2-white-20:first-child{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .sm\:first\:shadow-border-2-white:first-child{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .sm\:first\:shadow-border-4-white-10:first-child{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .sm\:first\:shadow-border-4-white-20:first-child{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .sm\:first\:shadow-border-4-white:first-child{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .sm\:first\:shadow-border-white-10:first-child{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .sm\:first\:shadow-border-white-20:first-child{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .sm\:first\:shadow-border-white:first-child{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .sm\:first\:shadow-border-2-cheeto:first-child{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .sm\:first\:shadow-border-2-cheeto-very-light:first-child{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .sm\:first\:shadow-border-2-cheeto-light:first-child{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .sm\:first\:shadow-border-2-cheeto-dark:first-child{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .sm\:first\:shadow-border-2-cheeto-hocus:first-child{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .sm\:first\:shadow-border-2-cheeto-active:first-child{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .sm\:first\:shadow-border-2-cheeto-ml-plus:first-child{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .sm\:first\:shadow-border-2-cheeto-banner:first-child{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .sm\:first\:shadow-border-4-cheeto:first-child{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .sm\:first\:shadow-border-4-cheeto-very-light:first-child{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .sm\:first\:shadow-border-4-cheeto-light:first-child{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .sm\:first\:shadow-border-4-cheeto-dark:first-child{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .sm\:first\:shadow-border-4-cheeto-hocus:first-child{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .sm\:first\:shadow-border-4-cheeto-active:first-child{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .sm\:first\:shadow-border-4-cheeto-ml-plus:first-child{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .sm\:first\:shadow-border-4-cheeto-banner:first-child{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .sm\:first\:shadow-border-cheeto:first-child{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .sm\:first\:shadow-border-cheeto-very-light:first-child{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .sm\:first\:shadow-border-cheeto-light:first-child{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .sm\:first\:shadow-border-cheeto-dark:first-child{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .sm\:first\:shadow-border-cheeto-hocus:first-child{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .sm\:first\:shadow-border-cheeto-active:first-child{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .sm\:first\:shadow-border-cheeto-ml-plus:first-child{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .sm\:first\:shadow-border-cheeto-banner:first-child{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .sm\:first\:shadow-border-2-gracy-1:first-child{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .sm\:first\:shadow-border-2-gracy-10:first-child{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .sm\:first\:shadow-border-2-gracy-20:first-child{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .sm\:first\:shadow-border-2-gracy-30:first-child{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .sm\:first\:shadow-border-2-gracy-40:first-child{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .sm\:first\:shadow-border-2-gracy-50:first-child{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .sm\:first\:shadow-border-2-gracy-60:first-child{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .sm\:first\:shadow-border-2-gracy-70:first-child{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .sm\:first\:shadow-border-2-gracy-80:first-child{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .sm\:first\:shadow-border-2-gracy-90:first-child{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .sm\:first\:shadow-border-2-gracy-100:first-child{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .sm\:first\:shadow-border-2-gracy:first-child{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .sm\:first\:shadow-border-2-gracy-overlay-90:first-child{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .sm\:first\:shadow-border-4-gracy-1:first-child{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .sm\:first\:shadow-border-4-gracy-10:first-child{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .sm\:first\:shadow-border-4-gracy-20:first-child{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .sm\:first\:shadow-border-4-gracy-30:first-child{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .sm\:first\:shadow-border-4-gracy-40:first-child{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .sm\:first\:shadow-border-4-gracy-50:first-child{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .sm\:first\:shadow-border-4-gracy-60:first-child{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .sm\:first\:shadow-border-4-gracy-70:first-child{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .sm\:first\:shadow-border-4-gracy-80:first-child{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .sm\:first\:shadow-border-4-gracy-90:first-child{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .sm\:first\:shadow-border-4-gracy-100:first-child{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .sm\:first\:shadow-border-4-gracy:first-child{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .sm\:first\:shadow-border-4-gracy-overlay-90:first-child{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .sm\:first\:shadow-border-gracy-1:first-child{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .sm\:first\:shadow-border-gracy-10:first-child{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .sm\:first\:shadow-border-gracy-20:first-child{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .sm\:first\:shadow-border-gracy-30:first-child{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .sm\:first\:shadow-border-gracy-40:first-child{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .sm\:first\:shadow-border-gracy-50:first-child{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .sm\:first\:shadow-border-gracy-60:first-child{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .sm\:first\:shadow-border-gracy-70:first-child{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .sm\:first\:shadow-border-gracy-80:first-child{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .sm\:first\:shadow-border-gracy-90:first-child{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .sm\:first\:shadow-border-gracy-100:first-child{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .sm\:first\:shadow-border-gracy:first-child{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .sm\:first\:shadow-border-gracy-overlay-90:first-child{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .sm\:first\:shadow-border-2-login-0:first-child{
    box-shadow: inset 0 0 0 2px #;
  }

  .sm\:first\:shadow-border-2-login-1:first-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:first\:shadow-border-2-login-2:first-child{
    box-shadow: inset 0 0 0 2px D;
  }

  .sm\:first\:shadow-border-2-login-3:first-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:first\:shadow-border-2-login-4:first-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:first\:shadow-border-2-login-5:first-child{
    box-shadow: inset 0 0 0 2px E;
  }

  .sm\:first\:shadow-border-2-login-6:first-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:first\:shadow-border-2-login-bold:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-strip:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-stripColors:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-trap:first-child{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .sm\:first\:shadow-border-2-login-zalgo:first-child{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .sm\:first\:shadow-border-2-login-zebra:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-rainbow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-random:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-america:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-reset:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-dim:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-italic:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-underline:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-inverse:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-hidden:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-strikethrough:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-black:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-red:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-green:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-yellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-blue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-magenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-cyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-white:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-gray:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-grey:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-brightRed:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-brightGreen:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-brightYellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-brightBlue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-brightMagenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-brightCyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-brightWhite:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgBlack:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgRed:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgGreen:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgYellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgBlue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgMagenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgCyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgWhite:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgGray:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgGrey:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgBrightRed:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgBrightGreen:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgBrightYellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgBrightBlue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgBrightMagenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgBrightCyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-bgBrightWhite:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-blackBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-redBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-greenBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-yellowBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-blueBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-magentaBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-cyanBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-login-whiteBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-0:first-child{
    box-shadow: inset 0 0 0 4px #;
  }

  .sm\:first\:shadow-border-4-login-1:first-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:first\:shadow-border-4-login-2:first-child{
    box-shadow: inset 0 0 0 4px D;
  }

  .sm\:first\:shadow-border-4-login-3:first-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:first\:shadow-border-4-login-4:first-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:first\:shadow-border-4-login-5:first-child{
    box-shadow: inset 0 0 0 4px E;
  }

  .sm\:first\:shadow-border-4-login-6:first-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:first\:shadow-border-4-login-bold:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-strip:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-stripColors:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-trap:first-child{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .sm\:first\:shadow-border-4-login-zalgo:first-child{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .sm\:first\:shadow-border-4-login-zebra:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-rainbow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-random:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-america:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-reset:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-dim:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-italic:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-underline:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-inverse:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-hidden:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-strikethrough:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-black:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-red:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-green:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-yellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-blue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-magenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-cyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-white:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-gray:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-grey:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-brightRed:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-brightGreen:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-brightYellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-brightBlue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-brightMagenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-brightCyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-brightWhite:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgBlack:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgRed:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgGreen:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgYellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgBlue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgMagenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgCyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgWhite:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgGray:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgGrey:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgBrightRed:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgBrightGreen:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgBrightYellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgBrightBlue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgBrightMagenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgBrightCyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-bgBrightWhite:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-blackBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-redBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-greenBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-yellowBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-blueBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-magentaBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-cyanBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-4-login-whiteBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-0:first-child{
    box-shadow: inset 0 0 0 1px #;
  }

  .sm\:first\:shadow-border-login-1:first-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:first\:shadow-border-login-2:first-child{
    box-shadow: inset 0 0 0 1px D;
  }

  .sm\:first\:shadow-border-login-3:first-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:first\:shadow-border-login-4:first-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:first\:shadow-border-login-5:first-child{
    box-shadow: inset 0 0 0 1px E;
  }

  .sm\:first\:shadow-border-login-6:first-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:first\:shadow-border-login-bold:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-strip:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-stripColors:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-trap:first-child{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .sm\:first\:shadow-border-login-zalgo:first-child{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .sm\:first\:shadow-border-login-zebra:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-rainbow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-random:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-america:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-reset:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-dim:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-italic:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-underline:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-inverse:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-hidden:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-strikethrough:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-black:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-red:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-green:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-yellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-blue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-magenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-cyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-white:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-gray:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-grey:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-brightRed:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-brightGreen:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-brightYellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-brightBlue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-brightMagenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-brightCyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-brightWhite:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgBlack:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgRed:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgGreen:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgYellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgBlue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgMagenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgCyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgWhite:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgGray:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgGrey:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgBrightRed:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgBrightGreen:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgBrightYellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgBrightBlue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgBrightMagenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgBrightCyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-bgBrightWhite:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-blackBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-redBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-greenBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-yellowBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-blueBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-magentaBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-cyanBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-login-whiteBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:first\:shadow-border-2-olive-light:first-child{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .sm\:first\:shadow-border-2-olive-drab:first-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:first\:shadow-border-2-olive-dark:first-child{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .sm\:first\:shadow-border-4-olive-light:first-child{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .sm\:first\:shadow-border-4-olive-drab:first-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:first\:shadow-border-4-olive-dark:first-child{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .sm\:first\:shadow-border-olive-light:first-child{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .sm\:first\:shadow-border-olive-drab:first-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:first\:shadow-border-olive-dark:first-child{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .sm\:first\:shadow-border-2-daisy-light:first-child{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .sm\:first\:shadow-border-4-daisy-light:first-child{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .sm\:first\:shadow-border-daisy-light:first-child{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .sm\:first\:shadow-border-2-feedback-gumby:first-child{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .sm\:first\:shadow-border-2-feedback-daisy:first-child{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .sm\:first\:shadow-border-2-feedback-pokey:first-child{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .sm\:first\:shadow-border-2-feedback-aster:first-child{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .sm\:first\:shadow-border-2-feedback-aster-dark:first-child{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .sm\:first\:shadow-border-2-feedback-roxo:first-child{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .sm\:first\:shadow-border-2-feedback-error:first-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:first\:shadow-border-2-feedback-success:first-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:first\:shadow-border-4-feedback-gumby:first-child{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .sm\:first\:shadow-border-4-feedback-daisy:first-child{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .sm\:first\:shadow-border-4-feedback-pokey:first-child{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .sm\:first\:shadow-border-4-feedback-aster:first-child{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .sm\:first\:shadow-border-4-feedback-aster-dark:first-child{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .sm\:first\:shadow-border-4-feedback-roxo:first-child{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .sm\:first\:shadow-border-4-feedback-error:first-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:first\:shadow-border-4-feedback-success:first-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:first\:shadow-border-feedback-gumby:first-child{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .sm\:first\:shadow-border-feedback-daisy:first-child{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .sm\:first\:shadow-border-feedback-pokey:first-child{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .sm\:first\:shadow-border-feedback-aster:first-child{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .sm\:first\:shadow-border-feedback-aster-dark:first-child{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .sm\:first\:shadow-border-feedback-roxo:first-child{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .sm\:first\:shadow-border-feedback-error:first-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:first\:shadow-border-feedback-success:first-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:first\:shadow-border-2-functional-aoki:first-child{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .sm\:first\:shadow-border-2-functional-aoki-dark:first-child{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .sm\:first\:shadow-border-2-functional-aoki-hocus:first-child{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .sm\:first\:shadow-border-2-functional-aoki-active:first-child{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .sm\:first\:shadow-border-2-functional-aoki-light:first-child{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .sm\:first\:shadow-border-2-functional-kermit:first-child{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .sm\:first\:shadow-border-4-functional-aoki:first-child{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .sm\:first\:shadow-border-4-functional-aoki-dark:first-child{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .sm\:first\:shadow-border-4-functional-aoki-hocus:first-child{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .sm\:first\:shadow-border-4-functional-aoki-active:first-child{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .sm\:first\:shadow-border-4-functional-aoki-light:first-child{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .sm\:first\:shadow-border-4-functional-kermit:first-child{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .sm\:first\:shadow-border-functional-aoki:first-child{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .sm\:first\:shadow-border-functional-aoki-dark:first-child{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .sm\:first\:shadow-border-functional-aoki-hocus:first-child{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .sm\:first\:shadow-border-functional-aoki-active:first-child{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .sm\:first\:shadow-border-functional-aoki-light:first-child{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .sm\:first\:shadow-border-functional-kermit:first-child{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .sm\:first\:shadow-border-2-mixlabPlus-light:first-child{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .sm\:first\:shadow-border-4-mixlabPlus-light:first-child{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .sm\:first\:shadow-border-mixlabPlus-light:first-child{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .sm\:first\:shadow-border-2-primary-orange-light:first-child{
    box-shadow: inset 0 0 0 2px ;
  }

  .sm\:first\:shadow-border-4-primary-orange-light:first-child{
    box-shadow: inset 0 0 0 4px ;
  }

  .sm\:first\:shadow-border-primary-orange-light:first-child{
    box-shadow: inset 0 0 0 1px ;
  }

  .sm\:first\:shadow-border-2-off-white:first-child{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .sm\:first\:shadow-border-4-off-white:first-child{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .sm\:first\:shadow-border-off-white:first-child{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .sm\:last\:shadow-border-2-black:last-child{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .sm\:last\:shadow-border-4-black:last-child{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .sm\:last\:shadow-border-black:last-child{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .sm\:last\:shadow-border-2-transparent:last-child{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .sm\:last\:shadow-border-4-transparent:last-child{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .sm\:last\:shadow-border-transparent:last-child{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .sm\:last\:shadow-border-2-error:last-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:last\:shadow-border-4-error:last-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:last\:shadow-border-error:last-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:last\:shadow-border-2-success:last-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:last\:shadow-border-4-success:last-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:last\:shadow-border-success:last-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:last\:shadow-border-2-white-10:last-child{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .sm\:last\:shadow-border-2-white-20:last-child{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .sm\:last\:shadow-border-2-white:last-child{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .sm\:last\:shadow-border-4-white-10:last-child{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .sm\:last\:shadow-border-4-white-20:last-child{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .sm\:last\:shadow-border-4-white:last-child{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .sm\:last\:shadow-border-white-10:last-child{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .sm\:last\:shadow-border-white-20:last-child{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .sm\:last\:shadow-border-white:last-child{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .sm\:last\:shadow-border-2-cheeto:last-child{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .sm\:last\:shadow-border-2-cheeto-very-light:last-child{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .sm\:last\:shadow-border-2-cheeto-light:last-child{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .sm\:last\:shadow-border-2-cheeto-dark:last-child{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .sm\:last\:shadow-border-2-cheeto-hocus:last-child{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .sm\:last\:shadow-border-2-cheeto-active:last-child{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .sm\:last\:shadow-border-2-cheeto-ml-plus:last-child{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .sm\:last\:shadow-border-2-cheeto-banner:last-child{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .sm\:last\:shadow-border-4-cheeto:last-child{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .sm\:last\:shadow-border-4-cheeto-very-light:last-child{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .sm\:last\:shadow-border-4-cheeto-light:last-child{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .sm\:last\:shadow-border-4-cheeto-dark:last-child{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .sm\:last\:shadow-border-4-cheeto-hocus:last-child{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .sm\:last\:shadow-border-4-cheeto-active:last-child{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .sm\:last\:shadow-border-4-cheeto-ml-plus:last-child{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .sm\:last\:shadow-border-4-cheeto-banner:last-child{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .sm\:last\:shadow-border-cheeto:last-child{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .sm\:last\:shadow-border-cheeto-very-light:last-child{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .sm\:last\:shadow-border-cheeto-light:last-child{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .sm\:last\:shadow-border-cheeto-dark:last-child{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .sm\:last\:shadow-border-cheeto-hocus:last-child{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .sm\:last\:shadow-border-cheeto-active:last-child{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .sm\:last\:shadow-border-cheeto-ml-plus:last-child{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .sm\:last\:shadow-border-cheeto-banner:last-child{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .sm\:last\:shadow-border-2-gracy-1:last-child{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .sm\:last\:shadow-border-2-gracy-10:last-child{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .sm\:last\:shadow-border-2-gracy-20:last-child{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .sm\:last\:shadow-border-2-gracy-30:last-child{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .sm\:last\:shadow-border-2-gracy-40:last-child{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .sm\:last\:shadow-border-2-gracy-50:last-child{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .sm\:last\:shadow-border-2-gracy-60:last-child{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .sm\:last\:shadow-border-2-gracy-70:last-child{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .sm\:last\:shadow-border-2-gracy-80:last-child{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .sm\:last\:shadow-border-2-gracy-90:last-child{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .sm\:last\:shadow-border-2-gracy-100:last-child{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .sm\:last\:shadow-border-2-gracy:last-child{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .sm\:last\:shadow-border-2-gracy-overlay-90:last-child{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .sm\:last\:shadow-border-4-gracy-1:last-child{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .sm\:last\:shadow-border-4-gracy-10:last-child{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .sm\:last\:shadow-border-4-gracy-20:last-child{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .sm\:last\:shadow-border-4-gracy-30:last-child{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .sm\:last\:shadow-border-4-gracy-40:last-child{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .sm\:last\:shadow-border-4-gracy-50:last-child{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .sm\:last\:shadow-border-4-gracy-60:last-child{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .sm\:last\:shadow-border-4-gracy-70:last-child{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .sm\:last\:shadow-border-4-gracy-80:last-child{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .sm\:last\:shadow-border-4-gracy-90:last-child{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .sm\:last\:shadow-border-4-gracy-100:last-child{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .sm\:last\:shadow-border-4-gracy:last-child{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .sm\:last\:shadow-border-4-gracy-overlay-90:last-child{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .sm\:last\:shadow-border-gracy-1:last-child{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .sm\:last\:shadow-border-gracy-10:last-child{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .sm\:last\:shadow-border-gracy-20:last-child{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .sm\:last\:shadow-border-gracy-30:last-child{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .sm\:last\:shadow-border-gracy-40:last-child{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .sm\:last\:shadow-border-gracy-50:last-child{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .sm\:last\:shadow-border-gracy-60:last-child{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .sm\:last\:shadow-border-gracy-70:last-child{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .sm\:last\:shadow-border-gracy-80:last-child{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .sm\:last\:shadow-border-gracy-90:last-child{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .sm\:last\:shadow-border-gracy-100:last-child{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .sm\:last\:shadow-border-gracy:last-child{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .sm\:last\:shadow-border-gracy-overlay-90:last-child{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .sm\:last\:shadow-border-2-login-0:last-child{
    box-shadow: inset 0 0 0 2px #;
  }

  .sm\:last\:shadow-border-2-login-1:last-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:last\:shadow-border-2-login-2:last-child{
    box-shadow: inset 0 0 0 2px D;
  }

  .sm\:last\:shadow-border-2-login-3:last-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .sm\:last\:shadow-border-2-login-4:last-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:last\:shadow-border-2-login-5:last-child{
    box-shadow: inset 0 0 0 2px E;
  }

  .sm\:last\:shadow-border-2-login-6:last-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .sm\:last\:shadow-border-2-login-bold:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-strip:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-stripColors:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-trap:last-child{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .sm\:last\:shadow-border-2-login-zalgo:last-child{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .sm\:last\:shadow-border-2-login-zebra:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-rainbow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-random:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-america:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-reset:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-dim:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-italic:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-underline:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-inverse:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-hidden:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-strikethrough:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-black:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-red:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-green:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-yellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-blue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-magenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-cyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-white:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-gray:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-grey:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-brightRed:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-brightGreen:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-brightYellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-brightBlue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-brightMagenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-brightCyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-brightWhite:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgBlack:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgRed:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgGreen:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgYellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgBlue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgMagenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgCyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgWhite:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgGray:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgGrey:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgBrightRed:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgBrightGreen:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgBrightYellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgBrightBlue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgBrightMagenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgBrightCyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-bgBrightWhite:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-blackBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-redBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-greenBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-yellowBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-blueBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-magentaBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-cyanBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-login-whiteBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-0:last-child{
    box-shadow: inset 0 0 0 4px #;
  }

  .sm\:last\:shadow-border-4-login-1:last-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:last\:shadow-border-4-login-2:last-child{
    box-shadow: inset 0 0 0 4px D;
  }

  .sm\:last\:shadow-border-4-login-3:last-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .sm\:last\:shadow-border-4-login-4:last-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:last\:shadow-border-4-login-5:last-child{
    box-shadow: inset 0 0 0 4px E;
  }

  .sm\:last\:shadow-border-4-login-6:last-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .sm\:last\:shadow-border-4-login-bold:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-strip:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-stripColors:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-trap:last-child{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .sm\:last\:shadow-border-4-login-zalgo:last-child{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .sm\:last\:shadow-border-4-login-zebra:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-rainbow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-random:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-america:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-reset:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-dim:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-italic:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-underline:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-inverse:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-hidden:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-strikethrough:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-black:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-red:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-green:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-yellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-blue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-magenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-cyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-white:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-gray:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-grey:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-brightRed:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-brightGreen:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-brightYellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-brightBlue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-brightMagenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-brightCyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-brightWhite:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgBlack:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgRed:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgGreen:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgYellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgBlue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgMagenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgCyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgWhite:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgGray:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgGrey:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgBrightRed:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgBrightGreen:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgBrightYellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgBrightBlue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgBrightMagenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgBrightCyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-bgBrightWhite:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-blackBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-redBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-greenBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-yellowBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-blueBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-magentaBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-cyanBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-4-login-whiteBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-0:last-child{
    box-shadow: inset 0 0 0 1px #;
  }

  .sm\:last\:shadow-border-login-1:last-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:last\:shadow-border-login-2:last-child{
    box-shadow: inset 0 0 0 1px D;
  }

  .sm\:last\:shadow-border-login-3:last-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .sm\:last\:shadow-border-login-4:last-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:last\:shadow-border-login-5:last-child{
    box-shadow: inset 0 0 0 1px E;
  }

  .sm\:last\:shadow-border-login-6:last-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .sm\:last\:shadow-border-login-bold:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-strip:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-stripColors:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-trap:last-child{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .sm\:last\:shadow-border-login-zalgo:last-child{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .sm\:last\:shadow-border-login-zebra:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-rainbow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-random:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-america:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-reset:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-dim:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-italic:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-underline:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-inverse:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-hidden:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-strikethrough:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-black:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-red:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-green:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-yellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-blue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-magenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-cyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-white:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-gray:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-grey:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-brightRed:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-brightGreen:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-brightYellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-brightBlue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-brightMagenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-brightCyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-brightWhite:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgBlack:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgRed:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgGreen:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgYellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgBlue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgMagenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgCyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgWhite:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgGray:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgGrey:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgBrightRed:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgBrightGreen:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgBrightYellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgBrightBlue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgBrightMagenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgBrightCyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-bgBrightWhite:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-blackBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-redBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-greenBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-yellowBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-blueBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-magentaBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-cyanBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-login-whiteBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .sm\:last\:shadow-border-2-olive-light:last-child{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .sm\:last\:shadow-border-2-olive-drab:last-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:last\:shadow-border-2-olive-dark:last-child{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .sm\:last\:shadow-border-4-olive-light:last-child{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .sm\:last\:shadow-border-4-olive-drab:last-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:last\:shadow-border-4-olive-dark:last-child{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .sm\:last\:shadow-border-olive-light:last-child{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .sm\:last\:shadow-border-olive-drab:last-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:last\:shadow-border-olive-dark:last-child{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .sm\:last\:shadow-border-2-daisy-light:last-child{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .sm\:last\:shadow-border-4-daisy-light:last-child{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .sm\:last\:shadow-border-daisy-light:last-child{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .sm\:last\:shadow-border-2-feedback-gumby:last-child{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .sm\:last\:shadow-border-2-feedback-daisy:last-child{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .sm\:last\:shadow-border-2-feedback-pokey:last-child{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .sm\:last\:shadow-border-2-feedback-aster:last-child{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .sm\:last\:shadow-border-2-feedback-aster-dark:last-child{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .sm\:last\:shadow-border-2-feedback-roxo:last-child{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .sm\:last\:shadow-border-2-feedback-error:last-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .sm\:last\:shadow-border-2-feedback-success:last-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .sm\:last\:shadow-border-4-feedback-gumby:last-child{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .sm\:last\:shadow-border-4-feedback-daisy:last-child{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .sm\:last\:shadow-border-4-feedback-pokey:last-child{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .sm\:last\:shadow-border-4-feedback-aster:last-child{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .sm\:last\:shadow-border-4-feedback-aster-dark:last-child{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .sm\:last\:shadow-border-4-feedback-roxo:last-child{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .sm\:last\:shadow-border-4-feedback-error:last-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .sm\:last\:shadow-border-4-feedback-success:last-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .sm\:last\:shadow-border-feedback-gumby:last-child{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .sm\:last\:shadow-border-feedback-daisy:last-child{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .sm\:last\:shadow-border-feedback-pokey:last-child{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .sm\:last\:shadow-border-feedback-aster:last-child{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .sm\:last\:shadow-border-feedback-aster-dark:last-child{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .sm\:last\:shadow-border-feedback-roxo:last-child{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .sm\:last\:shadow-border-feedback-error:last-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .sm\:last\:shadow-border-feedback-success:last-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .sm\:last\:shadow-border-2-functional-aoki:last-child{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .sm\:last\:shadow-border-2-functional-aoki-dark:last-child{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .sm\:last\:shadow-border-2-functional-aoki-hocus:last-child{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .sm\:last\:shadow-border-2-functional-aoki-active:last-child{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .sm\:last\:shadow-border-2-functional-aoki-light:last-child{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .sm\:last\:shadow-border-2-functional-kermit:last-child{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .sm\:last\:shadow-border-4-functional-aoki:last-child{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .sm\:last\:shadow-border-4-functional-aoki-dark:last-child{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .sm\:last\:shadow-border-4-functional-aoki-hocus:last-child{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .sm\:last\:shadow-border-4-functional-aoki-active:last-child{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .sm\:last\:shadow-border-4-functional-aoki-light:last-child{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .sm\:last\:shadow-border-4-functional-kermit:last-child{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .sm\:last\:shadow-border-functional-aoki:last-child{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .sm\:last\:shadow-border-functional-aoki-dark:last-child{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .sm\:last\:shadow-border-functional-aoki-hocus:last-child{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .sm\:last\:shadow-border-functional-aoki-active:last-child{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .sm\:last\:shadow-border-functional-aoki-light:last-child{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .sm\:last\:shadow-border-functional-kermit:last-child{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .sm\:last\:shadow-border-2-mixlabPlus-light:last-child{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .sm\:last\:shadow-border-4-mixlabPlus-light:last-child{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .sm\:last\:shadow-border-mixlabPlus-light:last-child{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .sm\:last\:shadow-border-2-primary-orange-light:last-child{
    box-shadow: inset 0 0 0 2px ;
  }

  .sm\:last\:shadow-border-4-primary-orange-light:last-child{
    box-shadow: inset 0 0 0 4px ;
  }

  .sm\:last\:shadow-border-primary-orange-light:last-child{
    box-shadow: inset 0 0 0 1px ;
  }

  .sm\:last\:shadow-border-2-off-white:last-child{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .sm\:last\:shadow-border-4-off-white:last-child{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .sm\:last\:shadow-border-off-white:last-child{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }
}

@media (min-width: 1430px){
  .s1440\:container{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1440\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1440\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1440\:container{
      max-width: 1910px;
    }
  }

  .s1440\:hover\:container:hover{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1440\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1440\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1440\:container{
      max-width: 1910px;
    }
  }

  .s1440\:focus\:container:focus{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1440\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1440\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1440\:container{
      max-width: 1910px;
    }
  }

  .s1440\:active\:container:active{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1440\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1440\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1440\:container{
      max-width: 1910px;
    }
  }

  .s1440\:first\:container:first-child{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1440\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1440\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1440\:container{
      max-width: 1910px;
    }
  }

  .s1440\:last\:container:last-child{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1440\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1440\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1440\:container{
      max-width: 1910px;
    }
  }

  .s1440\:space-y-0 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1440\:space-x-0 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-1 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1440\:space-x-1 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-2 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1440\:space-x-2 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-3 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1440\:space-x-3 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-4 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1440\:space-x-4 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-5 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1440\:space-x-5 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-6 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1440\:space-x-6 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-8 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1440\:space-x-8 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-10 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1440\:space-x-10 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-12 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1440\:space-x-12 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-14 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1440\:space-x-14 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-16 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1440\:space-x-16 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-20 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1440\:space-x-20 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-24 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1440\:space-x-24 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-32 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1440\:space-x-32 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-40 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1440\:space-x-40 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-48 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1440\:space-x-48 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-56 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1440\:space-x-56 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-64 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1440\:space-x-64 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-px > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1440\:space-x-px > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-1 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-1 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-2 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-2 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-3 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-3 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-4 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-4 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-5 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-5 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-6 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-6 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-8 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-8 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-10 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-10 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-12 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-12 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-14 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-14 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-16 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-16 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-20 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-20 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-24 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-24 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-32 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-32 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-40 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-40 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-48 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-48 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-56 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-56 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-64 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1440\:-space-x-64 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:-space-y-px > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1440\:-space-x-px > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:space-y-reverse > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1440\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1440\:hover\:space-y-0:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-0:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-1:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-1:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-2:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-2:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-3:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-3:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-4:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-4:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-5:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-5:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-6:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-6:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-8:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-8:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-10:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-10:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-12:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-12:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-14:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-14:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-16:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-16:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-20:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-20:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-24:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-24:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-32:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-32:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-40:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-40:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-48:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-48:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-56:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-56:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-64:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-64:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-px:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1440\:hover\:space-x-px:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-1:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-1:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-2:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-2:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-3:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-3:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-4:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-4:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-5:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-5:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-6:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-6:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-8:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-8:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-10:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-10:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-12:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-12:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-14:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-14:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-16:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-16:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-20:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-20:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-24:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-24:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-32:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-32:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-40:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-40:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-48:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-48:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-56:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-56:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-64:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-64:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:-space-y-px:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1440\:hover\:-space-x-px:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:hover\:space-y-reverse:hover > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1440\:hover\:space-x-reverse:hover > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1440\:focus\:space-y-0:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-0:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-1:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-1:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-2:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-2:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-3:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-3:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-4:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-4:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-5:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-5:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-6:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-6:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-8:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-8:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-10:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-10:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-12:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-12:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-14:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-14:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-16:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-16:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-20:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-20:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-24:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-24:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-32:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-32:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-40:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-40:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-48:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-48:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-56:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-56:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-64:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-64:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-px:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1440\:focus\:space-x-px:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-1:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-1:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-2:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-2:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-3:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-3:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-4:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-4:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-5:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-5:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-6:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-6:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-8:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-8:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-10:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-10:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-12:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-12:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-14:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-14:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-16:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-16:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-20:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-20:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-24:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-24:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-32:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-32:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-40:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-40:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-48:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-48:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-56:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-56:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-64:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-64:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:-space-y-px:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1440\:focus\:-space-x-px:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:focus\:space-y-reverse:focus > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1440\:focus\:space-x-reverse:focus > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1440\:active\:space-y-0:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-0:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-1:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-1:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-2:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-2:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-3:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-3:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-4:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-4:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-5:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-5:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-6:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-6:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-8:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-8:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-10:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-10:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-12:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-12:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-14:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-14:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-16:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-16:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-20:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-20:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-24:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-24:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-32:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-32:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-40:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-40:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-48:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-48:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-56:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-56:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-64:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-64:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-px:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1440\:active\:space-x-px:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-1:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-1:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-2:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-2:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-3:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-3:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-4:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-4:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-5:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-5:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-6:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-6:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-8:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-8:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-10:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-10:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-12:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-12:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-14:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-14:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-16:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-16:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-20:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-20:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-24:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-24:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-32:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-32:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-40:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-40:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-48:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-48:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-56:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-56:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-64:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-64:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:-space-y-px:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1440\:active\:-space-x-px:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:active\:space-y-reverse:active > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1440\:active\:space-x-reverse:active > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1440\:first\:space-y-0:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-0:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-1:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-1:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-2:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-2:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-3:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-3:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-4:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-4:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-5:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-5:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-6:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-6:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-8:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-8:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-10:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-10:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-12:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-12:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-14:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-14:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-16:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-16:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-20:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-20:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-24:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-24:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-32:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-32:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-40:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-40:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-48:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-48:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-56:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-56:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-64:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-64:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-px:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1440\:first\:space-x-px:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-1:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-1:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-2:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-2:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-3:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-3:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-4:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-4:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-5:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-5:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-6:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-6:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-8:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-8:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-10:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-10:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-12:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-12:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-14:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-14:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-16:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-16:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-20:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-20:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-24:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-24:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-32:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-32:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-40:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-40:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-48:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-48:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-56:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-56:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-64:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-64:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:-space-y-px:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1440\:first\:-space-x-px:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:first\:space-y-reverse:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1440\:first\:space-x-reverse:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1440\:last\:space-y-0:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-0:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-1:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-1:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-2:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-2:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-3:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-3:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-4:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-4:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-5:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-5:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-6:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-6:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-8:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-8:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-10:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-10:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-12:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-12:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-14:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-14:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-16:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-16:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-20:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-20:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-24:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-24:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-32:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-32:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-40:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-40:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-48:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-48:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-56:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-56:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-64:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-64:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-px:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1440\:last\:space-x-px:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-1:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-1:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-2:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-2:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-3:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-3:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-4:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-4:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-5:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-5:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-6:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-6:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-8:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-8:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-10:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-10:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-12:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-12:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-14:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-14:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-16:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-16:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-20:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-20:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-24:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-24:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-32:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-32:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-40:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-40:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-48:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-48:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-56:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-56:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-64:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-64:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:-space-y-px:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1440\:last\:-space-x-px:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1440\:last\:space-y-reverse:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1440\:last\:space-x-reverse:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1440\:divide-y-0 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1440\:divide-x-0 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:divide-y-2 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1440\:divide-x-2 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:divide-y-4 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1440\:divide-x-4 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:divide-y-8 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1440\:divide-x-8 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:divide-y > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1440\:divide-x > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1440\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1440\:hover\:divide-y-0:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1440\:hover\:divide-x-0:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:hover\:divide-y-2:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1440\:hover\:divide-x-2:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:hover\:divide-y-4:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1440\:hover\:divide-x-4:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:hover\:divide-y-8:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1440\:hover\:divide-x-8:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:hover\:divide-y:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1440\:hover\:divide-x:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:hover\:divide-y-reverse:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1440\:hover\:divide-x-reverse:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1440\:focus\:divide-y-0:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1440\:focus\:divide-x-0:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:focus\:divide-y-2:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1440\:focus\:divide-x-2:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:focus\:divide-y-4:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1440\:focus\:divide-x-4:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:focus\:divide-y-8:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1440\:focus\:divide-x-8:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:focus\:divide-y:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1440\:focus\:divide-x:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:focus\:divide-y-reverse:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1440\:focus\:divide-x-reverse:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1440\:active\:divide-y-0:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1440\:active\:divide-x-0:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:active\:divide-y-2:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1440\:active\:divide-x-2:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:active\:divide-y-4:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1440\:active\:divide-x-4:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:active\:divide-y-8:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1440\:active\:divide-x-8:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:active\:divide-y:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1440\:active\:divide-x:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:active\:divide-y-reverse:active > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1440\:active\:divide-x-reverse:active > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1440\:first\:divide-y-0:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1440\:first\:divide-x-0:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:first\:divide-y-2:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1440\:first\:divide-x-2:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:first\:divide-y-4:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1440\:first\:divide-x-4:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:first\:divide-y-8:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1440\:first\:divide-x-8:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:first\:divide-y:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1440\:first\:divide-x:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:first\:divide-y-reverse:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1440\:first\:divide-x-reverse:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1440\:last\:divide-y-0:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1440\:last\:divide-x-0:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:last\:divide-y-2:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1440\:last\:divide-x-2:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:last\:divide-y-4:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1440\:last\:divide-x-4:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:last\:divide-y-8:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1440\:last\:divide-x-8:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:last\:divide-y:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1440\:last\:divide-x:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1440\:last\:divide-y-reverse:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1440\:last\:divide-x-reverse:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1440\:divide-black > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1440\:divide-transparent > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1440\:divide-error > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:divide-success > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:divide-white-10 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1440\:divide-white-20 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1440\:divide-white > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1440\:divide-cheeto > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1440\:divide-cheeto-very-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1440\:divide-cheeto-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1440\:divide-cheeto-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1440\:divide-cheeto-hocus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1440\:divide-cheeto-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1440\:divide-cheeto-ml-plus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1440\:divide-cheeto-banner > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1440\:divide-gracy-1 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1440\:divide-gracy-10 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1440\:divide-gracy-20 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1440\:divide-gracy-30 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1440\:divide-gracy-40 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1440\:divide-gracy-50 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1440\:divide-gracy-60 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1440\:divide-gracy-70 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1440\:divide-gracy-80 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1440\:divide-gracy-90 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1440\:divide-gracy-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1440\:divide-gracy > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1440\:divide-gracy-overlay-90 > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:divide-login > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1440\:divide-olive-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1440\:divide-olive-drab > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:divide-olive-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1440\:divide-daisy-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1440\:divide-feedback-gumby > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1440\:divide-feedback-daisy > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1440\:divide-feedback-pokey > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1440\:divide-feedback-aster > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1440\:divide-feedback-aster-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1440\:divide-feedback-roxo > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1440\:divide-feedback-error > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:divide-feedback-success > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:divide-functional-aoki > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1440\:divide-functional-aoki-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1440\:divide-functional-aoki-hocus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1440\:divide-functional-aoki-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1440\:divide-functional-aoki-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1440\:divide-functional-kermit > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1440\:divide-mixlabPlus-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1440\:divide-primary-orange-light > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1440\:divide-off-white > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1440\:hover\:divide-black:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1440\:hover\:divide-transparent:hover > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1440\:hover\:divide-error:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:hover\:divide-success:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:hover\:divide-white-10:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1440\:hover\:divide-white-20:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1440\:hover\:divide-white:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1440\:hover\:divide-cheeto:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1440\:hover\:divide-cheeto-very-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1440\:hover\:divide-cheeto-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1440\:hover\:divide-cheeto-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1440\:hover\:divide-cheeto-hocus:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1440\:hover\:divide-cheeto-active:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1440\:hover\:divide-cheeto-ml-plus:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1440\:hover\:divide-cheeto-banner:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-1:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-10:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-20:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-30:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-40:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-50:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-60:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-70:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-80:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-90:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-100:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1440\:hover\:divide-gracy-overlay-90:hover > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:hover\:divide-login:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1440\:hover\:divide-olive-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1440\:hover\:divide-olive-drab:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:hover\:divide-olive-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1440\:hover\:divide-daisy-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1440\:hover\:divide-feedback-gumby:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1440\:hover\:divide-feedback-daisy:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1440\:hover\:divide-feedback-pokey:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1440\:hover\:divide-feedback-aster:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1440\:hover\:divide-feedback-aster-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1440\:hover\:divide-feedback-roxo:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1440\:hover\:divide-feedback-error:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:hover\:divide-feedback-success:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:hover\:divide-functional-aoki:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1440\:hover\:divide-functional-aoki-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1440\:hover\:divide-functional-aoki-hocus:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1440\:hover\:divide-functional-aoki-active:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1440\:hover\:divide-functional-aoki-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1440\:hover\:divide-functional-kermit:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1440\:hover\:divide-mixlabPlus-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1440\:hover\:divide-primary-orange-light:hover > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1440\:hover\:divide-off-white:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1440\:focus\:divide-black:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1440\:focus\:divide-transparent:focus > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1440\:focus\:divide-error:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:focus\:divide-success:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:focus\:divide-white-10:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1440\:focus\:divide-white-20:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1440\:focus\:divide-white:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1440\:focus\:divide-cheeto:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1440\:focus\:divide-cheeto-very-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1440\:focus\:divide-cheeto-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1440\:focus\:divide-cheeto-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1440\:focus\:divide-cheeto-hocus:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1440\:focus\:divide-cheeto-active:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1440\:focus\:divide-cheeto-ml-plus:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1440\:focus\:divide-cheeto-banner:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-1:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-10:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-20:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-30:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-40:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-50:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-60:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-70:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-80:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-90:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-100:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1440\:focus\:divide-gracy-overlay-90:focus > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:focus\:divide-login:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1440\:focus\:divide-olive-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1440\:focus\:divide-olive-drab:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:focus\:divide-olive-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1440\:focus\:divide-daisy-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1440\:focus\:divide-feedback-gumby:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1440\:focus\:divide-feedback-daisy:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1440\:focus\:divide-feedback-pokey:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1440\:focus\:divide-feedback-aster:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1440\:focus\:divide-feedback-aster-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1440\:focus\:divide-feedback-roxo:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1440\:focus\:divide-feedback-error:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:focus\:divide-feedback-success:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:focus\:divide-functional-aoki:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1440\:focus\:divide-functional-aoki-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1440\:focus\:divide-functional-aoki-hocus:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1440\:focus\:divide-functional-aoki-active:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1440\:focus\:divide-functional-aoki-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1440\:focus\:divide-functional-kermit:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1440\:focus\:divide-mixlabPlus-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1440\:focus\:divide-primary-orange-light:focus > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1440\:focus\:divide-off-white:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1440\:active\:divide-black:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1440\:active\:divide-transparent:active > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1440\:active\:divide-error:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:active\:divide-success:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:active\:divide-white-10:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1440\:active\:divide-white-20:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1440\:active\:divide-white:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1440\:active\:divide-cheeto:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1440\:active\:divide-cheeto-very-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1440\:active\:divide-cheeto-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1440\:active\:divide-cheeto-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1440\:active\:divide-cheeto-hocus:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1440\:active\:divide-cheeto-active:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1440\:active\:divide-cheeto-ml-plus:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1440\:active\:divide-cheeto-banner:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-1:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-10:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-20:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-30:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-40:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-50:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-60:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-70:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-80:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-90:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-100:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1440\:active\:divide-gracy-overlay-90:active > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:active\:divide-login:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1440\:active\:divide-olive-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1440\:active\:divide-olive-drab:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:active\:divide-olive-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1440\:active\:divide-daisy-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1440\:active\:divide-feedback-gumby:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1440\:active\:divide-feedback-daisy:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1440\:active\:divide-feedback-pokey:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1440\:active\:divide-feedback-aster:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1440\:active\:divide-feedback-aster-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1440\:active\:divide-feedback-roxo:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1440\:active\:divide-feedback-error:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:active\:divide-feedback-success:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:active\:divide-functional-aoki:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1440\:active\:divide-functional-aoki-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1440\:active\:divide-functional-aoki-hocus:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1440\:active\:divide-functional-aoki-active:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1440\:active\:divide-functional-aoki-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1440\:active\:divide-functional-kermit:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1440\:active\:divide-mixlabPlus-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1440\:active\:divide-primary-orange-light:active > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1440\:active\:divide-off-white:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1440\:first\:divide-black:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1440\:first\:divide-transparent:first-child > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1440\:first\:divide-error:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:first\:divide-success:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:first\:divide-white-10:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1440\:first\:divide-white-20:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1440\:first\:divide-white:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1440\:first\:divide-cheeto:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1440\:first\:divide-cheeto-very-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1440\:first\:divide-cheeto-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1440\:first\:divide-cheeto-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1440\:first\:divide-cheeto-hocus:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1440\:first\:divide-cheeto-active:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1440\:first\:divide-cheeto-ml-plus:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1440\:first\:divide-cheeto-banner:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-1:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-10:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-20:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-30:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-40:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-50:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-60:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-70:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-80:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-90:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-100:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1440\:first\:divide-gracy-overlay-90:first-child > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:first\:divide-login:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1440\:first\:divide-olive-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1440\:first\:divide-olive-drab:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:first\:divide-olive-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1440\:first\:divide-daisy-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1440\:first\:divide-feedback-gumby:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1440\:first\:divide-feedback-daisy:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1440\:first\:divide-feedback-pokey:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1440\:first\:divide-feedback-aster:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1440\:first\:divide-feedback-aster-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1440\:first\:divide-feedback-roxo:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1440\:first\:divide-feedback-error:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:first\:divide-feedback-success:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:first\:divide-functional-aoki:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1440\:first\:divide-functional-aoki-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1440\:first\:divide-functional-aoki-hocus:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1440\:first\:divide-functional-aoki-active:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1440\:first\:divide-functional-aoki-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1440\:first\:divide-functional-kermit:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1440\:first\:divide-mixlabPlus-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1440\:first\:divide-primary-orange-light:first-child > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1440\:first\:divide-off-white:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1440\:last\:divide-black:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1440\:last\:divide-transparent:last-child > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1440\:last\:divide-error:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:last\:divide-success:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:last\:divide-white-10:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1440\:last\:divide-white-20:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1440\:last\:divide-white:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1440\:last\:divide-cheeto:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1440\:last\:divide-cheeto-very-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1440\:last\:divide-cheeto-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1440\:last\:divide-cheeto-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1440\:last\:divide-cheeto-hocus:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1440\:last\:divide-cheeto-active:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1440\:last\:divide-cheeto-ml-plus:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1440\:last\:divide-cheeto-banner:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-1:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-10:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-20:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-30:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-40:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-50:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-60:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-70:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-80:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-90:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-100:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1440\:last\:divide-gracy-overlay-90:last-child > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:last\:divide-login:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1440\:last\:divide-olive-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1440\:last\:divide-olive-drab:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:last\:divide-olive-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1440\:last\:divide-daisy-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1440\:last\:divide-feedback-gumby:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1440\:last\:divide-feedback-daisy:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1440\:last\:divide-feedback-pokey:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1440\:last\:divide-feedback-aster:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1440\:last\:divide-feedback-aster-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1440\:last\:divide-feedback-roxo:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1440\:last\:divide-feedback-error:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1440\:last\:divide-feedback-success:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1440\:last\:divide-functional-aoki:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1440\:last\:divide-functional-aoki-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1440\:last\:divide-functional-aoki-hocus:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1440\:last\:divide-functional-aoki-active:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1440\:last\:divide-functional-aoki-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1440\:last\:divide-functional-kermit:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1440\:last\:divide-mixlabPlus-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1440\:last\:divide-primary-orange-light:last-child > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1440\:last\:divide-off-white:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1440\:divide-solid > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1440\:divide-dashed > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1440\:divide-dotted > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1440\:divide-double > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1440\:divide-none > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1440\:hover\:divide-solid:hover > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1440\:hover\:divide-dashed:hover > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1440\:hover\:divide-dotted:hover > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1440\:hover\:divide-double:hover > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1440\:hover\:divide-none:hover > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1440\:focus\:divide-solid:focus > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1440\:focus\:divide-dashed:focus > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1440\:focus\:divide-dotted:focus > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1440\:focus\:divide-double:focus > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1440\:focus\:divide-none:focus > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1440\:active\:divide-solid:active > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1440\:active\:divide-dashed:active > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1440\:active\:divide-dotted:active > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1440\:active\:divide-double:active > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1440\:active\:divide-none:active > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1440\:first\:divide-solid:first-child > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1440\:first\:divide-dashed:first-child > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1440\:first\:divide-dotted:first-child > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1440\:first\:divide-double:first-child > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1440\:first\:divide-none:first-child > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1440\:last\:divide-solid:last-child > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1440\:last\:divide-dashed:last-child > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1440\:last\:divide-dotted:last-child > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1440\:last\:divide-double:last-child > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1440\:last\:divide-none:last-child > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1440\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1440\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1440\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1440\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1440\:divide-opacity-80 > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1440\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1440\:hover\:divide-opacity-0:hover > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1440\:hover\:divide-opacity-25:hover > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1440\:hover\:divide-opacity-50:hover > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1440\:hover\:divide-opacity-75:hover > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1440\:hover\:divide-opacity-80:hover > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1440\:hover\:divide-opacity-100:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1440\:focus\:divide-opacity-0:focus > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1440\:focus\:divide-opacity-25:focus > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1440\:focus\:divide-opacity-50:focus > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1440\:focus\:divide-opacity-75:focus > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1440\:focus\:divide-opacity-80:focus > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1440\:focus\:divide-opacity-100:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1440\:active\:divide-opacity-0:active > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1440\:active\:divide-opacity-25:active > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1440\:active\:divide-opacity-50:active > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1440\:active\:divide-opacity-75:active > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1440\:active\:divide-opacity-80:active > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1440\:active\:divide-opacity-100:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1440\:first\:divide-opacity-0:first-child > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1440\:first\:divide-opacity-25:first-child > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1440\:first\:divide-opacity-50:first-child > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1440\:first\:divide-opacity-75:first-child > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1440\:first\:divide-opacity-80:first-child > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1440\:first\:divide-opacity-100:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1440\:last\:divide-opacity-0:last-child > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1440\:last\:divide-opacity-25:last-child > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1440\:last\:divide-opacity-50:last-child > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1440\:last\:divide-opacity-75:last-child > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1440\:last\:divide-opacity-80:last-child > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1440\:last\:divide-opacity-100:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1440\: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;
  }

  .s1440\:not-sr-only{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1440\:hover\:sr-only:hover{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .s1440\:hover\:not-sr-only:hover{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1440\: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;
  }

  .s1440\:focus\:not-sr-only:focus{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1440\:active\:sr-only:active{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .s1440\:active\:not-sr-only:active{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1440\:first\:sr-only:first-child{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .s1440\:first\:not-sr-only:first-child{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1440\:last\:sr-only:last-child{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .s1440\:last\:not-sr-only:last-child{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1440\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1440\:hover\:appearance-none:hover{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1440\:focus\:appearance-none:focus{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1440\:active\:appearance-none:active{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1440\:first\:appearance-none:first-child{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1440\:last\:appearance-none:last-child{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1440\:bg-fixed{
    background-attachment: fixed;
  }

  .s1440\:bg-local{
    background-attachment: local;
  }

  .s1440\:bg-scroll{
    background-attachment: scroll;
  }

  .s1440\:hover\:bg-fixed:hover{
    background-attachment: fixed;
  }

  .s1440\:hover\:bg-local:hover{
    background-attachment: local;
  }

  .s1440\:hover\:bg-scroll:hover{
    background-attachment: scroll;
  }

  .s1440\:focus\:bg-fixed:focus{
    background-attachment: fixed;
  }

  .s1440\:focus\:bg-local:focus{
    background-attachment: local;
  }

  .s1440\:focus\:bg-scroll:focus{
    background-attachment: scroll;
  }

  .s1440\:active\:bg-fixed:active{
    background-attachment: fixed;
  }

  .s1440\:active\:bg-local:active{
    background-attachment: local;
  }

  .s1440\:active\:bg-scroll:active{
    background-attachment: scroll;
  }

  .s1440\:first\:bg-fixed:first-child{
    background-attachment: fixed;
  }

  .s1440\:first\:bg-local:first-child{
    background-attachment: local;
  }

  .s1440\:first\:bg-scroll:first-child{
    background-attachment: scroll;
  }

  .s1440\:last\:bg-fixed:last-child{
    background-attachment: fixed;
  }

  .s1440\:last\:bg-local:last-child{
    background-attachment: local;
  }

  .s1440\:last\:bg-scroll:last-child{
    background-attachment: scroll;
  }

  .s1440\:bg-clip-border{
    background-clip: border-box;
  }

  .s1440\:bg-clip-padding{
    background-clip: padding-box;
  }

  .s1440\:bg-clip-content{
    background-clip: content-box;
  }

  .s1440\:bg-clip-text{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1440\:hover\:bg-clip-border:hover{
    background-clip: border-box;
  }

  .s1440\:hover\:bg-clip-padding:hover{
    background-clip: padding-box;
  }

  .s1440\:hover\:bg-clip-content:hover{
    background-clip: content-box;
  }

  .s1440\:hover\:bg-clip-text:hover{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1440\:focus\:bg-clip-border:focus{
    background-clip: border-box;
  }

  .s1440\:focus\:bg-clip-padding:focus{
    background-clip: padding-box;
  }

  .s1440\:focus\:bg-clip-content:focus{
    background-clip: content-box;
  }

  .s1440\:focus\:bg-clip-text:focus{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1440\:active\:bg-clip-border:active{
    background-clip: border-box;
  }

  .s1440\:active\:bg-clip-padding:active{
    background-clip: padding-box;
  }

  .s1440\:active\:bg-clip-content:active{
    background-clip: content-box;
  }

  .s1440\:active\:bg-clip-text:active{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1440\:first\:bg-clip-border:first-child{
    background-clip: border-box;
  }

  .s1440\:first\:bg-clip-padding:first-child{
    background-clip: padding-box;
  }

  .s1440\:first\:bg-clip-content:first-child{
    background-clip: content-box;
  }

  .s1440\:first\:bg-clip-text:first-child{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1440\:last\:bg-clip-border:last-child{
    background-clip: border-box;
  }

  .s1440\:last\:bg-clip-padding:last-child{
    background-clip: padding-box;
  }

  .s1440\:last\:bg-clip-content:last-child{
    background-clip: content-box;
  }

  .s1440\:last\:bg-clip-text:last-child{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1440\:bg-black{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1440\:bg-transparent{
    background-color: transparent;
  }

  .s1440\:bg-error{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:bg-success{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:bg-white-10{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1440\:bg-white-20{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1440\:bg-white{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1440\:bg-cheeto{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1440\:bg-cheeto-very-light{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1440\:bg-cheeto-light{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1440\:bg-cheeto-dark{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1440\:bg-cheeto-hocus{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1440\:bg-cheeto-active{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1440\:bg-cheeto-ml-plus{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1440\:bg-cheeto-banner{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1440\:bg-gracy-1{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1440\:bg-gracy-10{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1440\:bg-gracy-20{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1440\:bg-gracy-30{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1440\:bg-gracy-40{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1440\:bg-gracy-50{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1440\:bg-gracy-60{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1440\:bg-gracy-70{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1440\:bg-gracy-80{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1440\:bg-gracy-90{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1440\:bg-gracy-100{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1440\:bg-gracy{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1440\:bg-gracy-overlay-90{
    background-color: rgba(50,49,50,0.5);
  }

  .s1440\:bg-login{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1440\:bg-olive-light{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1440\:bg-olive-drab{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:bg-olive-dark{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1440\:bg-daisy-light{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1440\:bg-feedback-gumby{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1440\:bg-feedback-daisy{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1440\:bg-feedback-pokey{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1440\:bg-feedback-aster{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1440\:bg-feedback-aster-dark{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1440\:bg-feedback-roxo{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1440\:bg-feedback-error{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:bg-feedback-success{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:bg-functional-aoki{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1440\:bg-functional-aoki-dark{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1440\:bg-functional-aoki-hocus{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1440\:bg-functional-aoki-active{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1440\:bg-functional-aoki-light{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1440\:bg-functional-kermit{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1440\:bg-mixlabPlus-light{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1440\:bg-primary-orange-light{
    background-color: ;
  }

  .s1440\:bg-off-white{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1440\:hover\:bg-black:hover{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1440\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .s1440\:hover\:bg-error:hover{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:hover\:bg-success:hover{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:hover\:bg-white-10:hover{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1440\:hover\:bg-white-20:hover{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1440\:hover\:bg-white:hover{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1440\:hover\:bg-cheeto:hover{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1440\:hover\:bg-cheeto-very-light:hover{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1440\:hover\:bg-cheeto-light:hover{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1440\:hover\:bg-cheeto-dark:hover{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1440\:hover\:bg-cheeto-hocus:hover{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1440\:hover\:bg-cheeto-active:hover{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1440\:hover\:bg-cheeto-ml-plus:hover{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1440\:hover\:bg-cheeto-banner:hover{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-1:hover{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-10:hover{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-20:hover{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-30:hover{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-40:hover{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-50:hover{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-60:hover{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-70:hover{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-80:hover{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-90:hover{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-100:hover{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy:hover{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1440\:hover\:bg-gracy-overlay-90:hover{
    background-color: rgba(50,49,50,0.5);
  }

  .s1440\:hover\:bg-login:hover{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1440\:hover\:bg-olive-light:hover{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1440\:hover\:bg-olive-drab:hover{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:hover\:bg-olive-dark:hover{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1440\:hover\:bg-daisy-light:hover{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1440\:hover\:bg-feedback-gumby:hover{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1440\:hover\:bg-feedback-daisy:hover{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1440\:hover\:bg-feedback-pokey:hover{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1440\:hover\:bg-feedback-aster:hover{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1440\:hover\:bg-feedback-aster-dark:hover{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1440\:hover\:bg-feedback-roxo:hover{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1440\:hover\:bg-feedback-error:hover{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:hover\:bg-feedback-success:hover{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:hover\:bg-functional-aoki:hover{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1440\:hover\:bg-functional-aoki-dark:hover{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1440\:hover\:bg-functional-aoki-hocus:hover{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1440\:hover\:bg-functional-aoki-active:hover{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1440\:hover\:bg-functional-aoki-light:hover{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1440\:hover\:bg-functional-kermit:hover{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1440\:hover\:bg-mixlabPlus-light:hover{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1440\:hover\:bg-primary-orange-light:hover{
    background-color: ;
  }

  .s1440\:hover\:bg-off-white:hover{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1440\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1440\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .s1440\:focus\:bg-error:focus{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:focus\:bg-success:focus{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:focus\:bg-white-10:focus{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1440\:focus\:bg-white-20:focus{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1440\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1440\:focus\:bg-cheeto:focus{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1440\:focus\:bg-cheeto-very-light:focus{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1440\:focus\:bg-cheeto-light:focus{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1440\:focus\:bg-cheeto-dark:focus{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1440\:focus\:bg-cheeto-hocus:focus{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1440\:focus\:bg-cheeto-active:focus{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1440\:focus\:bg-cheeto-ml-plus:focus{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1440\:focus\:bg-cheeto-banner:focus{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-1:focus{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-10:focus{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-20:focus{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-30:focus{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-40:focus{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-50:focus{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-60:focus{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-70:focus{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-80:focus{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-90:focus{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-100:focus{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy:focus{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1440\:focus\:bg-gracy-overlay-90:focus{
    background-color: rgba(50,49,50,0.5);
  }

  .s1440\:focus\:bg-login:focus{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1440\:focus\:bg-olive-light:focus{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1440\:focus\:bg-olive-drab:focus{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:focus\:bg-olive-dark:focus{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1440\:focus\:bg-daisy-light:focus{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1440\:focus\:bg-feedback-gumby:focus{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1440\:focus\:bg-feedback-daisy:focus{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1440\:focus\:bg-feedback-pokey:focus{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1440\:focus\:bg-feedback-aster:focus{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1440\:focus\:bg-feedback-aster-dark:focus{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1440\:focus\:bg-feedback-roxo:focus{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1440\:focus\:bg-feedback-error:focus{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:focus\:bg-feedback-success:focus{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:focus\:bg-functional-aoki:focus{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1440\:focus\:bg-functional-aoki-dark:focus{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1440\:focus\:bg-functional-aoki-hocus:focus{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1440\:focus\:bg-functional-aoki-active:focus{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1440\:focus\:bg-functional-aoki-light:focus{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1440\:focus\:bg-functional-kermit:focus{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1440\:focus\:bg-mixlabPlus-light:focus{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1440\:focus\:bg-primary-orange-light:focus{
    background-color: ;
  }

  .s1440\:focus\:bg-off-white:focus{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1440\:active\:bg-black:active{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1440\:active\:bg-transparent:active{
    background-color: transparent;
  }

  .s1440\:active\:bg-error:active{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:active\:bg-success:active{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:active\:bg-white-10:active{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1440\:active\:bg-white-20:active{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1440\:active\:bg-white:active{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1440\:active\:bg-cheeto:active{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1440\:active\:bg-cheeto-very-light:active{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1440\:active\:bg-cheeto-light:active{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1440\:active\:bg-cheeto-dark:active{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1440\:active\:bg-cheeto-hocus:active{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1440\:active\:bg-cheeto-active:active{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1440\:active\:bg-cheeto-ml-plus:active{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1440\:active\:bg-cheeto-banner:active{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-1:active{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-10:active{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-20:active{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-30:active{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-40:active{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-50:active{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-60:active{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-70:active{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-80:active{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-90:active{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-100:active{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy:active{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1440\:active\:bg-gracy-overlay-90:active{
    background-color: rgba(50,49,50,0.5);
  }

  .s1440\:active\:bg-login:active{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1440\:active\:bg-olive-light:active{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1440\:active\:bg-olive-drab:active{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:active\:bg-olive-dark:active{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1440\:active\:bg-daisy-light:active{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1440\:active\:bg-feedback-gumby:active{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1440\:active\:bg-feedback-daisy:active{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1440\:active\:bg-feedback-pokey:active{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1440\:active\:bg-feedback-aster:active{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1440\:active\:bg-feedback-aster-dark:active{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1440\:active\:bg-feedback-roxo:active{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1440\:active\:bg-feedback-error:active{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:active\:bg-feedback-success:active{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:active\:bg-functional-aoki:active{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1440\:active\:bg-functional-aoki-dark:active{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1440\:active\:bg-functional-aoki-hocus:active{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1440\:active\:bg-functional-aoki-active:active{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1440\:active\:bg-functional-aoki-light:active{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1440\:active\:bg-functional-kermit:active{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1440\:active\:bg-mixlabPlus-light:active{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1440\:active\:bg-primary-orange-light:active{
    background-color: ;
  }

  .s1440\:active\:bg-off-white:active{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1440\:first\:bg-black:first-child{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1440\:first\:bg-transparent:first-child{
    background-color: transparent;
  }

  .s1440\:first\:bg-error:first-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:first\:bg-success:first-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:first\:bg-white-10:first-child{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1440\:first\:bg-white-20:first-child{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1440\:first\:bg-white:first-child{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1440\:first\:bg-cheeto:first-child{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1440\:first\:bg-cheeto-very-light:first-child{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1440\:first\:bg-cheeto-light:first-child{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1440\:first\:bg-cheeto-dark:first-child{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1440\:first\:bg-cheeto-hocus:first-child{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1440\:first\:bg-cheeto-active:first-child{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1440\:first\:bg-cheeto-ml-plus:first-child{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1440\:first\:bg-cheeto-banner:first-child{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-1:first-child{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-10:first-child{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-20:first-child{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-30:first-child{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-40:first-child{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-50:first-child{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-60:first-child{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-70:first-child{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-80:first-child{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-90:first-child{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-100:first-child{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy:first-child{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1440\:first\:bg-gracy-overlay-90:first-child{
    background-color: rgba(50,49,50,0.5);
  }

  .s1440\:first\:bg-login:first-child{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1440\:first\:bg-olive-light:first-child{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1440\:first\:bg-olive-drab:first-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:first\:bg-olive-dark:first-child{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1440\:first\:bg-daisy-light:first-child{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1440\:first\:bg-feedback-gumby:first-child{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1440\:first\:bg-feedback-daisy:first-child{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1440\:first\:bg-feedback-pokey:first-child{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1440\:first\:bg-feedback-aster:first-child{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1440\:first\:bg-feedback-aster-dark:first-child{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1440\:first\:bg-feedback-roxo:first-child{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1440\:first\:bg-feedback-error:first-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:first\:bg-feedback-success:first-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:first\:bg-functional-aoki:first-child{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1440\:first\:bg-functional-aoki-dark:first-child{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1440\:first\:bg-functional-aoki-hocus:first-child{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1440\:first\:bg-functional-aoki-active:first-child{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1440\:first\:bg-functional-aoki-light:first-child{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1440\:first\:bg-functional-kermit:first-child{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1440\:first\:bg-mixlabPlus-light:first-child{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1440\:first\:bg-primary-orange-light:first-child{
    background-color: ;
  }

  .s1440\:first\:bg-off-white:first-child{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1440\:last\:bg-black:last-child{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1440\:last\:bg-transparent:last-child{
    background-color: transparent;
  }

  .s1440\:last\:bg-error:last-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:last\:bg-success:last-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:last\:bg-white-10:last-child{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1440\:last\:bg-white-20:last-child{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1440\:last\:bg-white:last-child{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1440\:last\:bg-cheeto:last-child{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1440\:last\:bg-cheeto-very-light:last-child{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1440\:last\:bg-cheeto-light:last-child{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1440\:last\:bg-cheeto-dark:last-child{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1440\:last\:bg-cheeto-hocus:last-child{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1440\:last\:bg-cheeto-active:last-child{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1440\:last\:bg-cheeto-ml-plus:last-child{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1440\:last\:bg-cheeto-banner:last-child{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-1:last-child{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-10:last-child{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-20:last-child{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-30:last-child{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-40:last-child{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-50:last-child{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-60:last-child{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-70:last-child{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-80:last-child{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-90:last-child{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-100:last-child{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy:last-child{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1440\:last\:bg-gracy-overlay-90:last-child{
    background-color: rgba(50,49,50,0.5);
  }

  .s1440\:last\:bg-login:last-child{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1440\:last\:bg-olive-light:last-child{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1440\:last\:bg-olive-drab:last-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:last\:bg-olive-dark:last-child{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1440\:last\:bg-daisy-light:last-child{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1440\:last\:bg-feedback-gumby:last-child{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1440\:last\:bg-feedback-daisy:last-child{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1440\:last\:bg-feedback-pokey:last-child{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1440\:last\:bg-feedback-aster:last-child{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1440\:last\:bg-feedback-aster-dark:last-child{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1440\:last\:bg-feedback-roxo:last-child{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1440\:last\:bg-feedback-error:last-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1440\:last\:bg-feedback-success:last-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1440\:last\:bg-functional-aoki:last-child{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1440\:last\:bg-functional-aoki-dark:last-child{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1440\:last\:bg-functional-aoki-hocus:last-child{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1440\:last\:bg-functional-aoki-active:last-child{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1440\:last\:bg-functional-aoki-light:last-child{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1440\:last\:bg-functional-kermit:last-child{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1440\:last\:bg-mixlabPlus-light:last-child{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1440\:last\:bg-primary-orange-light:last-child{
    background-color: ;
  }

  .s1440\:last\:bg-off-white:last-child{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1440\:bg-none{
    background-image: none;
  }

  .s1440\:bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1440\:bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1440\:bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1440\:bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1440\:bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1440\:bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1440\:bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1440\:bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1440\:hover\:bg-none:hover{
    background-image: none;
  }

  .s1440\:hover\:bg-gradient-to-t:hover{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1440\:hover\:bg-gradient-to-tr:hover{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1440\:hover\:bg-gradient-to-r:hover{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1440\:hover\:bg-gradient-to-br:hover{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1440\:hover\:bg-gradient-to-b:hover{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1440\:hover\:bg-gradient-to-bl:hover{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1440\:hover\:bg-gradient-to-l:hover{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1440\:hover\:bg-gradient-to-tl:hover{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1440\:focus\:bg-none:focus{
    background-image: none;
  }

  .s1440\:focus\:bg-gradient-to-t:focus{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1440\:focus\:bg-gradient-to-tr:focus{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1440\:focus\:bg-gradient-to-r:focus{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1440\:focus\:bg-gradient-to-br:focus{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1440\:focus\:bg-gradient-to-b:focus{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1440\:focus\:bg-gradient-to-bl:focus{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1440\:focus\:bg-gradient-to-l:focus{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1440\:focus\:bg-gradient-to-tl:focus{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1440\:active\:bg-none:active{
    background-image: none;
  }

  .s1440\:active\:bg-gradient-to-t:active{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1440\:active\:bg-gradient-to-tr:active{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1440\:active\:bg-gradient-to-r:active{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1440\:active\:bg-gradient-to-br:active{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1440\:active\:bg-gradient-to-b:active{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1440\:active\:bg-gradient-to-bl:active{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1440\:active\:bg-gradient-to-l:active{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1440\:active\:bg-gradient-to-tl:active{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1440\:first\:bg-none:first-child{
    background-image: none;
  }

  .s1440\:first\:bg-gradient-to-t:first-child{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1440\:first\:bg-gradient-to-tr:first-child{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1440\:first\:bg-gradient-to-r:first-child{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1440\:first\:bg-gradient-to-br:first-child{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1440\:first\:bg-gradient-to-b:first-child{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1440\:first\:bg-gradient-to-bl:first-child{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1440\:first\:bg-gradient-to-l:first-child{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1440\:first\:bg-gradient-to-tl:first-child{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1440\:last\:bg-none:last-child{
    background-image: none;
  }

  .s1440\:last\:bg-gradient-to-t:last-child{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1440\:last\:bg-gradient-to-tr:last-child{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1440\:last\:bg-gradient-to-r:last-child{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1440\:last\:bg-gradient-to-br:last-child{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1440\:last\:bg-gradient-to-b:last-child{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1440\:last\:bg-gradient-to-bl:last-child{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1440\:last\:bg-gradient-to-l:last-child{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1440\:last\:bg-gradient-to-tl:last-child{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1440\:from-black{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:from-transparent{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:from-error{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:from-success{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:from-white-10{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:from-white-20{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:from-white{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:from-cheeto{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:from-cheeto-very-light{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:from-cheeto-light{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:from-cheeto-dark{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:from-cheeto-hocus{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:from-cheeto-active{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:from-cheeto-ml-plus{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:from-cheeto-banner{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:from-gracy-1{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:from-gracy-10{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:from-gracy-20{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:from-gracy-30{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:from-gracy-40{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:from-gracy-50{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:from-gracy-60{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:from-gracy-70{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:from-gracy-80{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:from-gracy-90{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:from-gracy-100{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:from-gracy{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:from-gracy-overlay-90{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:from-login{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:from-olive-light{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:from-olive-drab{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:from-olive-dark{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:from-daisy-light{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:from-feedback-gumby{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:from-feedback-daisy{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:from-feedback-pokey{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:from-feedback-aster{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:from-feedback-aster-dark{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:from-feedback-roxo{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:from-feedback-error{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:from-feedback-success{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:from-functional-aoki{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:from-functional-aoki-dark{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:from-functional-aoki-hocus{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:from-functional-aoki-active{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:from-functional-aoki-light{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:from-functional-kermit{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:from-mixlabPlus-light{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:from-primary-orange-light{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:from-off-white{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:via-black{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:via-transparent{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:via-error{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:via-success{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:via-white-10{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:via-white-20{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:via-white{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:via-cheeto{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:via-cheeto-very-light{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:via-cheeto-light{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:via-cheeto-dark{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:via-cheeto-hocus{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:via-cheeto-active{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:via-cheeto-ml-plus{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:via-cheeto-banner{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:via-gracy-1{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:via-gracy-10{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:via-gracy-20{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:via-gracy-30{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:via-gracy-40{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:via-gracy-50{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:via-gracy-60{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:via-gracy-70{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:via-gracy-80{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:via-gracy-90{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:via-gracy-100{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:via-gracy{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:via-gracy-overlay-90{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:via-login{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:via-olive-light{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:via-olive-drab{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:via-olive-dark{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:via-daisy-light{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:via-feedback-gumby{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:via-feedback-daisy{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:via-feedback-pokey{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:via-feedback-aster{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:via-feedback-aster-dark{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:via-feedback-roxo{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:via-feedback-error{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:via-feedback-success{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:via-functional-aoki{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:via-functional-aoki-dark{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:via-functional-aoki-hocus{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:via-functional-aoki-active{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:via-functional-aoki-light{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:via-functional-kermit{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:via-mixlabPlus-light{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:via-primary-orange-light{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:via-off-white{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:to-black{
    --gradient-to-color: #000000;
  }

  .s1440\:to-transparent{
    --gradient-to-color: transparent;
  }

  .s1440\:to-error{
    --gradient-to-color: #f44336;
  }

  .s1440\:to-success{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:to-white-10{
    --gradient-to-color: #FBFBFB;
  }

  .s1440\:to-white-20{
    --gradient-to-color: #ECECEC;
  }

  .s1440\:to-white{
    --gradient-to-color: #FFFFFF;
  }

  .s1440\:to-cheeto{
    --gradient-to-color: #f7a500;
  }

  .s1440\:to-cheeto-very-light{
    --gradient-to-color: #fffaf2;
  }

  .s1440\:to-cheeto-light{
    --gradient-to-color: #ffd649;
  }

  .s1440\:to-cheeto-dark{
    --gradient-to-color: #bf7600;
  }

  .s1440\:to-cheeto-hocus{
    --gradient-to-color: #f8bd0f;
  }

  .s1440\:to-cheeto-active{
    --gradient-to-color: #f8d61b;
  }

  .s1440\:to-cheeto-ml-plus{
    --gradient-to-color: #FBEFCA;
  }

  .s1440\:to-cheeto-banner{
    --gradient-to-color: #fef7e5;
  }

  .s1440\:to-gracy-1{
    --gradient-to-color: #f8f8fa;
  }

  .s1440\:to-gracy-10{
    --gradient-to-color: #faf7fd;
  }

  .s1440\:to-gracy-20{
    --gradient-to-color: #e0dde3;
  }

  .s1440\:to-gracy-30{
    --gradient-to-color: #c8c5ca;
  }

  .s1440\:to-gracy-40{
    --gradient-to-color: #aeacb0;
  }

  .s1440\:to-gracy-50{
    --gradient-to-color: #969497;
  }

  .s1440\:to-gracy-60{
    --gradient-to-color: #7c7b7e;
  }

  .s1440\:to-gracy-70{
    --gradient-to-color: #646265;
  }

  .s1440\:to-gracy-80{
    --gradient-to-color: #4a494b;
  }

  .s1440\:to-gracy-90{
    --gradient-to-color: #323132;
  }

  .s1440\:to-gracy-100{
    --gradient-to-color: #181818;
  }

  .s1440\:to-gracy{
    --gradient-to-color: #6F7878;
  }

  .s1440\:to-gracy-overlay-90{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1440\:to-login{
    --gradient-to-color: #FDF7E7;
  }

  .s1440\:to-olive-light{
    --gradient-to-color: #DFF5F6;
  }

  .s1440\:to-olive-drab{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:to-olive-dark{
    --gradient-to-color: #096348;
  }

  .s1440\:to-daisy-light{
    --gradient-to-color: #fffce1;
  }

  .s1440\:to-feedback-gumby{
    --gradient-to-color: #c8e6c9;
  }

  .s1440\:to-feedback-daisy{
    --gradient-to-color: #fff9c4;
  }

  .s1440\:to-feedback-pokey{
    --gradient-to-color: #ffcdd2;
  }

  .s1440\:to-feedback-aster{
    --gradient-to-color: #b3e5fc;
  }

  .s1440\:to-feedback-aster-dark{
    --gradient-to-color: #03567C;
  }

  .s1440\:to-feedback-roxo{
    --gradient-to-color: #d1c4e9;
  }

  .s1440\:to-feedback-error{
    --gradient-to-color: #f44336;
  }

  .s1440\:to-feedback-success{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:to-functional-aoki{
    --gradient-to-color: #6f2ca0;
  }

  .s1440\:to-functional-aoki-dark{
    --gradient-to-color: #3e0071;
  }

  .s1440\:to-functional-aoki-hocus{
    --gradient-to-color: #9035af;
  }

  .s1440\:to-functional-aoki-active{
    --gradient-to-color: #a04fbc;
  }

  .s1440\:to-functional-aoki-light{
    --gradient-to-color: #a15ad2;
  }

  .s1440\:to-functional-kermit{
    --gradient-to-color: #5aa120;
  }

  .s1440\:to-mixlabPlus-light{
    --gradient-to-color: #FFFEF9;
  }

  .s1440\:to-primary-orange-light{
    --gradient-to-color: ;
  }

  .s1440\:to-off-white{
    --gradient-to-color: #FAF9F6;
  }

  .s1440\:hover\:from-black:hover{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:hover\:from-transparent:hover{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:hover\:from-error:hover{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:hover\:from-success:hover{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:hover\:from-white-10:hover{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:hover\:from-white-20:hover{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:hover\:from-white:hover{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:hover\:from-cheeto:hover{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:hover\:from-cheeto-very-light:hover{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:hover\:from-cheeto-light:hover{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:hover\:from-cheeto-dark:hover{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:hover\:from-cheeto-hocus:hover{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:hover\:from-cheeto-active:hover{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:hover\:from-cheeto-ml-plus:hover{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:hover\:from-cheeto-banner:hover{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:hover\:from-gracy-1:hover{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:hover\:from-gracy-10:hover{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:hover\:from-gracy-20:hover{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:hover\:from-gracy-30:hover{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:hover\:from-gracy-40:hover{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:hover\:from-gracy-50:hover{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:hover\:from-gracy-60:hover{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:hover\:from-gracy-70:hover{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:hover\:from-gracy-80:hover{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:hover\:from-gracy-90:hover{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:hover\:from-gracy-100:hover{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:hover\:from-gracy:hover{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:hover\:from-gracy-overlay-90:hover{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:hover\:from-login:hover{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:hover\:from-olive-light:hover{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:hover\:from-olive-drab:hover{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:hover\:from-olive-dark:hover{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:hover\:from-daisy-light:hover{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:hover\:from-feedback-gumby:hover{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:hover\:from-feedback-daisy:hover{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:hover\:from-feedback-pokey:hover{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:hover\:from-feedback-aster:hover{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:hover\:from-feedback-aster-dark:hover{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:hover\:from-feedback-roxo:hover{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:hover\:from-feedback-error:hover{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:hover\:from-feedback-success:hover{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:hover\:from-functional-aoki:hover{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:hover\:from-functional-aoki-dark:hover{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:hover\:from-functional-aoki-hocus:hover{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:hover\:from-functional-aoki-active:hover{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:hover\:from-functional-aoki-light:hover{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:hover\:from-functional-kermit:hover{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:hover\:from-mixlabPlus-light:hover{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:hover\:from-primary-orange-light:hover{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:hover\:from-off-white:hover{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:hover\:via-black:hover{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:hover\:via-transparent:hover{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:hover\:via-error:hover{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:hover\:via-success:hover{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:hover\:via-white-10:hover{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:hover\:via-white-20:hover{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:hover\:via-white:hover{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:hover\:via-cheeto:hover{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:hover\:via-cheeto-very-light:hover{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:hover\:via-cheeto-light:hover{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:hover\:via-cheeto-dark:hover{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:hover\:via-cheeto-hocus:hover{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:hover\:via-cheeto-active:hover{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:hover\:via-cheeto-ml-plus:hover{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:hover\:via-cheeto-banner:hover{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:hover\:via-gracy-1:hover{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:hover\:via-gracy-10:hover{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:hover\:via-gracy-20:hover{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:hover\:via-gracy-30:hover{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:hover\:via-gracy-40:hover{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:hover\:via-gracy-50:hover{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:hover\:via-gracy-60:hover{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:hover\:via-gracy-70:hover{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:hover\:via-gracy-80:hover{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:hover\:via-gracy-90:hover{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:hover\:via-gracy-100:hover{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:hover\:via-gracy:hover{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:hover\:via-gracy-overlay-90:hover{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:hover\:via-login:hover{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:hover\:via-olive-light:hover{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:hover\:via-olive-drab:hover{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:hover\:via-olive-dark:hover{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:hover\:via-daisy-light:hover{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:hover\:via-feedback-gumby:hover{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:hover\:via-feedback-daisy:hover{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:hover\:via-feedback-pokey:hover{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:hover\:via-feedback-aster:hover{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:hover\:via-feedback-aster-dark:hover{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:hover\:via-feedback-roxo:hover{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:hover\:via-feedback-error:hover{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:hover\:via-feedback-success:hover{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:hover\:via-functional-aoki:hover{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:hover\:via-functional-aoki-dark:hover{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:hover\:via-functional-aoki-hocus:hover{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:hover\:via-functional-aoki-active:hover{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:hover\:via-functional-aoki-light:hover{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:hover\:via-functional-kermit:hover{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:hover\:via-mixlabPlus-light:hover{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:hover\:via-primary-orange-light:hover{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:hover\:via-off-white:hover{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:hover\:to-black:hover{
    --gradient-to-color: #000000;
  }

  .s1440\:hover\:to-transparent:hover{
    --gradient-to-color: transparent;
  }

  .s1440\:hover\:to-error:hover{
    --gradient-to-color: #f44336;
  }

  .s1440\:hover\:to-success:hover{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:hover\:to-white-10:hover{
    --gradient-to-color: #FBFBFB;
  }

  .s1440\:hover\:to-white-20:hover{
    --gradient-to-color: #ECECEC;
  }

  .s1440\:hover\:to-white:hover{
    --gradient-to-color: #FFFFFF;
  }

  .s1440\:hover\:to-cheeto:hover{
    --gradient-to-color: #f7a500;
  }

  .s1440\:hover\:to-cheeto-very-light:hover{
    --gradient-to-color: #fffaf2;
  }

  .s1440\:hover\:to-cheeto-light:hover{
    --gradient-to-color: #ffd649;
  }

  .s1440\:hover\:to-cheeto-dark:hover{
    --gradient-to-color: #bf7600;
  }

  .s1440\:hover\:to-cheeto-hocus:hover{
    --gradient-to-color: #f8bd0f;
  }

  .s1440\:hover\:to-cheeto-active:hover{
    --gradient-to-color: #f8d61b;
  }

  .s1440\:hover\:to-cheeto-ml-plus:hover{
    --gradient-to-color: #FBEFCA;
  }

  .s1440\:hover\:to-cheeto-banner:hover{
    --gradient-to-color: #fef7e5;
  }

  .s1440\:hover\:to-gracy-1:hover{
    --gradient-to-color: #f8f8fa;
  }

  .s1440\:hover\:to-gracy-10:hover{
    --gradient-to-color: #faf7fd;
  }

  .s1440\:hover\:to-gracy-20:hover{
    --gradient-to-color: #e0dde3;
  }

  .s1440\:hover\:to-gracy-30:hover{
    --gradient-to-color: #c8c5ca;
  }

  .s1440\:hover\:to-gracy-40:hover{
    --gradient-to-color: #aeacb0;
  }

  .s1440\:hover\:to-gracy-50:hover{
    --gradient-to-color: #969497;
  }

  .s1440\:hover\:to-gracy-60:hover{
    --gradient-to-color: #7c7b7e;
  }

  .s1440\:hover\:to-gracy-70:hover{
    --gradient-to-color: #646265;
  }

  .s1440\:hover\:to-gracy-80:hover{
    --gradient-to-color: #4a494b;
  }

  .s1440\:hover\:to-gracy-90:hover{
    --gradient-to-color: #323132;
  }

  .s1440\:hover\:to-gracy-100:hover{
    --gradient-to-color: #181818;
  }

  .s1440\:hover\:to-gracy:hover{
    --gradient-to-color: #6F7878;
  }

  .s1440\:hover\:to-gracy-overlay-90:hover{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1440\:hover\:to-login:hover{
    --gradient-to-color: #FDF7E7;
  }

  .s1440\:hover\:to-olive-light:hover{
    --gradient-to-color: #DFF5F6;
  }

  .s1440\:hover\:to-olive-drab:hover{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:hover\:to-olive-dark:hover{
    --gradient-to-color: #096348;
  }

  .s1440\:hover\:to-daisy-light:hover{
    --gradient-to-color: #fffce1;
  }

  .s1440\:hover\:to-feedback-gumby:hover{
    --gradient-to-color: #c8e6c9;
  }

  .s1440\:hover\:to-feedback-daisy:hover{
    --gradient-to-color: #fff9c4;
  }

  .s1440\:hover\:to-feedback-pokey:hover{
    --gradient-to-color: #ffcdd2;
  }

  .s1440\:hover\:to-feedback-aster:hover{
    --gradient-to-color: #b3e5fc;
  }

  .s1440\:hover\:to-feedback-aster-dark:hover{
    --gradient-to-color: #03567C;
  }

  .s1440\:hover\:to-feedback-roxo:hover{
    --gradient-to-color: #d1c4e9;
  }

  .s1440\:hover\:to-feedback-error:hover{
    --gradient-to-color: #f44336;
  }

  .s1440\:hover\:to-feedback-success:hover{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:hover\:to-functional-aoki:hover{
    --gradient-to-color: #6f2ca0;
  }

  .s1440\:hover\:to-functional-aoki-dark:hover{
    --gradient-to-color: #3e0071;
  }

  .s1440\:hover\:to-functional-aoki-hocus:hover{
    --gradient-to-color: #9035af;
  }

  .s1440\:hover\:to-functional-aoki-active:hover{
    --gradient-to-color: #a04fbc;
  }

  .s1440\:hover\:to-functional-aoki-light:hover{
    --gradient-to-color: #a15ad2;
  }

  .s1440\:hover\:to-functional-kermit:hover{
    --gradient-to-color: #5aa120;
  }

  .s1440\:hover\:to-mixlabPlus-light:hover{
    --gradient-to-color: #FFFEF9;
  }

  .s1440\:hover\:to-primary-orange-light:hover{
    --gradient-to-color: ;
  }

  .s1440\:hover\:to-off-white:hover{
    --gradient-to-color: #FAF9F6;
  }

  .s1440\:focus\:from-black:focus{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:focus\:from-transparent:focus{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:focus\:from-error:focus{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:focus\:from-success:focus{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:focus\:from-white-10:focus{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:focus\:from-white-20:focus{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:focus\:from-white:focus{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:focus\:from-cheeto:focus{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:focus\:from-cheeto-very-light:focus{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:focus\:from-cheeto-light:focus{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:focus\:from-cheeto-dark:focus{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:focus\:from-cheeto-hocus:focus{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:focus\:from-cheeto-active:focus{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:focus\:from-cheeto-ml-plus:focus{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:focus\:from-cheeto-banner:focus{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:focus\:from-gracy-1:focus{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:focus\:from-gracy-10:focus{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:focus\:from-gracy-20:focus{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:focus\:from-gracy-30:focus{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:focus\:from-gracy-40:focus{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:focus\:from-gracy-50:focus{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:focus\:from-gracy-60:focus{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:focus\:from-gracy-70:focus{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:focus\:from-gracy-80:focus{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:focus\:from-gracy-90:focus{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:focus\:from-gracy-100:focus{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:focus\:from-gracy:focus{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:focus\:from-gracy-overlay-90:focus{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:focus\:from-login:focus{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:focus\:from-olive-light:focus{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:focus\:from-olive-drab:focus{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:focus\:from-olive-dark:focus{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:focus\:from-daisy-light:focus{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:focus\:from-feedback-gumby:focus{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:focus\:from-feedback-daisy:focus{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:focus\:from-feedback-pokey:focus{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:focus\:from-feedback-aster:focus{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:focus\:from-feedback-aster-dark:focus{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:focus\:from-feedback-roxo:focus{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:focus\:from-feedback-error:focus{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:focus\:from-feedback-success:focus{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:focus\:from-functional-aoki:focus{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:focus\:from-functional-aoki-dark:focus{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:focus\:from-functional-aoki-hocus:focus{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:focus\:from-functional-aoki-active:focus{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:focus\:from-functional-aoki-light:focus{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:focus\:from-functional-kermit:focus{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:focus\:from-mixlabPlus-light:focus{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:focus\:from-primary-orange-light:focus{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:focus\:from-off-white:focus{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:focus\:via-black:focus{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:focus\:via-transparent:focus{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:focus\:via-error:focus{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:focus\:via-success:focus{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:focus\:via-white-10:focus{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:focus\:via-white-20:focus{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:focus\:via-white:focus{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:focus\:via-cheeto:focus{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:focus\:via-cheeto-very-light:focus{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:focus\:via-cheeto-light:focus{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:focus\:via-cheeto-dark:focus{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:focus\:via-cheeto-hocus:focus{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:focus\:via-cheeto-active:focus{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:focus\:via-cheeto-ml-plus:focus{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:focus\:via-cheeto-banner:focus{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:focus\:via-gracy-1:focus{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:focus\:via-gracy-10:focus{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:focus\:via-gracy-20:focus{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:focus\:via-gracy-30:focus{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:focus\:via-gracy-40:focus{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:focus\:via-gracy-50:focus{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:focus\:via-gracy-60:focus{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:focus\:via-gracy-70:focus{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:focus\:via-gracy-80:focus{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:focus\:via-gracy-90:focus{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:focus\:via-gracy-100:focus{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:focus\:via-gracy:focus{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:focus\:via-gracy-overlay-90:focus{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:focus\:via-login:focus{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:focus\:via-olive-light:focus{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:focus\:via-olive-drab:focus{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:focus\:via-olive-dark:focus{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:focus\:via-daisy-light:focus{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:focus\:via-feedback-gumby:focus{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:focus\:via-feedback-daisy:focus{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:focus\:via-feedback-pokey:focus{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:focus\:via-feedback-aster:focus{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:focus\:via-feedback-aster-dark:focus{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:focus\:via-feedback-roxo:focus{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:focus\:via-feedback-error:focus{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:focus\:via-feedback-success:focus{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:focus\:via-functional-aoki:focus{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:focus\:via-functional-aoki-dark:focus{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:focus\:via-functional-aoki-hocus:focus{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:focus\:via-functional-aoki-active:focus{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:focus\:via-functional-aoki-light:focus{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:focus\:via-functional-kermit:focus{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:focus\:via-mixlabPlus-light:focus{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:focus\:via-primary-orange-light:focus{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:focus\:via-off-white:focus{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:focus\:to-black:focus{
    --gradient-to-color: #000000;
  }

  .s1440\:focus\:to-transparent:focus{
    --gradient-to-color: transparent;
  }

  .s1440\:focus\:to-error:focus{
    --gradient-to-color: #f44336;
  }

  .s1440\:focus\:to-success:focus{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:focus\:to-white-10:focus{
    --gradient-to-color: #FBFBFB;
  }

  .s1440\:focus\:to-white-20:focus{
    --gradient-to-color: #ECECEC;
  }

  .s1440\:focus\:to-white:focus{
    --gradient-to-color: #FFFFFF;
  }

  .s1440\:focus\:to-cheeto:focus{
    --gradient-to-color: #f7a500;
  }

  .s1440\:focus\:to-cheeto-very-light:focus{
    --gradient-to-color: #fffaf2;
  }

  .s1440\:focus\:to-cheeto-light:focus{
    --gradient-to-color: #ffd649;
  }

  .s1440\:focus\:to-cheeto-dark:focus{
    --gradient-to-color: #bf7600;
  }

  .s1440\:focus\:to-cheeto-hocus:focus{
    --gradient-to-color: #f8bd0f;
  }

  .s1440\:focus\:to-cheeto-active:focus{
    --gradient-to-color: #f8d61b;
  }

  .s1440\:focus\:to-cheeto-ml-plus:focus{
    --gradient-to-color: #FBEFCA;
  }

  .s1440\:focus\:to-cheeto-banner:focus{
    --gradient-to-color: #fef7e5;
  }

  .s1440\:focus\:to-gracy-1:focus{
    --gradient-to-color: #f8f8fa;
  }

  .s1440\:focus\:to-gracy-10:focus{
    --gradient-to-color: #faf7fd;
  }

  .s1440\:focus\:to-gracy-20:focus{
    --gradient-to-color: #e0dde3;
  }

  .s1440\:focus\:to-gracy-30:focus{
    --gradient-to-color: #c8c5ca;
  }

  .s1440\:focus\:to-gracy-40:focus{
    --gradient-to-color: #aeacb0;
  }

  .s1440\:focus\:to-gracy-50:focus{
    --gradient-to-color: #969497;
  }

  .s1440\:focus\:to-gracy-60:focus{
    --gradient-to-color: #7c7b7e;
  }

  .s1440\:focus\:to-gracy-70:focus{
    --gradient-to-color: #646265;
  }

  .s1440\:focus\:to-gracy-80:focus{
    --gradient-to-color: #4a494b;
  }

  .s1440\:focus\:to-gracy-90:focus{
    --gradient-to-color: #323132;
  }

  .s1440\:focus\:to-gracy-100:focus{
    --gradient-to-color: #181818;
  }

  .s1440\:focus\:to-gracy:focus{
    --gradient-to-color: #6F7878;
  }

  .s1440\:focus\:to-gracy-overlay-90:focus{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1440\:focus\:to-login:focus{
    --gradient-to-color: #FDF7E7;
  }

  .s1440\:focus\:to-olive-light:focus{
    --gradient-to-color: #DFF5F6;
  }

  .s1440\:focus\:to-olive-drab:focus{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:focus\:to-olive-dark:focus{
    --gradient-to-color: #096348;
  }

  .s1440\:focus\:to-daisy-light:focus{
    --gradient-to-color: #fffce1;
  }

  .s1440\:focus\:to-feedback-gumby:focus{
    --gradient-to-color: #c8e6c9;
  }

  .s1440\:focus\:to-feedback-daisy:focus{
    --gradient-to-color: #fff9c4;
  }

  .s1440\:focus\:to-feedback-pokey:focus{
    --gradient-to-color: #ffcdd2;
  }

  .s1440\:focus\:to-feedback-aster:focus{
    --gradient-to-color: #b3e5fc;
  }

  .s1440\:focus\:to-feedback-aster-dark:focus{
    --gradient-to-color: #03567C;
  }

  .s1440\:focus\:to-feedback-roxo:focus{
    --gradient-to-color: #d1c4e9;
  }

  .s1440\:focus\:to-feedback-error:focus{
    --gradient-to-color: #f44336;
  }

  .s1440\:focus\:to-feedback-success:focus{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:focus\:to-functional-aoki:focus{
    --gradient-to-color: #6f2ca0;
  }

  .s1440\:focus\:to-functional-aoki-dark:focus{
    --gradient-to-color: #3e0071;
  }

  .s1440\:focus\:to-functional-aoki-hocus:focus{
    --gradient-to-color: #9035af;
  }

  .s1440\:focus\:to-functional-aoki-active:focus{
    --gradient-to-color: #a04fbc;
  }

  .s1440\:focus\:to-functional-aoki-light:focus{
    --gradient-to-color: #a15ad2;
  }

  .s1440\:focus\:to-functional-kermit:focus{
    --gradient-to-color: #5aa120;
  }

  .s1440\:focus\:to-mixlabPlus-light:focus{
    --gradient-to-color: #FFFEF9;
  }

  .s1440\:focus\:to-primary-orange-light:focus{
    --gradient-to-color: ;
  }

  .s1440\:focus\:to-off-white:focus{
    --gradient-to-color: #FAF9F6;
  }

  .s1440\:active\:from-black:active{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:active\:from-transparent:active{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:active\:from-error:active{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:active\:from-success:active{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:active\:from-white-10:active{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:active\:from-white-20:active{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:active\:from-white:active{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:active\:from-cheeto:active{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:active\:from-cheeto-very-light:active{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:active\:from-cheeto-light:active{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:active\:from-cheeto-dark:active{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:active\:from-cheeto-hocus:active{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:active\:from-cheeto-active:active{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:active\:from-cheeto-ml-plus:active{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:active\:from-cheeto-banner:active{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:active\:from-gracy-1:active{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:active\:from-gracy-10:active{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:active\:from-gracy-20:active{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:active\:from-gracy-30:active{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:active\:from-gracy-40:active{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:active\:from-gracy-50:active{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:active\:from-gracy-60:active{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:active\:from-gracy-70:active{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:active\:from-gracy-80:active{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:active\:from-gracy-90:active{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:active\:from-gracy-100:active{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:active\:from-gracy:active{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:active\:from-gracy-overlay-90:active{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:active\:from-login:active{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:active\:from-olive-light:active{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:active\:from-olive-drab:active{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:active\:from-olive-dark:active{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:active\:from-daisy-light:active{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:active\:from-feedback-gumby:active{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:active\:from-feedback-daisy:active{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:active\:from-feedback-pokey:active{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:active\:from-feedback-aster:active{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:active\:from-feedback-aster-dark:active{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:active\:from-feedback-roxo:active{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:active\:from-feedback-error:active{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:active\:from-feedback-success:active{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:active\:from-functional-aoki:active{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:active\:from-functional-aoki-dark:active{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:active\:from-functional-aoki-hocus:active{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:active\:from-functional-aoki-active:active{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:active\:from-functional-aoki-light:active{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:active\:from-functional-kermit:active{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:active\:from-mixlabPlus-light:active{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:active\:from-primary-orange-light:active{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:active\:from-off-white:active{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:active\:via-black:active{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:active\:via-transparent:active{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:active\:via-error:active{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:active\:via-success:active{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:active\:via-white-10:active{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:active\:via-white-20:active{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:active\:via-white:active{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:active\:via-cheeto:active{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:active\:via-cheeto-very-light:active{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:active\:via-cheeto-light:active{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:active\:via-cheeto-dark:active{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:active\:via-cheeto-hocus:active{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:active\:via-cheeto-active:active{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:active\:via-cheeto-ml-plus:active{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:active\:via-cheeto-banner:active{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:active\:via-gracy-1:active{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:active\:via-gracy-10:active{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:active\:via-gracy-20:active{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:active\:via-gracy-30:active{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:active\:via-gracy-40:active{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:active\:via-gracy-50:active{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:active\:via-gracy-60:active{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:active\:via-gracy-70:active{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:active\:via-gracy-80:active{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:active\:via-gracy-90:active{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:active\:via-gracy-100:active{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:active\:via-gracy:active{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:active\:via-gracy-overlay-90:active{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:active\:via-login:active{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:active\:via-olive-light:active{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:active\:via-olive-drab:active{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:active\:via-olive-dark:active{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:active\:via-daisy-light:active{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:active\:via-feedback-gumby:active{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:active\:via-feedback-daisy:active{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:active\:via-feedback-pokey:active{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:active\:via-feedback-aster:active{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:active\:via-feedback-aster-dark:active{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:active\:via-feedback-roxo:active{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:active\:via-feedback-error:active{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:active\:via-feedback-success:active{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:active\:via-functional-aoki:active{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:active\:via-functional-aoki-dark:active{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:active\:via-functional-aoki-hocus:active{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:active\:via-functional-aoki-active:active{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:active\:via-functional-aoki-light:active{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:active\:via-functional-kermit:active{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:active\:via-mixlabPlus-light:active{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:active\:via-primary-orange-light:active{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:active\:via-off-white:active{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:active\:to-black:active{
    --gradient-to-color: #000000;
  }

  .s1440\:active\:to-transparent:active{
    --gradient-to-color: transparent;
  }

  .s1440\:active\:to-error:active{
    --gradient-to-color: #f44336;
  }

  .s1440\:active\:to-success:active{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:active\:to-white-10:active{
    --gradient-to-color: #FBFBFB;
  }

  .s1440\:active\:to-white-20:active{
    --gradient-to-color: #ECECEC;
  }

  .s1440\:active\:to-white:active{
    --gradient-to-color: #FFFFFF;
  }

  .s1440\:active\:to-cheeto:active{
    --gradient-to-color: #f7a500;
  }

  .s1440\:active\:to-cheeto-very-light:active{
    --gradient-to-color: #fffaf2;
  }

  .s1440\:active\:to-cheeto-light:active{
    --gradient-to-color: #ffd649;
  }

  .s1440\:active\:to-cheeto-dark:active{
    --gradient-to-color: #bf7600;
  }

  .s1440\:active\:to-cheeto-hocus:active{
    --gradient-to-color: #f8bd0f;
  }

  .s1440\:active\:to-cheeto-active:active{
    --gradient-to-color: #f8d61b;
  }

  .s1440\:active\:to-cheeto-ml-plus:active{
    --gradient-to-color: #FBEFCA;
  }

  .s1440\:active\:to-cheeto-banner:active{
    --gradient-to-color: #fef7e5;
  }

  .s1440\:active\:to-gracy-1:active{
    --gradient-to-color: #f8f8fa;
  }

  .s1440\:active\:to-gracy-10:active{
    --gradient-to-color: #faf7fd;
  }

  .s1440\:active\:to-gracy-20:active{
    --gradient-to-color: #e0dde3;
  }

  .s1440\:active\:to-gracy-30:active{
    --gradient-to-color: #c8c5ca;
  }

  .s1440\:active\:to-gracy-40:active{
    --gradient-to-color: #aeacb0;
  }

  .s1440\:active\:to-gracy-50:active{
    --gradient-to-color: #969497;
  }

  .s1440\:active\:to-gracy-60:active{
    --gradient-to-color: #7c7b7e;
  }

  .s1440\:active\:to-gracy-70:active{
    --gradient-to-color: #646265;
  }

  .s1440\:active\:to-gracy-80:active{
    --gradient-to-color: #4a494b;
  }

  .s1440\:active\:to-gracy-90:active{
    --gradient-to-color: #323132;
  }

  .s1440\:active\:to-gracy-100:active{
    --gradient-to-color: #181818;
  }

  .s1440\:active\:to-gracy:active{
    --gradient-to-color: #6F7878;
  }

  .s1440\:active\:to-gracy-overlay-90:active{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1440\:active\:to-login:active{
    --gradient-to-color: #FDF7E7;
  }

  .s1440\:active\:to-olive-light:active{
    --gradient-to-color: #DFF5F6;
  }

  .s1440\:active\:to-olive-drab:active{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:active\:to-olive-dark:active{
    --gradient-to-color: #096348;
  }

  .s1440\:active\:to-daisy-light:active{
    --gradient-to-color: #fffce1;
  }

  .s1440\:active\:to-feedback-gumby:active{
    --gradient-to-color: #c8e6c9;
  }

  .s1440\:active\:to-feedback-daisy:active{
    --gradient-to-color: #fff9c4;
  }

  .s1440\:active\:to-feedback-pokey:active{
    --gradient-to-color: #ffcdd2;
  }

  .s1440\:active\:to-feedback-aster:active{
    --gradient-to-color: #b3e5fc;
  }

  .s1440\:active\:to-feedback-aster-dark:active{
    --gradient-to-color: #03567C;
  }

  .s1440\:active\:to-feedback-roxo:active{
    --gradient-to-color: #d1c4e9;
  }

  .s1440\:active\:to-feedback-error:active{
    --gradient-to-color: #f44336;
  }

  .s1440\:active\:to-feedback-success:active{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:active\:to-functional-aoki:active{
    --gradient-to-color: #6f2ca0;
  }

  .s1440\:active\:to-functional-aoki-dark:active{
    --gradient-to-color: #3e0071;
  }

  .s1440\:active\:to-functional-aoki-hocus:active{
    --gradient-to-color: #9035af;
  }

  .s1440\:active\:to-functional-aoki-active:active{
    --gradient-to-color: #a04fbc;
  }

  .s1440\:active\:to-functional-aoki-light:active{
    --gradient-to-color: #a15ad2;
  }

  .s1440\:active\:to-functional-kermit:active{
    --gradient-to-color: #5aa120;
  }

  .s1440\:active\:to-mixlabPlus-light:active{
    --gradient-to-color: #FFFEF9;
  }

  .s1440\:active\:to-primary-orange-light:active{
    --gradient-to-color: ;
  }

  .s1440\:active\:to-off-white:active{
    --gradient-to-color: #FAF9F6;
  }

  .s1440\:first\:from-black:first-child{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:first\:from-transparent:first-child{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:first\:from-error:first-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:first\:from-success:first-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:first\:from-white-10:first-child{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:first\:from-white-20:first-child{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:first\:from-white:first-child{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:first\:from-cheeto:first-child{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:first\:from-cheeto-very-light:first-child{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:first\:from-cheeto-light:first-child{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:first\:from-cheeto-dark:first-child{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:first\:from-cheeto-hocus:first-child{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:first\:from-cheeto-active:first-child{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:first\:from-cheeto-ml-plus:first-child{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:first\:from-cheeto-banner:first-child{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:first\:from-gracy-1:first-child{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:first\:from-gracy-10:first-child{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:first\:from-gracy-20:first-child{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:first\:from-gracy-30:first-child{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:first\:from-gracy-40:first-child{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:first\:from-gracy-50:first-child{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:first\:from-gracy-60:first-child{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:first\:from-gracy-70:first-child{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:first\:from-gracy-80:first-child{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:first\:from-gracy-90:first-child{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:first\:from-gracy-100:first-child{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:first\:from-gracy:first-child{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:first\:from-gracy-overlay-90:first-child{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:first\:from-login:first-child{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:first\:from-olive-light:first-child{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:first\:from-olive-drab:first-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:first\:from-olive-dark:first-child{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:first\:from-daisy-light:first-child{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:first\:from-feedback-gumby:first-child{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:first\:from-feedback-daisy:first-child{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:first\:from-feedback-pokey:first-child{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:first\:from-feedback-aster:first-child{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:first\:from-feedback-aster-dark:first-child{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:first\:from-feedback-roxo:first-child{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:first\:from-feedback-error:first-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:first\:from-feedback-success:first-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:first\:from-functional-aoki:first-child{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:first\:from-functional-aoki-dark:first-child{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:first\:from-functional-aoki-hocus:first-child{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:first\:from-functional-aoki-active:first-child{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:first\:from-functional-aoki-light:first-child{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:first\:from-functional-kermit:first-child{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:first\:from-mixlabPlus-light:first-child{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:first\:from-primary-orange-light:first-child{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:first\:from-off-white:first-child{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:first\:via-black:first-child{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:first\:via-transparent:first-child{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:first\:via-error:first-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:first\:via-success:first-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:first\:via-white-10:first-child{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:first\:via-white-20:first-child{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:first\:via-white:first-child{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:first\:via-cheeto:first-child{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:first\:via-cheeto-very-light:first-child{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:first\:via-cheeto-light:first-child{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:first\:via-cheeto-dark:first-child{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:first\:via-cheeto-hocus:first-child{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:first\:via-cheeto-active:first-child{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:first\:via-cheeto-ml-plus:first-child{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:first\:via-cheeto-banner:first-child{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:first\:via-gracy-1:first-child{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:first\:via-gracy-10:first-child{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:first\:via-gracy-20:first-child{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:first\:via-gracy-30:first-child{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:first\:via-gracy-40:first-child{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:first\:via-gracy-50:first-child{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:first\:via-gracy-60:first-child{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:first\:via-gracy-70:first-child{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:first\:via-gracy-80:first-child{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:first\:via-gracy-90:first-child{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:first\:via-gracy-100:first-child{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:first\:via-gracy:first-child{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:first\:via-gracy-overlay-90:first-child{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:first\:via-login:first-child{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:first\:via-olive-light:first-child{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:first\:via-olive-drab:first-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:first\:via-olive-dark:first-child{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:first\:via-daisy-light:first-child{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:first\:via-feedback-gumby:first-child{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:first\:via-feedback-daisy:first-child{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:first\:via-feedback-pokey:first-child{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:first\:via-feedback-aster:first-child{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:first\:via-feedback-aster-dark:first-child{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:first\:via-feedback-roxo:first-child{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:first\:via-feedback-error:first-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:first\:via-feedback-success:first-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:first\:via-functional-aoki:first-child{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:first\:via-functional-aoki-dark:first-child{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:first\:via-functional-aoki-hocus:first-child{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:first\:via-functional-aoki-active:first-child{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:first\:via-functional-aoki-light:first-child{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:first\:via-functional-kermit:first-child{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:first\:via-mixlabPlus-light:first-child{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:first\:via-primary-orange-light:first-child{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:first\:via-off-white:first-child{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:first\:to-black:first-child{
    --gradient-to-color: #000000;
  }

  .s1440\:first\:to-transparent:first-child{
    --gradient-to-color: transparent;
  }

  .s1440\:first\:to-error:first-child{
    --gradient-to-color: #f44336;
  }

  .s1440\:first\:to-success:first-child{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:first\:to-white-10:first-child{
    --gradient-to-color: #FBFBFB;
  }

  .s1440\:first\:to-white-20:first-child{
    --gradient-to-color: #ECECEC;
  }

  .s1440\:first\:to-white:first-child{
    --gradient-to-color: #FFFFFF;
  }

  .s1440\:first\:to-cheeto:first-child{
    --gradient-to-color: #f7a500;
  }

  .s1440\:first\:to-cheeto-very-light:first-child{
    --gradient-to-color: #fffaf2;
  }

  .s1440\:first\:to-cheeto-light:first-child{
    --gradient-to-color: #ffd649;
  }

  .s1440\:first\:to-cheeto-dark:first-child{
    --gradient-to-color: #bf7600;
  }

  .s1440\:first\:to-cheeto-hocus:first-child{
    --gradient-to-color: #f8bd0f;
  }

  .s1440\:first\:to-cheeto-active:first-child{
    --gradient-to-color: #f8d61b;
  }

  .s1440\:first\:to-cheeto-ml-plus:first-child{
    --gradient-to-color: #FBEFCA;
  }

  .s1440\:first\:to-cheeto-banner:first-child{
    --gradient-to-color: #fef7e5;
  }

  .s1440\:first\:to-gracy-1:first-child{
    --gradient-to-color: #f8f8fa;
  }

  .s1440\:first\:to-gracy-10:first-child{
    --gradient-to-color: #faf7fd;
  }

  .s1440\:first\:to-gracy-20:first-child{
    --gradient-to-color: #e0dde3;
  }

  .s1440\:first\:to-gracy-30:first-child{
    --gradient-to-color: #c8c5ca;
  }

  .s1440\:first\:to-gracy-40:first-child{
    --gradient-to-color: #aeacb0;
  }

  .s1440\:first\:to-gracy-50:first-child{
    --gradient-to-color: #969497;
  }

  .s1440\:first\:to-gracy-60:first-child{
    --gradient-to-color: #7c7b7e;
  }

  .s1440\:first\:to-gracy-70:first-child{
    --gradient-to-color: #646265;
  }

  .s1440\:first\:to-gracy-80:first-child{
    --gradient-to-color: #4a494b;
  }

  .s1440\:first\:to-gracy-90:first-child{
    --gradient-to-color: #323132;
  }

  .s1440\:first\:to-gracy-100:first-child{
    --gradient-to-color: #181818;
  }

  .s1440\:first\:to-gracy:first-child{
    --gradient-to-color: #6F7878;
  }

  .s1440\:first\:to-gracy-overlay-90:first-child{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1440\:first\:to-login:first-child{
    --gradient-to-color: #FDF7E7;
  }

  .s1440\:first\:to-olive-light:first-child{
    --gradient-to-color: #DFF5F6;
  }

  .s1440\:first\:to-olive-drab:first-child{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:first\:to-olive-dark:first-child{
    --gradient-to-color: #096348;
  }

  .s1440\:first\:to-daisy-light:first-child{
    --gradient-to-color: #fffce1;
  }

  .s1440\:first\:to-feedback-gumby:first-child{
    --gradient-to-color: #c8e6c9;
  }

  .s1440\:first\:to-feedback-daisy:first-child{
    --gradient-to-color: #fff9c4;
  }

  .s1440\:first\:to-feedback-pokey:first-child{
    --gradient-to-color: #ffcdd2;
  }

  .s1440\:first\:to-feedback-aster:first-child{
    --gradient-to-color: #b3e5fc;
  }

  .s1440\:first\:to-feedback-aster-dark:first-child{
    --gradient-to-color: #03567C;
  }

  .s1440\:first\:to-feedback-roxo:first-child{
    --gradient-to-color: #d1c4e9;
  }

  .s1440\:first\:to-feedback-error:first-child{
    --gradient-to-color: #f44336;
  }

  .s1440\:first\:to-feedback-success:first-child{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:first\:to-functional-aoki:first-child{
    --gradient-to-color: #6f2ca0;
  }

  .s1440\:first\:to-functional-aoki-dark:first-child{
    --gradient-to-color: #3e0071;
  }

  .s1440\:first\:to-functional-aoki-hocus:first-child{
    --gradient-to-color: #9035af;
  }

  .s1440\:first\:to-functional-aoki-active:first-child{
    --gradient-to-color: #a04fbc;
  }

  .s1440\:first\:to-functional-aoki-light:first-child{
    --gradient-to-color: #a15ad2;
  }

  .s1440\:first\:to-functional-kermit:first-child{
    --gradient-to-color: #5aa120;
  }

  .s1440\:first\:to-mixlabPlus-light:first-child{
    --gradient-to-color: #FFFEF9;
  }

  .s1440\:first\:to-primary-orange-light:first-child{
    --gradient-to-color: ;
  }

  .s1440\:first\:to-off-white:first-child{
    --gradient-to-color: #FAF9F6;
  }

  .s1440\:last\:from-black:last-child{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:last\:from-transparent:last-child{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:last\:from-error:last-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:last\:from-success:last-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:last\:from-white-10:last-child{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:last\:from-white-20:last-child{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:last\:from-white:last-child{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:last\:from-cheeto:last-child{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:last\:from-cheeto-very-light:last-child{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:last\:from-cheeto-light:last-child{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:last\:from-cheeto-dark:last-child{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:last\:from-cheeto-hocus:last-child{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:last\:from-cheeto-active:last-child{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:last\:from-cheeto-ml-plus:last-child{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:last\:from-cheeto-banner:last-child{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:last\:from-gracy-1:last-child{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:last\:from-gracy-10:last-child{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:last\:from-gracy-20:last-child{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:last\:from-gracy-30:last-child{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:last\:from-gracy-40:last-child{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:last\:from-gracy-50:last-child{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:last\:from-gracy-60:last-child{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:last\:from-gracy-70:last-child{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:last\:from-gracy-80:last-child{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:last\:from-gracy-90:last-child{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:last\:from-gracy-100:last-child{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:last\:from-gracy:last-child{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:last\:from-gracy-overlay-90:last-child{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:last\:from-login:last-child{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:last\:from-olive-light:last-child{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:last\:from-olive-drab:last-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:last\:from-olive-dark:last-child{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:last\:from-daisy-light:last-child{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:last\:from-feedback-gumby:last-child{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:last\:from-feedback-daisy:last-child{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:last\:from-feedback-pokey:last-child{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:last\:from-feedback-aster:last-child{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:last\:from-feedback-aster-dark:last-child{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:last\:from-feedback-roxo:last-child{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:last\:from-feedback-error:last-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:last\:from-feedback-success:last-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:last\:from-functional-aoki:last-child{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:last\:from-functional-aoki-dark:last-child{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:last\:from-functional-aoki-hocus:last-child{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:last\:from-functional-aoki-active:last-child{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:last\:from-functional-aoki-light:last-child{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:last\:from-functional-kermit:last-child{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:last\:from-mixlabPlus-light:last-child{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:last\:from-primary-orange-light:last-child{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:last\:from-off-white:last-child{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:last\:via-black:last-child{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:last\:via-transparent:last-child{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1440\:last\:via-error:last-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:last\:via-success:last-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:last\:via-white-10:last-child{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1440\:last\:via-white-20:last-child{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1440\:last\:via-white:last-child{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:last\:via-cheeto:last-child{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1440\:last\:via-cheeto-very-light:last-child{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1440\:last\:via-cheeto-light:last-child{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1440\:last\:via-cheeto-dark:last-child{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1440\:last\:via-cheeto-hocus:last-child{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1440\:last\:via-cheeto-active:last-child{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1440\:last\:via-cheeto-ml-plus:last-child{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1440\:last\:via-cheeto-banner:last-child{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1440\:last\:via-gracy-1:last-child{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1440\:last\:via-gracy-10:last-child{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1440\:last\:via-gracy-20:last-child{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1440\:last\:via-gracy-30:last-child{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1440\:last\:via-gracy-40:last-child{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1440\:last\:via-gracy-50:last-child{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1440\:last\:via-gracy-60:last-child{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1440\:last\:via-gracy-70:last-child{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1440\:last\:via-gracy-80:last-child{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1440\:last\:via-gracy-90:last-child{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:last\:via-gracy-100:last-child{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1440\:last\:via-gracy:last-child{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1440\:last\:via-gracy-overlay-90:last-child{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1440\:last\:via-login:last-child{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1440\:last\:via-olive-light:last-child{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1440\:last\:via-olive-drab:last-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:last\:via-olive-dark:last-child{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1440\:last\:via-daisy-light:last-child{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1440\:last\:via-feedback-gumby:last-child{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1440\:last\:via-feedback-daisy:last-child{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1440\:last\:via-feedback-pokey:last-child{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1440\:last\:via-feedback-aster:last-child{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1440\:last\:via-feedback-aster-dark:last-child{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1440\:last\:via-feedback-roxo:last-child{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1440\:last\:via-feedback-error:last-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1440\:last\:via-feedback-success:last-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1440\:last\:via-functional-aoki:last-child{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1440\:last\:via-functional-aoki-dark:last-child{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1440\:last\:via-functional-aoki-hocus:last-child{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1440\:last\:via-functional-aoki-active:last-child{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1440\:last\:via-functional-aoki-light:last-child{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1440\:last\:via-functional-kermit:last-child{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1440\:last\:via-mixlabPlus-light:last-child{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1440\:last\:via-primary-orange-light:last-child{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1440\:last\:via-off-white:last-child{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1440\:last\:to-black:last-child{
    --gradient-to-color: #000000;
  }

  .s1440\:last\:to-transparent:last-child{
    --gradient-to-color: transparent;
  }

  .s1440\:last\:to-error:last-child{
    --gradient-to-color: #f44336;
  }

  .s1440\:last\:to-success:last-child{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:last\:to-white-10:last-child{
    --gradient-to-color: #FBFBFB;
  }

  .s1440\:last\:to-white-20:last-child{
    --gradient-to-color: #ECECEC;
  }

  .s1440\:last\:to-white:last-child{
    --gradient-to-color: #FFFFFF;
  }

  .s1440\:last\:to-cheeto:last-child{
    --gradient-to-color: #f7a500;
  }

  .s1440\:last\:to-cheeto-very-light:last-child{
    --gradient-to-color: #fffaf2;
  }

  .s1440\:last\:to-cheeto-light:last-child{
    --gradient-to-color: #ffd649;
  }

  .s1440\:last\:to-cheeto-dark:last-child{
    --gradient-to-color: #bf7600;
  }

  .s1440\:last\:to-cheeto-hocus:last-child{
    --gradient-to-color: #f8bd0f;
  }

  .s1440\:last\:to-cheeto-active:last-child{
    --gradient-to-color: #f8d61b;
  }

  .s1440\:last\:to-cheeto-ml-plus:last-child{
    --gradient-to-color: #FBEFCA;
  }

  .s1440\:last\:to-cheeto-banner:last-child{
    --gradient-to-color: #fef7e5;
  }

  .s1440\:last\:to-gracy-1:last-child{
    --gradient-to-color: #f8f8fa;
  }

  .s1440\:last\:to-gracy-10:last-child{
    --gradient-to-color: #faf7fd;
  }

  .s1440\:last\:to-gracy-20:last-child{
    --gradient-to-color: #e0dde3;
  }

  .s1440\:last\:to-gracy-30:last-child{
    --gradient-to-color: #c8c5ca;
  }

  .s1440\:last\:to-gracy-40:last-child{
    --gradient-to-color: #aeacb0;
  }

  .s1440\:last\:to-gracy-50:last-child{
    --gradient-to-color: #969497;
  }

  .s1440\:last\:to-gracy-60:last-child{
    --gradient-to-color: #7c7b7e;
  }

  .s1440\:last\:to-gracy-70:last-child{
    --gradient-to-color: #646265;
  }

  .s1440\:last\:to-gracy-80:last-child{
    --gradient-to-color: #4a494b;
  }

  .s1440\:last\:to-gracy-90:last-child{
    --gradient-to-color: #323132;
  }

  .s1440\:last\:to-gracy-100:last-child{
    --gradient-to-color: #181818;
  }

  .s1440\:last\:to-gracy:last-child{
    --gradient-to-color: #6F7878;
  }

  .s1440\:last\:to-gracy-overlay-90:last-child{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1440\:last\:to-login:last-child{
    --gradient-to-color: #FDF7E7;
  }

  .s1440\:last\:to-olive-light:last-child{
    --gradient-to-color: #DFF5F6;
  }

  .s1440\:last\:to-olive-drab:last-child{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:last\:to-olive-dark:last-child{
    --gradient-to-color: #096348;
  }

  .s1440\:last\:to-daisy-light:last-child{
    --gradient-to-color: #fffce1;
  }

  .s1440\:last\:to-feedback-gumby:last-child{
    --gradient-to-color: #c8e6c9;
  }

  .s1440\:last\:to-feedback-daisy:last-child{
    --gradient-to-color: #fff9c4;
  }

  .s1440\:last\:to-feedback-pokey:last-child{
    --gradient-to-color: #ffcdd2;
  }

  .s1440\:last\:to-feedback-aster:last-child{
    --gradient-to-color: #b3e5fc;
  }

  .s1440\:last\:to-feedback-aster-dark:last-child{
    --gradient-to-color: #03567C;
  }

  .s1440\:last\:to-feedback-roxo:last-child{
    --gradient-to-color: #d1c4e9;
  }

  .s1440\:last\:to-feedback-error:last-child{
    --gradient-to-color: #f44336;
  }

  .s1440\:last\:to-feedback-success:last-child{
    --gradient-to-color: #5ca02c;
  }

  .s1440\:last\:to-functional-aoki:last-child{
    --gradient-to-color: #6f2ca0;
  }

  .s1440\:last\:to-functional-aoki-dark:last-child{
    --gradient-to-color: #3e0071;
  }

  .s1440\:last\:to-functional-aoki-hocus:last-child{
    --gradient-to-color: #9035af;
  }

  .s1440\:last\:to-functional-aoki-active:last-child{
    --gradient-to-color: #a04fbc;
  }

  .s1440\:last\:to-functional-aoki-light:last-child{
    --gradient-to-color: #a15ad2;
  }

  .s1440\:last\:to-functional-kermit:last-child{
    --gradient-to-color: #5aa120;
  }

  .s1440\:last\:to-mixlabPlus-light:last-child{
    --gradient-to-color: #FFFEF9;
  }

  .s1440\:last\:to-primary-orange-light:last-child{
    --gradient-to-color: ;
  }

  .s1440\:last\:to-off-white:last-child{
    --gradient-to-color: #FAF9F6;
  }

  .s1440\:bg-opacity-0{
    --bg-opacity: 0;
  }

  .s1440\:bg-opacity-25{
    --bg-opacity: 0.25;
  }

  .s1440\:bg-opacity-50{
    --bg-opacity: .5;
  }

  .s1440\:bg-opacity-75{
    --bg-opacity: 0.75;
  }

  .s1440\:bg-opacity-80{
    --bg-opacity: .8;
  }

  .s1440\:bg-opacity-100{
    --bg-opacity: 1;
  }

  .s1440\:hover\:bg-opacity-0:hover{
    --bg-opacity: 0;
  }

  .s1440\:hover\:bg-opacity-25:hover{
    --bg-opacity: 0.25;
  }

  .s1440\:hover\:bg-opacity-50:hover{
    --bg-opacity: .5;
  }

  .s1440\:hover\:bg-opacity-75:hover{
    --bg-opacity: 0.75;
  }

  .s1440\:hover\:bg-opacity-80:hover{
    --bg-opacity: .8;
  }

  .s1440\:hover\:bg-opacity-100:hover{
    --bg-opacity: 1;
  }

  .s1440\:focus\:bg-opacity-0:focus{
    --bg-opacity: 0;
  }

  .s1440\:focus\:bg-opacity-25:focus{
    --bg-opacity: 0.25;
  }

  .s1440\:focus\:bg-opacity-50:focus{
    --bg-opacity: .5;
  }

  .s1440\:focus\:bg-opacity-75:focus{
    --bg-opacity: 0.75;
  }

  .s1440\:focus\:bg-opacity-80:focus{
    --bg-opacity: .8;
  }

  .s1440\:focus\:bg-opacity-100:focus{
    --bg-opacity: 1;
  }

  .s1440\:active\:bg-opacity-0:active{
    --bg-opacity: 0;
  }

  .s1440\:active\:bg-opacity-25:active{
    --bg-opacity: 0.25;
  }

  .s1440\:active\:bg-opacity-50:active{
    --bg-opacity: .5;
  }

  .s1440\:active\:bg-opacity-75:active{
    --bg-opacity: 0.75;
  }

  .s1440\:active\:bg-opacity-80:active{
    --bg-opacity: .8;
  }

  .s1440\:active\:bg-opacity-100:active{
    --bg-opacity: 1;
  }

  .s1440\:first\:bg-opacity-0:first-child{
    --bg-opacity: 0;
  }

  .s1440\:first\:bg-opacity-25:first-child{
    --bg-opacity: 0.25;
  }

  .s1440\:first\:bg-opacity-50:first-child{
    --bg-opacity: .5;
  }

  .s1440\:first\:bg-opacity-75:first-child{
    --bg-opacity: 0.75;
  }

  .s1440\:first\:bg-opacity-80:first-child{
    --bg-opacity: .8;
  }

  .s1440\:first\:bg-opacity-100:first-child{
    --bg-opacity: 1;
  }

  .s1440\:last\:bg-opacity-0:last-child{
    --bg-opacity: 0;
  }

  .s1440\:last\:bg-opacity-25:last-child{
    --bg-opacity: 0.25;
  }

  .s1440\:last\:bg-opacity-50:last-child{
    --bg-opacity: .5;
  }

  .s1440\:last\:bg-opacity-75:last-child{
    --bg-opacity: 0.75;
  }

  .s1440\:last\:bg-opacity-80:last-child{
    --bg-opacity: .8;
  }

  .s1440\:last\:bg-opacity-100:last-child{
    --bg-opacity: 1;
  }

  .s1440\:bg-bottom{
    background-position: bottom;
  }

  .s1440\:bg-center{
    background-position: center;
  }

  .s1440\:bg-left{
    background-position: left;
  }

  .s1440\:bg-left-bottom{
    background-position: left bottom;
  }

  .s1440\:bg-left-top{
    background-position: left top;
  }

  .s1440\:bg-right{
    background-position: right;
  }

  .s1440\:bg-right-bottom{
    background-position: right bottom;
  }

  .s1440\:bg-right-top{
    background-position: right top;
  }

  .s1440\:bg-top{
    background-position: top;
  }

  .s1440\:hover\:bg-bottom:hover{
    background-position: bottom;
  }

  .s1440\:hover\:bg-center:hover{
    background-position: center;
  }

  .s1440\:hover\:bg-left:hover{
    background-position: left;
  }

  .s1440\:hover\:bg-left-bottom:hover{
    background-position: left bottom;
  }

  .s1440\:hover\:bg-left-top:hover{
    background-position: left top;
  }

  .s1440\:hover\:bg-right:hover{
    background-position: right;
  }

  .s1440\:hover\:bg-right-bottom:hover{
    background-position: right bottom;
  }

  .s1440\:hover\:bg-right-top:hover{
    background-position: right top;
  }

  .s1440\:hover\:bg-top:hover{
    background-position: top;
  }

  .s1440\:focus\:bg-bottom:focus{
    background-position: bottom;
  }

  .s1440\:focus\:bg-center:focus{
    background-position: center;
  }

  .s1440\:focus\:bg-left:focus{
    background-position: left;
  }

  .s1440\:focus\:bg-left-bottom:focus{
    background-position: left bottom;
  }

  .s1440\:focus\:bg-left-top:focus{
    background-position: left top;
  }

  .s1440\:focus\:bg-right:focus{
    background-position: right;
  }

  .s1440\:focus\:bg-right-bottom:focus{
    background-position: right bottom;
  }

  .s1440\:focus\:bg-right-top:focus{
    background-position: right top;
  }

  .s1440\:focus\:bg-top:focus{
    background-position: top;
  }

  .s1440\:active\:bg-bottom:active{
    background-position: bottom;
  }

  .s1440\:active\:bg-center:active{
    background-position: center;
  }

  .s1440\:active\:bg-left:active{
    background-position: left;
  }

  .s1440\:active\:bg-left-bottom:active{
    background-position: left bottom;
  }

  .s1440\:active\:bg-left-top:active{
    background-position: left top;
  }

  .s1440\:active\:bg-right:active{
    background-position: right;
  }

  .s1440\:active\:bg-right-bottom:active{
    background-position: right bottom;
  }

  .s1440\:active\:bg-right-top:active{
    background-position: right top;
  }

  .s1440\:active\:bg-top:active{
    background-position: top;
  }

  .s1440\:first\:bg-bottom:first-child{
    background-position: bottom;
  }

  .s1440\:first\:bg-center:first-child{
    background-position: center;
  }

  .s1440\:first\:bg-left:first-child{
    background-position: left;
  }

  .s1440\:first\:bg-left-bottom:first-child{
    background-position: left bottom;
  }

  .s1440\:first\:bg-left-top:first-child{
    background-position: left top;
  }

  .s1440\:first\:bg-right:first-child{
    background-position: right;
  }

  .s1440\:first\:bg-right-bottom:first-child{
    background-position: right bottom;
  }

  .s1440\:first\:bg-right-top:first-child{
    background-position: right top;
  }

  .s1440\:first\:bg-top:first-child{
    background-position: top;
  }

  .s1440\:last\:bg-bottom:last-child{
    background-position: bottom;
  }

  .s1440\:last\:bg-center:last-child{
    background-position: center;
  }

  .s1440\:last\:bg-left:last-child{
    background-position: left;
  }

  .s1440\:last\:bg-left-bottom:last-child{
    background-position: left bottom;
  }

  .s1440\:last\:bg-left-top:last-child{
    background-position: left top;
  }

  .s1440\:last\:bg-right:last-child{
    background-position: right;
  }

  .s1440\:last\:bg-right-bottom:last-child{
    background-position: right bottom;
  }

  .s1440\:last\:bg-right-top:last-child{
    background-position: right top;
  }

  .s1440\:last\:bg-top:last-child{
    background-position: top;
  }

  .s1440\:bg-repeat{
    background-repeat: repeat;
  }

  .s1440\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .s1440\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .s1440\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .s1440\:bg-repeat-round{
    background-repeat: round;
  }

  .s1440\:bg-repeat-space{
    background-repeat: space;
  }

  .s1440\:hover\:bg-repeat:hover{
    background-repeat: repeat;
  }

  .s1440\:hover\:bg-no-repeat:hover{
    background-repeat: no-repeat;
  }

  .s1440\:hover\:bg-repeat-x:hover{
    background-repeat: repeat-x;
  }

  .s1440\:hover\:bg-repeat-y:hover{
    background-repeat: repeat-y;
  }

  .s1440\:hover\:bg-repeat-round:hover{
    background-repeat: round;
  }

  .s1440\:hover\:bg-repeat-space:hover{
    background-repeat: space;
  }

  .s1440\:focus\:bg-repeat:focus{
    background-repeat: repeat;
  }

  .s1440\:focus\:bg-no-repeat:focus{
    background-repeat: no-repeat;
  }

  .s1440\:focus\:bg-repeat-x:focus{
    background-repeat: repeat-x;
  }

  .s1440\:focus\:bg-repeat-y:focus{
    background-repeat: repeat-y;
  }

  .s1440\:focus\:bg-repeat-round:focus{
    background-repeat: round;
  }

  .s1440\:focus\:bg-repeat-space:focus{
    background-repeat: space;
  }

  .s1440\:active\:bg-repeat:active{
    background-repeat: repeat;
  }

  .s1440\:active\:bg-no-repeat:active{
    background-repeat: no-repeat;
  }

  .s1440\:active\:bg-repeat-x:active{
    background-repeat: repeat-x;
  }

  .s1440\:active\:bg-repeat-y:active{
    background-repeat: repeat-y;
  }

  .s1440\:active\:bg-repeat-round:active{
    background-repeat: round;
  }

  .s1440\:active\:bg-repeat-space:active{
    background-repeat: space;
  }

  .s1440\:first\:bg-repeat:first-child{
    background-repeat: repeat;
  }

  .s1440\:first\:bg-no-repeat:first-child{
    background-repeat: no-repeat;
  }

  .s1440\:first\:bg-repeat-x:first-child{
    background-repeat: repeat-x;
  }

  .s1440\:first\:bg-repeat-y:first-child{
    background-repeat: repeat-y;
  }

  .s1440\:first\:bg-repeat-round:first-child{
    background-repeat: round;
  }

  .s1440\:first\:bg-repeat-space:first-child{
    background-repeat: space;
  }

  .s1440\:last\:bg-repeat:last-child{
    background-repeat: repeat;
  }

  .s1440\:last\:bg-no-repeat:last-child{
    background-repeat: no-repeat;
  }

  .s1440\:last\:bg-repeat-x:last-child{
    background-repeat: repeat-x;
  }

  .s1440\:last\:bg-repeat-y:last-child{
    background-repeat: repeat-y;
  }

  .s1440\:last\:bg-repeat-round:last-child{
    background-repeat: round;
  }

  .s1440\:last\:bg-repeat-space:last-child{
    background-repeat: space;
  }

  .s1440\:bg-auto{
    background-size: auto;
  }

  .s1440\:bg-cover{
    background-size: cover;
  }

  .s1440\:bg-contain{
    background-size: contain;
  }

  .s1440\:hover\:bg-auto:hover{
    background-size: auto;
  }

  .s1440\:hover\:bg-cover:hover{
    background-size: cover;
  }

  .s1440\:hover\:bg-contain:hover{
    background-size: contain;
  }

  .s1440\:focus\:bg-auto:focus{
    background-size: auto;
  }

  .s1440\:focus\:bg-cover:focus{
    background-size: cover;
  }

  .s1440\:focus\:bg-contain:focus{
    background-size: contain;
  }

  .s1440\:active\:bg-auto:active{
    background-size: auto;
  }

  .s1440\:active\:bg-cover:active{
    background-size: cover;
  }

  .s1440\:active\:bg-contain:active{
    background-size: contain;
  }

  .s1440\:first\:bg-auto:first-child{
    background-size: auto;
  }

  .s1440\:first\:bg-cover:first-child{
    background-size: cover;
  }

  .s1440\:first\:bg-contain:first-child{
    background-size: contain;
  }

  .s1440\:last\:bg-auto:last-child{
    background-size: auto;
  }

  .s1440\:last\:bg-cover:last-child{
    background-size: cover;
  }

  .s1440\:last\:bg-contain:last-child{
    background-size: contain;
  }

  .s1440\:border-collapse{
    border-collapse: collapse;
  }

  .s1440\:border-separate{
    border-collapse: separate;
  }

  .s1440\:hover\:border-collapse:hover{
    border-collapse: collapse;
  }

  .s1440\:hover\:border-separate:hover{
    border-collapse: separate;
  }

  .s1440\:focus\:border-collapse:focus{
    border-collapse: collapse;
  }

  .s1440\:focus\:border-separate:focus{
    border-collapse: separate;
  }

  .s1440\:active\:border-collapse:active{
    border-collapse: collapse;
  }

  .s1440\:active\:border-separate:active{
    border-collapse: separate;
  }

  .s1440\:first\:border-collapse:first-child{
    border-collapse: collapse;
  }

  .s1440\:first\:border-separate:first-child{
    border-collapse: separate;
  }

  .s1440\:last\:border-collapse:last-child{
    border-collapse: collapse;
  }

  .s1440\:last\:border-separate:last-child{
    border-collapse: separate;
  }

  .s1440\:border-black{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1440\:border-transparent{
    border-color: transparent;
  }

  .s1440\:border-error{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:border-success{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:border-white-10{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1440\:border-white-20{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1440\:border-white{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1440\:border-cheeto{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1440\:border-cheeto-very-light{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1440\:border-cheeto-light{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1440\:border-cheeto-dark{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1440\:border-cheeto-hocus{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1440\:border-cheeto-active{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1440\:border-cheeto-ml-plus{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1440\:border-cheeto-banner{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1440\:border-gracy-1{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1440\:border-gracy-10{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1440\:border-gracy-20{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1440\:border-gracy-30{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1440\:border-gracy-40{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1440\:border-gracy-50{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1440\:border-gracy-60{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1440\:border-gracy-70{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1440\:border-gracy-80{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1440\:border-gracy-90{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1440\:border-gracy-100{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1440\:border-gracy{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1440\:border-gracy-overlay-90{
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:border-login{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1440\:border-olive-light{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1440\:border-olive-drab{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:border-olive-dark{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1440\:border-daisy-light{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1440\:border-feedback-gumby{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1440\:border-feedback-daisy{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1440\:border-feedback-pokey{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1440\:border-feedback-aster{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1440\:border-feedback-aster-dark{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1440\:border-feedback-roxo{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1440\:border-feedback-error{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:border-feedback-success{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:border-functional-aoki{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1440\:border-functional-aoki-dark{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1440\:border-functional-aoki-hocus{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1440\:border-functional-aoki-active{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1440\:border-functional-aoki-light{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1440\:border-functional-kermit{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1440\:border-mixlabPlus-light{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1440\:border-primary-orange-light{
    border-color: ;
  }

  .s1440\:border-off-white{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1440\:hover\:border-black:hover{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1440\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .s1440\:hover\:border-error:hover{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:hover\:border-success:hover{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:hover\:border-white-10:hover{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1440\:hover\:border-white-20:hover{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1440\:hover\:border-white:hover{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1440\:hover\:border-cheeto:hover{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1440\:hover\:border-cheeto-very-light:hover{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1440\:hover\:border-cheeto-light:hover{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1440\:hover\:border-cheeto-dark:hover{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1440\:hover\:border-cheeto-hocus:hover{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1440\:hover\:border-cheeto-active:hover{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1440\:hover\:border-cheeto-ml-plus:hover{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1440\:hover\:border-cheeto-banner:hover{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-1:hover{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-10:hover{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-20:hover{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-30:hover{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-40:hover{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-50:hover{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-60:hover{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-70:hover{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-80:hover{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-90:hover{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-100:hover{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy:hover{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1440\:hover\:border-gracy-overlay-90:hover{
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:hover\:border-login:hover{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1440\:hover\:border-olive-light:hover{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1440\:hover\:border-olive-drab:hover{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:hover\:border-olive-dark:hover{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1440\:hover\:border-daisy-light:hover{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1440\:hover\:border-feedback-gumby:hover{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1440\:hover\:border-feedback-daisy:hover{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1440\:hover\:border-feedback-pokey:hover{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1440\:hover\:border-feedback-aster:hover{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1440\:hover\:border-feedback-aster-dark:hover{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1440\:hover\:border-feedback-roxo:hover{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1440\:hover\:border-feedback-error:hover{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:hover\:border-feedback-success:hover{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:hover\:border-functional-aoki:hover{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1440\:hover\:border-functional-aoki-dark:hover{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1440\:hover\:border-functional-aoki-hocus:hover{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1440\:hover\:border-functional-aoki-active:hover{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1440\:hover\:border-functional-aoki-light:hover{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1440\:hover\:border-functional-kermit:hover{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1440\:hover\:border-mixlabPlus-light:hover{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1440\:hover\:border-primary-orange-light:hover{
    border-color: ;
  }

  .s1440\:hover\:border-off-white:hover{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1440\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1440\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .s1440\:focus\:border-error:focus{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:focus\:border-success:focus{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:focus\:border-white-10:focus{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1440\:focus\:border-white-20:focus{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1440\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1440\:focus\:border-cheeto:focus{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1440\:focus\:border-cheeto-very-light:focus{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1440\:focus\:border-cheeto-light:focus{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1440\:focus\:border-cheeto-dark:focus{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1440\:focus\:border-cheeto-hocus:focus{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1440\:focus\:border-cheeto-active:focus{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1440\:focus\:border-cheeto-ml-plus:focus{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1440\:focus\:border-cheeto-banner:focus{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-1:focus{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-10:focus{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-20:focus{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-30:focus{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-40:focus{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-50:focus{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-60:focus{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-70:focus{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-80:focus{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-90:focus{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-100:focus{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy:focus{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1440\:focus\:border-gracy-overlay-90:focus{
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:focus\:border-login:focus{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1440\:focus\:border-olive-light:focus{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1440\:focus\:border-olive-drab:focus{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:focus\:border-olive-dark:focus{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1440\:focus\:border-daisy-light:focus{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1440\:focus\:border-feedback-gumby:focus{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1440\:focus\:border-feedback-daisy:focus{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1440\:focus\:border-feedback-pokey:focus{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1440\:focus\:border-feedback-aster:focus{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1440\:focus\:border-feedback-aster-dark:focus{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1440\:focus\:border-feedback-roxo:focus{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1440\:focus\:border-feedback-error:focus{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:focus\:border-feedback-success:focus{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:focus\:border-functional-aoki:focus{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1440\:focus\:border-functional-aoki-dark:focus{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1440\:focus\:border-functional-aoki-hocus:focus{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1440\:focus\:border-functional-aoki-active:focus{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1440\:focus\:border-functional-aoki-light:focus{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1440\:focus\:border-functional-kermit:focus{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1440\:focus\:border-mixlabPlus-light:focus{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1440\:focus\:border-primary-orange-light:focus{
    border-color: ;
  }

  .s1440\:focus\:border-off-white:focus{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1440\:active\:border-black:active{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1440\:active\:border-transparent:active{
    border-color: transparent;
  }

  .s1440\:active\:border-error:active{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:active\:border-success:active{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:active\:border-white-10:active{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1440\:active\:border-white-20:active{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1440\:active\:border-white:active{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1440\:active\:border-cheeto:active{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1440\:active\:border-cheeto-very-light:active{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1440\:active\:border-cheeto-light:active{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1440\:active\:border-cheeto-dark:active{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1440\:active\:border-cheeto-hocus:active{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1440\:active\:border-cheeto-active:active{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1440\:active\:border-cheeto-ml-plus:active{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1440\:active\:border-cheeto-banner:active{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-1:active{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-10:active{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-20:active{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-30:active{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-40:active{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-50:active{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-60:active{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-70:active{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-80:active{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-90:active{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-100:active{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1440\:active\:border-gracy:active{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1440\:active\:border-gracy-overlay-90:active{
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:active\:border-login:active{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1440\:active\:border-olive-light:active{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1440\:active\:border-olive-drab:active{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:active\:border-olive-dark:active{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1440\:active\:border-daisy-light:active{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1440\:active\:border-feedback-gumby:active{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1440\:active\:border-feedback-daisy:active{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1440\:active\:border-feedback-pokey:active{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1440\:active\:border-feedback-aster:active{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1440\:active\:border-feedback-aster-dark:active{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1440\:active\:border-feedback-roxo:active{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1440\:active\:border-feedback-error:active{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:active\:border-feedback-success:active{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:active\:border-functional-aoki:active{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1440\:active\:border-functional-aoki-dark:active{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1440\:active\:border-functional-aoki-hocus:active{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1440\:active\:border-functional-aoki-active:active{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1440\:active\:border-functional-aoki-light:active{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1440\:active\:border-functional-kermit:active{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1440\:active\:border-mixlabPlus-light:active{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1440\:active\:border-primary-orange-light:active{
    border-color: ;
  }

  .s1440\:active\:border-off-white:active{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1440\:first\:border-black:first-child{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1440\:first\:border-transparent:first-child{
    border-color: transparent;
  }

  .s1440\:first\:border-error:first-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:first\:border-success:first-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:first\:border-white-10:first-child{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1440\:first\:border-white-20:first-child{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1440\:first\:border-white:first-child{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1440\:first\:border-cheeto:first-child{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1440\:first\:border-cheeto-very-light:first-child{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1440\:first\:border-cheeto-light:first-child{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1440\:first\:border-cheeto-dark:first-child{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1440\:first\:border-cheeto-hocus:first-child{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1440\:first\:border-cheeto-active:first-child{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1440\:first\:border-cheeto-ml-plus:first-child{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1440\:first\:border-cheeto-banner:first-child{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-1:first-child{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-10:first-child{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-20:first-child{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-30:first-child{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-40:first-child{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-50:first-child{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-60:first-child{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-70:first-child{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-80:first-child{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-90:first-child{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-100:first-child{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1440\:first\:border-gracy:first-child{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1440\:first\:border-gracy-overlay-90:first-child{
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:first\:border-login:first-child{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1440\:first\:border-olive-light:first-child{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1440\:first\:border-olive-drab:first-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:first\:border-olive-dark:first-child{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1440\:first\:border-daisy-light:first-child{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1440\:first\:border-feedback-gumby:first-child{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1440\:first\:border-feedback-daisy:first-child{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1440\:first\:border-feedback-pokey:first-child{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1440\:first\:border-feedback-aster:first-child{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1440\:first\:border-feedback-aster-dark:first-child{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1440\:first\:border-feedback-roxo:first-child{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1440\:first\:border-feedback-error:first-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:first\:border-feedback-success:first-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:first\:border-functional-aoki:first-child{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1440\:first\:border-functional-aoki-dark:first-child{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1440\:first\:border-functional-aoki-hocus:first-child{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1440\:first\:border-functional-aoki-active:first-child{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1440\:first\:border-functional-aoki-light:first-child{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1440\:first\:border-functional-kermit:first-child{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1440\:first\:border-mixlabPlus-light:first-child{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1440\:first\:border-primary-orange-light:first-child{
    border-color: ;
  }

  .s1440\:first\:border-off-white:first-child{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1440\:last\:border-black:last-child{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1440\:last\:border-transparent:last-child{
    border-color: transparent;
  }

  .s1440\:last\:border-error:last-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:last\:border-success:last-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:last\:border-white-10:last-child{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1440\:last\:border-white-20:last-child{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1440\:last\:border-white:last-child{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1440\:last\:border-cheeto:last-child{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1440\:last\:border-cheeto-very-light:last-child{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1440\:last\:border-cheeto-light:last-child{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1440\:last\:border-cheeto-dark:last-child{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1440\:last\:border-cheeto-hocus:last-child{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1440\:last\:border-cheeto-active:last-child{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1440\:last\:border-cheeto-ml-plus:last-child{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1440\:last\:border-cheeto-banner:last-child{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-1:last-child{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-10:last-child{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-20:last-child{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-30:last-child{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-40:last-child{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-50:last-child{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-60:last-child{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-70:last-child{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-80:last-child{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-90:last-child{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-100:last-child{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1440\:last\:border-gracy:last-child{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1440\:last\:border-gracy-overlay-90:last-child{
    border-color: rgba(50,49,50,0.5);
  }

  .s1440\:last\:border-login:last-child{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1440\:last\:border-olive-light:last-child{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1440\:last\:border-olive-drab:last-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:last\:border-olive-dark:last-child{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1440\:last\:border-daisy-light:last-child{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1440\:last\:border-feedback-gumby:last-child{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1440\:last\:border-feedback-daisy:last-child{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1440\:last\:border-feedback-pokey:last-child{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1440\:last\:border-feedback-aster:last-child{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1440\:last\:border-feedback-aster-dark:last-child{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1440\:last\:border-feedback-roxo:last-child{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1440\:last\:border-feedback-error:last-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1440\:last\:border-feedback-success:last-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1440\:last\:border-functional-aoki:last-child{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1440\:last\:border-functional-aoki-dark:last-child{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1440\:last\:border-functional-aoki-hocus:last-child{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1440\:last\:border-functional-aoki-active:last-child{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1440\:last\:border-functional-aoki-light:last-child{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1440\:last\:border-functional-kermit:last-child{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1440\:last\:border-mixlabPlus-light:last-child{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1440\:last\:border-primary-orange-light:last-child{
    border-color: ;
  }

  .s1440\:last\:border-off-white:last-child{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1440\:border-opacity-0{
    --border-opacity: 0;
  }

  .s1440\:border-opacity-25{
    --border-opacity: 0.25;
  }

  .s1440\:border-opacity-50{
    --border-opacity: .5;
  }

  .s1440\:border-opacity-75{
    --border-opacity: 0.75;
  }

  .s1440\:border-opacity-80{
    --border-opacity: .8;
  }

  .s1440\:border-opacity-100{
    --border-opacity: 1;
  }

  .s1440\:hover\:border-opacity-0:hover{
    --border-opacity: 0;
  }

  .s1440\:hover\:border-opacity-25:hover{
    --border-opacity: 0.25;
  }

  .s1440\:hover\:border-opacity-50:hover{
    --border-opacity: .5;
  }

  .s1440\:hover\:border-opacity-75:hover{
    --border-opacity: 0.75;
  }

  .s1440\:hover\:border-opacity-80:hover{
    --border-opacity: .8;
  }

  .s1440\:hover\:border-opacity-100:hover{
    --border-opacity: 1;
  }

  .s1440\:focus\:border-opacity-0:focus{
    --border-opacity: 0;
  }

  .s1440\:focus\:border-opacity-25:focus{
    --border-opacity: 0.25;
  }

  .s1440\:focus\:border-opacity-50:focus{
    --border-opacity: .5;
  }

  .s1440\:focus\:border-opacity-75:focus{
    --border-opacity: 0.75;
  }

  .s1440\:focus\:border-opacity-80:focus{
    --border-opacity: .8;
  }

  .s1440\:focus\:border-opacity-100:focus{
    --border-opacity: 1;
  }

  .s1440\:active\:border-opacity-0:active{
    --border-opacity: 0;
  }

  .s1440\:active\:border-opacity-25:active{
    --border-opacity: 0.25;
  }

  .s1440\:active\:border-opacity-50:active{
    --border-opacity: .5;
  }

  .s1440\:active\:border-opacity-75:active{
    --border-opacity: 0.75;
  }

  .s1440\:active\:border-opacity-80:active{
    --border-opacity: .8;
  }

  .s1440\:active\:border-opacity-100:active{
    --border-opacity: 1;
  }

  .s1440\:first\:border-opacity-0:first-child{
    --border-opacity: 0;
  }

  .s1440\:first\:border-opacity-25:first-child{
    --border-opacity: 0.25;
  }

  .s1440\:first\:border-opacity-50:first-child{
    --border-opacity: .5;
  }

  .s1440\:first\:border-opacity-75:first-child{
    --border-opacity: 0.75;
  }

  .s1440\:first\:border-opacity-80:first-child{
    --border-opacity: .8;
  }

  .s1440\:first\:border-opacity-100:first-child{
    --border-opacity: 1;
  }

  .s1440\:last\:border-opacity-0:last-child{
    --border-opacity: 0;
  }

  .s1440\:last\:border-opacity-25:last-child{
    --border-opacity: 0.25;
  }

  .s1440\:last\:border-opacity-50:last-child{
    --border-opacity: .5;
  }

  .s1440\:last\:border-opacity-75:last-child{
    --border-opacity: 0.75;
  }

  .s1440\:last\:border-opacity-80:last-child{
    --border-opacity: .8;
  }

  .s1440\:last\:border-opacity-100:last-child{
    --border-opacity: 1;
  }

  .s1440\:rounded-none{
    border-radius: 0;
  }

  .s1440\:rounded-sm{
    border-radius: 0.125rem;
  }

  .s1440\:rounded{
    border-radius: 0.25rem;
  }

  .s1440\:rounded-md{
    border-radius: 0.375rem;
  }

  .s1440\:rounded-lg{
    border-radius: 0.5rem;
  }

  .s1440\:rounded-full{
    border-radius: 9999px;
  }

  .s1440\:rounded-xl{
    border-radius: 30px;
  }

  .s1440\:rounded-t-none{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1440\:rounded-r-none{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1440\:rounded-b-none{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:rounded-l-none{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1440\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1440\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:rounded-t-md{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1440\:rounded-r-md{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:rounded-b-md{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:rounded-l-md{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1440\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1440\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1440\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:rounded-t-xl{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1440\:rounded-r-xl{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1440\:rounded-b-xl{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:rounded-l-xl{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:rounded-tl-none{
    border-top-left-radius: 0;
  }

  .s1440\:rounded-tr-none{
    border-top-right-radius: 0;
  }

  .s1440\:rounded-br-none{
    border-bottom-right-radius: 0;
  }

  .s1440\:rounded-bl-none{
    border-bottom-left-radius: 0;
  }

  .s1440\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .s1440\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .s1440\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .s1440\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .s1440\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:rounded-tl-md{
    border-top-left-radius: 0.375rem;
  }

  .s1440\:rounded-tr-md{
    border-top-right-radius: 0.375rem;
  }

  .s1440\:rounded-br-md{
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:rounded-bl-md{
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .s1440\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .s1440\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .s1440\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .s1440\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .s1440\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .s1440\:rounded-tl-xl{
    border-top-left-radius: 30px;
  }

  .s1440\:rounded-tr-xl{
    border-top-right-radius: 30px;
  }

  .s1440\:rounded-br-xl{
    border-bottom-right-radius: 30px;
  }

  .s1440\:rounded-bl-xl{
    border-bottom-left-radius: 30px;
  }

  .s1440\:hover\:rounded-none:hover{
    border-radius: 0;
  }

  .s1440\:hover\:rounded-sm:hover{
    border-radius: 0.125rem;
  }

  .s1440\:hover\:rounded:hover{
    border-radius: 0.25rem;
  }

  .s1440\:hover\:rounded-md:hover{
    border-radius: 0.375rem;
  }

  .s1440\:hover\:rounded-lg:hover{
    border-radius: 0.5rem;
  }

  .s1440\:hover\:rounded-full:hover{
    border-radius: 9999px;
  }

  .s1440\:hover\:rounded-xl:hover{
    border-radius: 30px;
  }

  .s1440\:hover\:rounded-t-none:hover{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1440\:hover\:rounded-r-none:hover{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1440\:hover\:rounded-b-none:hover{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:hover\:rounded-l-none:hover{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:hover\:rounded-t-sm:hover{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1440\:hover\:rounded-r-sm:hover{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:hover\:rounded-b-sm:hover{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:hover\:rounded-l-sm:hover{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:hover\:rounded-t:hover{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1440\:hover\:rounded-r:hover{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:hover\:rounded-b:hover{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:hover\:rounded-l:hover{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:hover\:rounded-t-md:hover{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1440\:hover\:rounded-r-md:hover{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:hover\:rounded-b-md:hover{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:hover\:rounded-l-md:hover{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:hover\:rounded-t-lg:hover{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1440\:hover\:rounded-r-lg:hover{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:hover\:rounded-b-lg:hover{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:hover\:rounded-l-lg:hover{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:hover\:rounded-t-full:hover{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1440\:hover\:rounded-r-full:hover{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1440\:hover\:rounded-b-full:hover{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:hover\:rounded-l-full:hover{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:hover\:rounded-t-xl:hover{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1440\:hover\:rounded-r-xl:hover{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1440\:hover\:rounded-b-xl:hover{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:hover\:rounded-l-xl:hover{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:hover\:rounded-tl-none:hover{
    border-top-left-radius: 0;
  }

  .s1440\:hover\:rounded-tr-none:hover{
    border-top-right-radius: 0;
  }

  .s1440\:hover\:rounded-br-none:hover{
    border-bottom-right-radius: 0;
  }

  .s1440\:hover\:rounded-bl-none:hover{
    border-bottom-left-radius: 0;
  }

  .s1440\:hover\:rounded-tl-sm:hover{
    border-top-left-radius: 0.125rem;
  }

  .s1440\:hover\:rounded-tr-sm:hover{
    border-top-right-radius: 0.125rem;
  }

  .s1440\:hover\:rounded-br-sm:hover{
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:hover\:rounded-bl-sm:hover{
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:hover\:rounded-tl:hover{
    border-top-left-radius: 0.25rem;
  }

  .s1440\:hover\:rounded-tr:hover{
    border-top-right-radius: 0.25rem;
  }

  .s1440\:hover\:rounded-br:hover{
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:hover\:rounded-bl:hover{
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:hover\:rounded-tl-md:hover{
    border-top-left-radius: 0.375rem;
  }

  .s1440\:hover\:rounded-tr-md:hover{
    border-top-right-radius: 0.375rem;
  }

  .s1440\:hover\:rounded-br-md:hover{
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:hover\:rounded-bl-md:hover{
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:hover\:rounded-tl-lg:hover{
    border-top-left-radius: 0.5rem;
  }

  .s1440\:hover\:rounded-tr-lg:hover{
    border-top-right-radius: 0.5rem;
  }

  .s1440\:hover\:rounded-br-lg:hover{
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:hover\:rounded-bl-lg:hover{
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:hover\:rounded-tl-full:hover{
    border-top-left-radius: 9999px;
  }

  .s1440\:hover\:rounded-tr-full:hover{
    border-top-right-radius: 9999px;
  }

  .s1440\:hover\:rounded-br-full:hover{
    border-bottom-right-radius: 9999px;
  }

  .s1440\:hover\:rounded-bl-full:hover{
    border-bottom-left-radius: 9999px;
  }

  .s1440\:hover\:rounded-tl-xl:hover{
    border-top-left-radius: 30px;
  }

  .s1440\:hover\:rounded-tr-xl:hover{
    border-top-right-radius: 30px;
  }

  .s1440\:hover\:rounded-br-xl:hover{
    border-bottom-right-radius: 30px;
  }

  .s1440\:hover\:rounded-bl-xl:hover{
    border-bottom-left-radius: 30px;
  }

  .s1440\:focus\:rounded-none:focus{
    border-radius: 0;
  }

  .s1440\:focus\:rounded-sm:focus{
    border-radius: 0.125rem;
  }

  .s1440\:focus\:rounded:focus{
    border-radius: 0.25rem;
  }

  .s1440\:focus\:rounded-md:focus{
    border-radius: 0.375rem;
  }

  .s1440\:focus\:rounded-lg:focus{
    border-radius: 0.5rem;
  }

  .s1440\:focus\:rounded-full:focus{
    border-radius: 9999px;
  }

  .s1440\:focus\:rounded-xl:focus{
    border-radius: 30px;
  }

  .s1440\:focus\:rounded-t-none:focus{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1440\:focus\:rounded-r-none:focus{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1440\:focus\:rounded-b-none:focus{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:focus\:rounded-l-none:focus{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:focus\:rounded-t-sm:focus{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1440\:focus\:rounded-r-sm:focus{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:focus\:rounded-b-sm:focus{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:focus\:rounded-l-sm:focus{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:focus\:rounded-t:focus{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1440\:focus\:rounded-r:focus{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:focus\:rounded-b:focus{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:focus\:rounded-l:focus{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:focus\:rounded-t-md:focus{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1440\:focus\:rounded-r-md:focus{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:focus\:rounded-b-md:focus{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:focus\:rounded-l-md:focus{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:focus\:rounded-t-lg:focus{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1440\:focus\:rounded-r-lg:focus{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:focus\:rounded-b-lg:focus{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:focus\:rounded-l-lg:focus{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:focus\:rounded-t-full:focus{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1440\:focus\:rounded-r-full:focus{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1440\:focus\:rounded-b-full:focus{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:focus\:rounded-l-full:focus{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:focus\:rounded-t-xl:focus{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1440\:focus\:rounded-r-xl:focus{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1440\:focus\:rounded-b-xl:focus{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:focus\:rounded-l-xl:focus{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:focus\:rounded-tl-none:focus{
    border-top-left-radius: 0;
  }

  .s1440\:focus\:rounded-tr-none:focus{
    border-top-right-radius: 0;
  }

  .s1440\:focus\:rounded-br-none:focus{
    border-bottom-right-radius: 0;
  }

  .s1440\:focus\:rounded-bl-none:focus{
    border-bottom-left-radius: 0;
  }

  .s1440\:focus\:rounded-tl-sm:focus{
    border-top-left-radius: 0.125rem;
  }

  .s1440\:focus\:rounded-tr-sm:focus{
    border-top-right-radius: 0.125rem;
  }

  .s1440\:focus\:rounded-br-sm:focus{
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:focus\:rounded-bl-sm:focus{
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:focus\:rounded-tl:focus{
    border-top-left-radius: 0.25rem;
  }

  .s1440\:focus\:rounded-tr:focus{
    border-top-right-radius: 0.25rem;
  }

  .s1440\:focus\:rounded-br:focus{
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:focus\:rounded-bl:focus{
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:focus\:rounded-tl-md:focus{
    border-top-left-radius: 0.375rem;
  }

  .s1440\:focus\:rounded-tr-md:focus{
    border-top-right-radius: 0.375rem;
  }

  .s1440\:focus\:rounded-br-md:focus{
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:focus\:rounded-bl-md:focus{
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:focus\:rounded-tl-lg:focus{
    border-top-left-radius: 0.5rem;
  }

  .s1440\:focus\:rounded-tr-lg:focus{
    border-top-right-radius: 0.5rem;
  }

  .s1440\:focus\:rounded-br-lg:focus{
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:focus\:rounded-bl-lg:focus{
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:focus\:rounded-tl-full:focus{
    border-top-left-radius: 9999px;
  }

  .s1440\:focus\:rounded-tr-full:focus{
    border-top-right-radius: 9999px;
  }

  .s1440\:focus\:rounded-br-full:focus{
    border-bottom-right-radius: 9999px;
  }

  .s1440\:focus\:rounded-bl-full:focus{
    border-bottom-left-radius: 9999px;
  }

  .s1440\:focus\:rounded-tl-xl:focus{
    border-top-left-radius: 30px;
  }

  .s1440\:focus\:rounded-tr-xl:focus{
    border-top-right-radius: 30px;
  }

  .s1440\:focus\:rounded-br-xl:focus{
    border-bottom-right-radius: 30px;
  }

  .s1440\:focus\:rounded-bl-xl:focus{
    border-bottom-left-radius: 30px;
  }

  .s1440\:active\:rounded-none:active{
    border-radius: 0;
  }

  .s1440\:active\:rounded-sm:active{
    border-radius: 0.125rem;
  }

  .s1440\:active\:rounded:active{
    border-radius: 0.25rem;
  }

  .s1440\:active\:rounded-md:active{
    border-radius: 0.375rem;
  }

  .s1440\:active\:rounded-lg:active{
    border-radius: 0.5rem;
  }

  .s1440\:active\:rounded-full:active{
    border-radius: 9999px;
  }

  .s1440\:active\:rounded-xl:active{
    border-radius: 30px;
  }

  .s1440\:active\:rounded-t-none:active{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1440\:active\:rounded-r-none:active{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1440\:active\:rounded-b-none:active{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:active\:rounded-l-none:active{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:active\:rounded-t-sm:active{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1440\:active\:rounded-r-sm:active{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:active\:rounded-b-sm:active{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:active\:rounded-l-sm:active{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:active\:rounded-t:active{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1440\:active\:rounded-r:active{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:active\:rounded-b:active{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:active\:rounded-l:active{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:active\:rounded-t-md:active{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1440\:active\:rounded-r-md:active{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:active\:rounded-b-md:active{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:active\:rounded-l-md:active{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:active\:rounded-t-lg:active{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1440\:active\:rounded-r-lg:active{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:active\:rounded-b-lg:active{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:active\:rounded-l-lg:active{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:active\:rounded-t-full:active{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1440\:active\:rounded-r-full:active{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1440\:active\:rounded-b-full:active{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:active\:rounded-l-full:active{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:active\:rounded-t-xl:active{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1440\:active\:rounded-r-xl:active{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1440\:active\:rounded-b-xl:active{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:active\:rounded-l-xl:active{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:active\:rounded-tl-none:active{
    border-top-left-radius: 0;
  }

  .s1440\:active\:rounded-tr-none:active{
    border-top-right-radius: 0;
  }

  .s1440\:active\:rounded-br-none:active{
    border-bottom-right-radius: 0;
  }

  .s1440\:active\:rounded-bl-none:active{
    border-bottom-left-radius: 0;
  }

  .s1440\:active\:rounded-tl-sm:active{
    border-top-left-radius: 0.125rem;
  }

  .s1440\:active\:rounded-tr-sm:active{
    border-top-right-radius: 0.125rem;
  }

  .s1440\:active\:rounded-br-sm:active{
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:active\:rounded-bl-sm:active{
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:active\:rounded-tl:active{
    border-top-left-radius: 0.25rem;
  }

  .s1440\:active\:rounded-tr:active{
    border-top-right-radius: 0.25rem;
  }

  .s1440\:active\:rounded-br:active{
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:active\:rounded-bl:active{
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:active\:rounded-tl-md:active{
    border-top-left-radius: 0.375rem;
  }

  .s1440\:active\:rounded-tr-md:active{
    border-top-right-radius: 0.375rem;
  }

  .s1440\:active\:rounded-br-md:active{
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:active\:rounded-bl-md:active{
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:active\:rounded-tl-lg:active{
    border-top-left-radius: 0.5rem;
  }

  .s1440\:active\:rounded-tr-lg:active{
    border-top-right-radius: 0.5rem;
  }

  .s1440\:active\:rounded-br-lg:active{
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:active\:rounded-bl-lg:active{
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:active\:rounded-tl-full:active{
    border-top-left-radius: 9999px;
  }

  .s1440\:active\:rounded-tr-full:active{
    border-top-right-radius: 9999px;
  }

  .s1440\:active\:rounded-br-full:active{
    border-bottom-right-radius: 9999px;
  }

  .s1440\:active\:rounded-bl-full:active{
    border-bottom-left-radius: 9999px;
  }

  .s1440\:active\:rounded-tl-xl:active{
    border-top-left-radius: 30px;
  }

  .s1440\:active\:rounded-tr-xl:active{
    border-top-right-radius: 30px;
  }

  .s1440\:active\:rounded-br-xl:active{
    border-bottom-right-radius: 30px;
  }

  .s1440\:active\:rounded-bl-xl:active{
    border-bottom-left-radius: 30px;
  }

  .s1440\:first\:rounded-none:first-child{
    border-radius: 0;
  }

  .s1440\:first\:rounded-sm:first-child{
    border-radius: 0.125rem;
  }

  .s1440\:first\:rounded:first-child{
    border-radius: 0.25rem;
  }

  .s1440\:first\:rounded-md:first-child{
    border-radius: 0.375rem;
  }

  .s1440\:first\:rounded-lg:first-child{
    border-radius: 0.5rem;
  }

  .s1440\:first\:rounded-full:first-child{
    border-radius: 9999px;
  }

  .s1440\:first\:rounded-xl:first-child{
    border-radius: 30px;
  }

  .s1440\:first\:rounded-t-none:first-child{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1440\:first\:rounded-r-none:first-child{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1440\:first\:rounded-b-none:first-child{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:first\:rounded-l-none:first-child{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:first\:rounded-t-sm:first-child{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1440\:first\:rounded-r-sm:first-child{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:first\:rounded-b-sm:first-child{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:first\:rounded-l-sm:first-child{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:first\:rounded-t:first-child{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1440\:first\:rounded-r:first-child{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:first\:rounded-b:first-child{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:first\:rounded-l:first-child{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:first\:rounded-t-md:first-child{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1440\:first\:rounded-r-md:first-child{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:first\:rounded-b-md:first-child{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:first\:rounded-l-md:first-child{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:first\:rounded-t-lg:first-child{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1440\:first\:rounded-r-lg:first-child{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:first\:rounded-b-lg:first-child{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:first\:rounded-l-lg:first-child{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:first\:rounded-t-full:first-child{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1440\:first\:rounded-r-full:first-child{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1440\:first\:rounded-b-full:first-child{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:first\:rounded-l-full:first-child{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:first\:rounded-t-xl:first-child{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1440\:first\:rounded-r-xl:first-child{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1440\:first\:rounded-b-xl:first-child{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:first\:rounded-l-xl:first-child{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:first\:rounded-tl-none:first-child{
    border-top-left-radius: 0;
  }

  .s1440\:first\:rounded-tr-none:first-child{
    border-top-right-radius: 0;
  }

  .s1440\:first\:rounded-br-none:first-child{
    border-bottom-right-radius: 0;
  }

  .s1440\:first\:rounded-bl-none:first-child{
    border-bottom-left-radius: 0;
  }

  .s1440\:first\:rounded-tl-sm:first-child{
    border-top-left-radius: 0.125rem;
  }

  .s1440\:first\:rounded-tr-sm:first-child{
    border-top-right-radius: 0.125rem;
  }

  .s1440\:first\:rounded-br-sm:first-child{
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:first\:rounded-bl-sm:first-child{
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:first\:rounded-tl:first-child{
    border-top-left-radius: 0.25rem;
  }

  .s1440\:first\:rounded-tr:first-child{
    border-top-right-radius: 0.25rem;
  }

  .s1440\:first\:rounded-br:first-child{
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:first\:rounded-bl:first-child{
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:first\:rounded-tl-md:first-child{
    border-top-left-radius: 0.375rem;
  }

  .s1440\:first\:rounded-tr-md:first-child{
    border-top-right-radius: 0.375rem;
  }

  .s1440\:first\:rounded-br-md:first-child{
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:first\:rounded-bl-md:first-child{
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:first\:rounded-tl-lg:first-child{
    border-top-left-radius: 0.5rem;
  }

  .s1440\:first\:rounded-tr-lg:first-child{
    border-top-right-radius: 0.5rem;
  }

  .s1440\:first\:rounded-br-lg:first-child{
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:first\:rounded-bl-lg:first-child{
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:first\:rounded-tl-full:first-child{
    border-top-left-radius: 9999px;
  }

  .s1440\:first\:rounded-tr-full:first-child{
    border-top-right-radius: 9999px;
  }

  .s1440\:first\:rounded-br-full:first-child{
    border-bottom-right-radius: 9999px;
  }

  .s1440\:first\:rounded-bl-full:first-child{
    border-bottom-left-radius: 9999px;
  }

  .s1440\:first\:rounded-tl-xl:first-child{
    border-top-left-radius: 30px;
  }

  .s1440\:first\:rounded-tr-xl:first-child{
    border-top-right-radius: 30px;
  }

  .s1440\:first\:rounded-br-xl:first-child{
    border-bottom-right-radius: 30px;
  }

  .s1440\:first\:rounded-bl-xl:first-child{
    border-bottom-left-radius: 30px;
  }

  .s1440\:last\:rounded-none:last-child{
    border-radius: 0;
  }

  .s1440\:last\:rounded-sm:last-child{
    border-radius: 0.125rem;
  }

  .s1440\:last\:rounded:last-child{
    border-radius: 0.25rem;
  }

  .s1440\:last\:rounded-md:last-child{
    border-radius: 0.375rem;
  }

  .s1440\:last\:rounded-lg:last-child{
    border-radius: 0.5rem;
  }

  .s1440\:last\:rounded-full:last-child{
    border-radius: 9999px;
  }

  .s1440\:last\:rounded-xl:last-child{
    border-radius: 30px;
  }

  .s1440\:last\:rounded-t-none:last-child{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1440\:last\:rounded-r-none:last-child{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1440\:last\:rounded-b-none:last-child{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:last\:rounded-l-none:last-child{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1440\:last\:rounded-t-sm:last-child{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1440\:last\:rounded-r-sm:last-child{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:last\:rounded-b-sm:last-child{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:last\:rounded-l-sm:last-child{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:last\:rounded-t:last-child{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1440\:last\:rounded-r:last-child{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:last\:rounded-b:last-child{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:last\:rounded-l:last-child{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:last\:rounded-t-md:last-child{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1440\:last\:rounded-r-md:last-child{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:last\:rounded-b-md:last-child{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:last\:rounded-l-md:last-child{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:last\:rounded-t-lg:last-child{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1440\:last\:rounded-r-lg:last-child{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:last\:rounded-b-lg:last-child{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:last\:rounded-l-lg:last-child{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:last\:rounded-t-full:last-child{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1440\:last\:rounded-r-full:last-child{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1440\:last\:rounded-b-full:last-child{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:last\:rounded-l-full:last-child{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1440\:last\:rounded-t-xl:last-child{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1440\:last\:rounded-r-xl:last-child{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1440\:last\:rounded-b-xl:last-child{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:last\:rounded-l-xl:last-child{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1440\:last\:rounded-tl-none:last-child{
    border-top-left-radius: 0;
  }

  .s1440\:last\:rounded-tr-none:last-child{
    border-top-right-radius: 0;
  }

  .s1440\:last\:rounded-br-none:last-child{
    border-bottom-right-radius: 0;
  }

  .s1440\:last\:rounded-bl-none:last-child{
    border-bottom-left-radius: 0;
  }

  .s1440\:last\:rounded-tl-sm:last-child{
    border-top-left-radius: 0.125rem;
  }

  .s1440\:last\:rounded-tr-sm:last-child{
    border-top-right-radius: 0.125rem;
  }

  .s1440\:last\:rounded-br-sm:last-child{
    border-bottom-right-radius: 0.125rem;
  }

  .s1440\:last\:rounded-bl-sm:last-child{
    border-bottom-left-radius: 0.125rem;
  }

  .s1440\:last\:rounded-tl:last-child{
    border-top-left-radius: 0.25rem;
  }

  .s1440\:last\:rounded-tr:last-child{
    border-top-right-radius: 0.25rem;
  }

  .s1440\:last\:rounded-br:last-child{
    border-bottom-right-radius: 0.25rem;
  }

  .s1440\:last\:rounded-bl:last-child{
    border-bottom-left-radius: 0.25rem;
  }

  .s1440\:last\:rounded-tl-md:last-child{
    border-top-left-radius: 0.375rem;
  }

  .s1440\:last\:rounded-tr-md:last-child{
    border-top-right-radius: 0.375rem;
  }

  .s1440\:last\:rounded-br-md:last-child{
    border-bottom-right-radius: 0.375rem;
  }

  .s1440\:last\:rounded-bl-md:last-child{
    border-bottom-left-radius: 0.375rem;
  }

  .s1440\:last\:rounded-tl-lg:last-child{
    border-top-left-radius: 0.5rem;
  }

  .s1440\:last\:rounded-tr-lg:last-child{
    border-top-right-radius: 0.5rem;
  }

  .s1440\:last\:rounded-br-lg:last-child{
    border-bottom-right-radius: 0.5rem;
  }

  .s1440\:last\:rounded-bl-lg:last-child{
    border-bottom-left-radius: 0.5rem;
  }

  .s1440\:last\:rounded-tl-full:last-child{
    border-top-left-radius: 9999px;
  }

  .s1440\:last\:rounded-tr-full:last-child{
    border-top-right-radius: 9999px;
  }

  .s1440\:last\:rounded-br-full:last-child{
    border-bottom-right-radius: 9999px;
  }

  .s1440\:last\:rounded-bl-full:last-child{
    border-bottom-left-radius: 9999px;
  }

  .s1440\:last\:rounded-tl-xl:last-child{
    border-top-left-radius: 30px;
  }

  .s1440\:last\:rounded-tr-xl:last-child{
    border-top-right-radius: 30px;
  }

  .s1440\:last\:rounded-br-xl:last-child{
    border-bottom-right-radius: 30px;
  }

  .s1440\:last\:rounded-bl-xl:last-child{
    border-bottom-left-radius: 30px;
  }

  .s1440\:border-solid{
    border-style: solid;
  }

  .s1440\:border-dashed{
    border-style: dashed;
  }

  .s1440\:border-dotted{
    border-style: dotted;
  }

  .s1440\:border-double{
    border-style: double;
  }

  .s1440\:border-none{
    border-style: none;
  }

  .s1440\:hover\:border-solid:hover{
    border-style: solid;
  }

  .s1440\:hover\:border-dashed:hover{
    border-style: dashed;
  }

  .s1440\:hover\:border-dotted:hover{
    border-style: dotted;
  }

  .s1440\:hover\:border-double:hover{
    border-style: double;
  }

  .s1440\:hover\:border-none:hover{
    border-style: none;
  }

  .s1440\:focus\:border-solid:focus{
    border-style: solid;
  }

  .s1440\:focus\:border-dashed:focus{
    border-style: dashed;
  }

  .s1440\:focus\:border-dotted:focus{
    border-style: dotted;
  }

  .s1440\:focus\:border-double:focus{
    border-style: double;
  }

  .s1440\:focus\:border-none:focus{
    border-style: none;
  }

  .s1440\:active\:border-solid:active{
    border-style: solid;
  }

  .s1440\:active\:border-dashed:active{
    border-style: dashed;
  }

  .s1440\:active\:border-dotted:active{
    border-style: dotted;
  }

  .s1440\:active\:border-double:active{
    border-style: double;
  }

  .s1440\:active\:border-none:active{
    border-style: none;
  }

  .s1440\:first\:border-solid:first-child{
    border-style: solid;
  }

  .s1440\:first\:border-dashed:first-child{
    border-style: dashed;
  }

  .s1440\:first\:border-dotted:first-child{
    border-style: dotted;
  }

  .s1440\:first\:border-double:first-child{
    border-style: double;
  }

  .s1440\:first\:border-none:first-child{
    border-style: none;
  }

  .s1440\:last\:border-solid:last-child{
    border-style: solid;
  }

  .s1440\:last\:border-dashed:last-child{
    border-style: dashed;
  }

  .s1440\:last\:border-dotted:last-child{
    border-style: dotted;
  }

  .s1440\:last\:border-double:last-child{
    border-style: double;
  }

  .s1440\:last\:border-none:last-child{
    border-style: none;
  }

  .s1440\:border-0{
    border-width: 0;
  }

  .s1440\:border-2{
    border-width: 2px;
  }

  .s1440\:border-4{
    border-width: 4px;
  }

  .s1440\:border-8{
    border-width: 8px;
  }

  .s1440\:border{
    border-width: 1px;
  }

  .s1440\:border-t-0{
    border-top-width: 0;
  }

  .s1440\:border-r-0{
    border-right-width: 0;
  }

  .s1440\:border-b-0{
    border-bottom-width: 0;
  }

  .s1440\:border-l-0{
    border-left-width: 0;
  }

  .s1440\:border-t-2{
    border-top-width: 2px;
  }

  .s1440\:border-r-2{
    border-right-width: 2px;
  }

  .s1440\:border-b-2{
    border-bottom-width: 2px;
  }

  .s1440\:border-l-2{
    border-left-width: 2px;
  }

  .s1440\:border-t-4{
    border-top-width: 4px;
  }

  .s1440\:border-r-4{
    border-right-width: 4px;
  }

  .s1440\:border-b-4{
    border-bottom-width: 4px;
  }

  .s1440\:border-l-4{
    border-left-width: 4px;
  }

  .s1440\:border-t-8{
    border-top-width: 8px;
  }

  .s1440\:border-r-8{
    border-right-width: 8px;
  }

  .s1440\:border-b-8{
    border-bottom-width: 8px;
  }

  .s1440\:border-l-8{
    border-left-width: 8px;
  }

  .s1440\:border-t{
    border-top-width: 1px;
  }

  .s1440\:border-r{
    border-right-width: 1px;
  }

  .s1440\:border-b{
    border-bottom-width: 1px;
  }

  .s1440\:border-l{
    border-left-width: 1px;
  }

  .s1440\:hover\:border-0:hover{
    border-width: 0;
  }

  .s1440\:hover\:border-2:hover{
    border-width: 2px;
  }

  .s1440\:hover\:border-4:hover{
    border-width: 4px;
  }

  .s1440\:hover\:border-8:hover{
    border-width: 8px;
  }

  .s1440\:hover\:border:hover{
    border-width: 1px;
  }

  .s1440\:hover\:border-t-0:hover{
    border-top-width: 0;
  }

  .s1440\:hover\:border-r-0:hover{
    border-right-width: 0;
  }

  .s1440\:hover\:border-b-0:hover{
    border-bottom-width: 0;
  }

  .s1440\:hover\:border-l-0:hover{
    border-left-width: 0;
  }

  .s1440\:hover\:border-t-2:hover{
    border-top-width: 2px;
  }

  .s1440\:hover\:border-r-2:hover{
    border-right-width: 2px;
  }

  .s1440\:hover\:border-b-2:hover{
    border-bottom-width: 2px;
  }

  .s1440\:hover\:border-l-2:hover{
    border-left-width: 2px;
  }

  .s1440\:hover\:border-t-4:hover{
    border-top-width: 4px;
  }

  .s1440\:hover\:border-r-4:hover{
    border-right-width: 4px;
  }

  .s1440\:hover\:border-b-4:hover{
    border-bottom-width: 4px;
  }

  .s1440\:hover\:border-l-4:hover{
    border-left-width: 4px;
  }

  .s1440\:hover\:border-t-8:hover{
    border-top-width: 8px;
  }

  .s1440\:hover\:border-r-8:hover{
    border-right-width: 8px;
  }

  .s1440\:hover\:border-b-8:hover{
    border-bottom-width: 8px;
  }

  .s1440\:hover\:border-l-8:hover{
    border-left-width: 8px;
  }

  .s1440\:hover\:border-t:hover{
    border-top-width: 1px;
  }

  .s1440\:hover\:border-r:hover{
    border-right-width: 1px;
  }

  .s1440\:hover\:border-b:hover{
    border-bottom-width: 1px;
  }

  .s1440\:hover\:border-l:hover{
    border-left-width: 1px;
  }

  .s1440\:focus\:border-0:focus{
    border-width: 0;
  }

  .s1440\:focus\:border-2:focus{
    border-width: 2px;
  }

  .s1440\:focus\:border-4:focus{
    border-width: 4px;
  }

  .s1440\:focus\:border-8:focus{
    border-width: 8px;
  }

  .s1440\:focus\:border:focus{
    border-width: 1px;
  }

  .s1440\:focus\:border-t-0:focus{
    border-top-width: 0;
  }

  .s1440\:focus\:border-r-0:focus{
    border-right-width: 0;
  }

  .s1440\:focus\:border-b-0:focus{
    border-bottom-width: 0;
  }

  .s1440\:focus\:border-l-0:focus{
    border-left-width: 0;
  }

  .s1440\:focus\:border-t-2:focus{
    border-top-width: 2px;
  }

  .s1440\:focus\:border-r-2:focus{
    border-right-width: 2px;
  }

  .s1440\:focus\:border-b-2:focus{
    border-bottom-width: 2px;
  }

  .s1440\:focus\:border-l-2:focus{
    border-left-width: 2px;
  }

  .s1440\:focus\:border-t-4:focus{
    border-top-width: 4px;
  }

  .s1440\:focus\:border-r-4:focus{
    border-right-width: 4px;
  }

  .s1440\:focus\:border-b-4:focus{
    border-bottom-width: 4px;
  }

  .s1440\:focus\:border-l-4:focus{
    border-left-width: 4px;
  }

  .s1440\:focus\:border-t-8:focus{
    border-top-width: 8px;
  }

  .s1440\:focus\:border-r-8:focus{
    border-right-width: 8px;
  }

  .s1440\:focus\:border-b-8:focus{
    border-bottom-width: 8px;
  }

  .s1440\:focus\:border-l-8:focus{
    border-left-width: 8px;
  }

  .s1440\:focus\:border-t:focus{
    border-top-width: 1px;
  }

  .s1440\:focus\:border-r:focus{
    border-right-width: 1px;
  }

  .s1440\:focus\:border-b:focus{
    border-bottom-width: 1px;
  }

  .s1440\:focus\:border-l:focus{
    border-left-width: 1px;
  }

  .s1440\:active\:border-0:active{
    border-width: 0;
  }

  .s1440\:active\:border-2:active{
    border-width: 2px;
  }

  .s1440\:active\:border-4:active{
    border-width: 4px;
  }

  .s1440\:active\:border-8:active{
    border-width: 8px;
  }

  .s1440\:active\:border:active{
    border-width: 1px;
  }

  .s1440\:active\:border-t-0:active{
    border-top-width: 0;
  }

  .s1440\:active\:border-r-0:active{
    border-right-width: 0;
  }

  .s1440\:active\:border-b-0:active{
    border-bottom-width: 0;
  }

  .s1440\:active\:border-l-0:active{
    border-left-width: 0;
  }

  .s1440\:active\:border-t-2:active{
    border-top-width: 2px;
  }

  .s1440\:active\:border-r-2:active{
    border-right-width: 2px;
  }

  .s1440\:active\:border-b-2:active{
    border-bottom-width: 2px;
  }

  .s1440\:active\:border-l-2:active{
    border-left-width: 2px;
  }

  .s1440\:active\:border-t-4:active{
    border-top-width: 4px;
  }

  .s1440\:active\:border-r-4:active{
    border-right-width: 4px;
  }

  .s1440\:active\:border-b-4:active{
    border-bottom-width: 4px;
  }

  .s1440\:active\:border-l-4:active{
    border-left-width: 4px;
  }

  .s1440\:active\:border-t-8:active{
    border-top-width: 8px;
  }

  .s1440\:active\:border-r-8:active{
    border-right-width: 8px;
  }

  .s1440\:active\:border-b-8:active{
    border-bottom-width: 8px;
  }

  .s1440\:active\:border-l-8:active{
    border-left-width: 8px;
  }

  .s1440\:active\:border-t:active{
    border-top-width: 1px;
  }

  .s1440\:active\:border-r:active{
    border-right-width: 1px;
  }

  .s1440\:active\:border-b:active{
    border-bottom-width: 1px;
  }

  .s1440\:active\:border-l:active{
    border-left-width: 1px;
  }

  .s1440\:first\:border-0:first-child{
    border-width: 0;
  }

  .s1440\:first\:border-2:first-child{
    border-width: 2px;
  }

  .s1440\:first\:border-4:first-child{
    border-width: 4px;
  }

  .s1440\:first\:border-8:first-child{
    border-width: 8px;
  }

  .s1440\:first\:border:first-child{
    border-width: 1px;
  }

  .s1440\:first\:border-t-0:first-child{
    border-top-width: 0;
  }

  .s1440\:first\:border-r-0:first-child{
    border-right-width: 0;
  }

  .s1440\:first\:border-b-0:first-child{
    border-bottom-width: 0;
  }

  .s1440\:first\:border-l-0:first-child{
    border-left-width: 0;
  }

  .s1440\:first\:border-t-2:first-child{
    border-top-width: 2px;
  }

  .s1440\:first\:border-r-2:first-child{
    border-right-width: 2px;
  }

  .s1440\:first\:border-b-2:first-child{
    border-bottom-width: 2px;
  }

  .s1440\:first\:border-l-2:first-child{
    border-left-width: 2px;
  }

  .s1440\:first\:border-t-4:first-child{
    border-top-width: 4px;
  }

  .s1440\:first\:border-r-4:first-child{
    border-right-width: 4px;
  }

  .s1440\:first\:border-b-4:first-child{
    border-bottom-width: 4px;
  }

  .s1440\:first\:border-l-4:first-child{
    border-left-width: 4px;
  }

  .s1440\:first\:border-t-8:first-child{
    border-top-width: 8px;
  }

  .s1440\:first\:border-r-8:first-child{
    border-right-width: 8px;
  }

  .s1440\:first\:border-b-8:first-child{
    border-bottom-width: 8px;
  }

  .s1440\:first\:border-l-8:first-child{
    border-left-width: 8px;
  }

  .s1440\:first\:border-t:first-child{
    border-top-width: 1px;
  }

  .s1440\:first\:border-r:first-child{
    border-right-width: 1px;
  }

  .s1440\:first\:border-b:first-child{
    border-bottom-width: 1px;
  }

  .s1440\:first\:border-l:first-child{
    border-left-width: 1px;
  }

  .s1440\:last\:border-0:last-child{
    border-width: 0;
  }

  .s1440\:last\:border-2:last-child{
    border-width: 2px;
  }

  .s1440\:last\:border-4:last-child{
    border-width: 4px;
  }

  .s1440\:last\:border-8:last-child{
    border-width: 8px;
  }

  .s1440\:last\:border:last-child{
    border-width: 1px;
  }

  .s1440\:last\:border-t-0:last-child{
    border-top-width: 0;
  }

  .s1440\:last\:border-r-0:last-child{
    border-right-width: 0;
  }

  .s1440\:last\:border-b-0:last-child{
    border-bottom-width: 0;
  }

  .s1440\:last\:border-l-0:last-child{
    border-left-width: 0;
  }

  .s1440\:last\:border-t-2:last-child{
    border-top-width: 2px;
  }

  .s1440\:last\:border-r-2:last-child{
    border-right-width: 2px;
  }

  .s1440\:last\:border-b-2:last-child{
    border-bottom-width: 2px;
  }

  .s1440\:last\:border-l-2:last-child{
    border-left-width: 2px;
  }

  .s1440\:last\:border-t-4:last-child{
    border-top-width: 4px;
  }

  .s1440\:last\:border-r-4:last-child{
    border-right-width: 4px;
  }

  .s1440\:last\:border-b-4:last-child{
    border-bottom-width: 4px;
  }

  .s1440\:last\:border-l-4:last-child{
    border-left-width: 4px;
  }

  .s1440\:last\:border-t-8:last-child{
    border-top-width: 8px;
  }

  .s1440\:last\:border-r-8:last-child{
    border-right-width: 8px;
  }

  .s1440\:last\:border-b-8:last-child{
    border-bottom-width: 8px;
  }

  .s1440\:last\:border-l-8:last-child{
    border-left-width: 8px;
  }

  .s1440\:last\:border-t:last-child{
    border-top-width: 1px;
  }

  .s1440\:last\:border-r:last-child{
    border-right-width: 1px;
  }

  .s1440\:last\:border-b:last-child{
    border-bottom-width: 1px;
  }

  .s1440\:last\:border-l:last-child{
    border-left-width: 1px;
  }

  .s1440\:box-border{
    box-sizing: border-box;
  }

  .s1440\:box-content{
    box-sizing: content-box;
  }

  .s1440\:hover\:box-border:hover{
    box-sizing: border-box;
  }

  .s1440\:hover\:box-content:hover{
    box-sizing: content-box;
  }

  .s1440\:focus\:box-border:focus{
    box-sizing: border-box;
  }

  .s1440\:focus\:box-content:focus{
    box-sizing: content-box;
  }

  .s1440\:active\:box-border:active{
    box-sizing: border-box;
  }

  .s1440\:active\:box-content:active{
    box-sizing: content-box;
  }

  .s1440\:first\:box-border:first-child{
    box-sizing: border-box;
  }

  .s1440\:first\:box-content:first-child{
    box-sizing: content-box;
  }

  .s1440\:last\:box-border:last-child{
    box-sizing: border-box;
  }

  .s1440\:last\:box-content:last-child{
    box-sizing: content-box;
  }

  .s1440\:cursor-auto{
    cursor: auto;
  }

  .s1440\:cursor-default{
    cursor: default;
  }

  .s1440\:cursor-pointer{
    cursor: pointer;
  }

  .s1440\:cursor-wait{
    cursor: wait;
  }

  .s1440\:cursor-text{
    cursor: text;
  }

  .s1440\:cursor-move{
    cursor: move;
  }

  .s1440\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .s1440\:hover\:cursor-auto:hover{
    cursor: auto;
  }

  .s1440\:hover\:cursor-default:hover{
    cursor: default;
  }

  .s1440\:hover\:cursor-pointer:hover{
    cursor: pointer;
  }

  .s1440\:hover\:cursor-wait:hover{
    cursor: wait;
  }

  .s1440\:hover\:cursor-text:hover{
    cursor: text;
  }

  .s1440\:hover\:cursor-move:hover{
    cursor: move;
  }

  .s1440\:hover\:cursor-not-allowed:hover{
    cursor: not-allowed;
  }

  .s1440\:focus\:cursor-auto:focus{
    cursor: auto;
  }

  .s1440\:focus\:cursor-default:focus{
    cursor: default;
  }

  .s1440\:focus\:cursor-pointer:focus{
    cursor: pointer;
  }

  .s1440\:focus\:cursor-wait:focus{
    cursor: wait;
  }

  .s1440\:focus\:cursor-text:focus{
    cursor: text;
  }

  .s1440\:focus\:cursor-move:focus{
    cursor: move;
  }

  .s1440\:focus\:cursor-not-allowed:focus{
    cursor: not-allowed;
  }

  .s1440\:active\:cursor-auto:active{
    cursor: auto;
  }

  .s1440\:active\:cursor-default:active{
    cursor: default;
  }

  .s1440\:active\:cursor-pointer:active{
    cursor: pointer;
  }

  .s1440\:active\:cursor-wait:active{
    cursor: wait;
  }

  .s1440\:active\:cursor-text:active{
    cursor: text;
  }

  .s1440\:active\:cursor-move:active{
    cursor: move;
  }

  .s1440\:active\:cursor-not-allowed:active{
    cursor: not-allowed;
  }

  .s1440\:first\:cursor-auto:first-child{
    cursor: auto;
  }

  .s1440\:first\:cursor-default:first-child{
    cursor: default;
  }

  .s1440\:first\:cursor-pointer:first-child{
    cursor: pointer;
  }

  .s1440\:first\:cursor-wait:first-child{
    cursor: wait;
  }

  .s1440\:first\:cursor-text:first-child{
    cursor: text;
  }

  .s1440\:first\:cursor-move:first-child{
    cursor: move;
  }

  .s1440\:first\:cursor-not-allowed:first-child{
    cursor: not-allowed;
  }

  .s1440\:last\:cursor-auto:last-child{
    cursor: auto;
  }

  .s1440\:last\:cursor-default:last-child{
    cursor: default;
  }

  .s1440\:last\:cursor-pointer:last-child{
    cursor: pointer;
  }

  .s1440\:last\:cursor-wait:last-child{
    cursor: wait;
  }

  .s1440\:last\:cursor-text:last-child{
    cursor: text;
  }

  .s1440\:last\:cursor-move:last-child{
    cursor: move;
  }

  .s1440\:last\:cursor-not-allowed:last-child{
    cursor: not-allowed;
  }

  .s1440\:block{
    display: block;
  }

  .s1440\:inline-block{
    display: inline-block;
  }

  .s1440\:inline{
    display: inline;
  }

  .s1440\:flex{
    display: flex;
  }

  .s1440\:inline-flex{
    display: inline-flex;
  }

  .s1440\:table{
    display: table;
  }

  .s1440\:table-caption{
    display: table-caption;
  }

  .s1440\:table-cell{
    display: table-cell;
  }

  .s1440\:table-column{
    display: table-column;
  }

  .s1440\:table-column-group{
    display: table-column-group;
  }

  .s1440\:table-footer-group{
    display: table-footer-group;
  }

  .s1440\:table-header-group{
    display: table-header-group;
  }

  .s1440\:table-row-group{
    display: table-row-group;
  }

  .s1440\:table-row{
    display: table-row;
  }

  .s1440\:flow-root{
    display: flow-root;
  }

  .s1440\:grid{
    display: grid;
  }

  .s1440\:inline-grid{
    display: inline-grid;
  }

  .s1440\:contents{
    display: contents;
  }

  .s1440\:hidden{
    display: none;
  }

  .s1440\:hover\:block:hover{
    display: block;
  }

  .s1440\:hover\:inline-block:hover{
    display: inline-block;
  }

  .s1440\:hover\:inline:hover{
    display: inline;
  }

  .s1440\:hover\:flex:hover{
    display: flex;
  }

  .s1440\:hover\:inline-flex:hover{
    display: inline-flex;
  }

  .s1440\:hover\:table:hover{
    display: table;
  }

  .s1440\:hover\:table-caption:hover{
    display: table-caption;
  }

  .s1440\:hover\:table-cell:hover{
    display: table-cell;
  }

  .s1440\:hover\:table-column:hover{
    display: table-column;
  }

  .s1440\:hover\:table-column-group:hover{
    display: table-column-group;
  }

  .s1440\:hover\:table-footer-group:hover{
    display: table-footer-group;
  }

  .s1440\:hover\:table-header-group:hover{
    display: table-header-group;
  }

  .s1440\:hover\:table-row-group:hover{
    display: table-row-group;
  }

  .s1440\:hover\:table-row:hover{
    display: table-row;
  }

  .s1440\:hover\:flow-root:hover{
    display: flow-root;
  }

  .s1440\:hover\:grid:hover{
    display: grid;
  }

  .s1440\:hover\:inline-grid:hover{
    display: inline-grid;
  }

  .s1440\:hover\:contents:hover{
    display: contents;
  }

  .s1440\:hover\:hidden:hover{
    display: none;
  }

  .s1440\:focus\:block:focus{
    display: block;
  }

  .s1440\:focus\:inline-block:focus{
    display: inline-block;
  }

  .s1440\:focus\:inline:focus{
    display: inline;
  }

  .s1440\:focus\:flex:focus{
    display: flex;
  }

  .s1440\:focus\:inline-flex:focus{
    display: inline-flex;
  }

  .s1440\:focus\:table:focus{
    display: table;
  }

  .s1440\:focus\:table-caption:focus{
    display: table-caption;
  }

  .s1440\:focus\:table-cell:focus{
    display: table-cell;
  }

  .s1440\:focus\:table-column:focus{
    display: table-column;
  }

  .s1440\:focus\:table-column-group:focus{
    display: table-column-group;
  }

  .s1440\:focus\:table-footer-group:focus{
    display: table-footer-group;
  }

  .s1440\:focus\:table-header-group:focus{
    display: table-header-group;
  }

  .s1440\:focus\:table-row-group:focus{
    display: table-row-group;
  }

  .s1440\:focus\:table-row:focus{
    display: table-row;
  }

  .s1440\:focus\:flow-root:focus{
    display: flow-root;
  }

  .s1440\:focus\:grid:focus{
    display: grid;
  }

  .s1440\:focus\:inline-grid:focus{
    display: inline-grid;
  }

  .s1440\:focus\:contents:focus{
    display: contents;
  }

  .s1440\:focus\:hidden:focus{
    display: none;
  }

  .s1440\:active\:block:active{
    display: block;
  }

  .s1440\:active\:inline-block:active{
    display: inline-block;
  }

  .s1440\:active\:inline:active{
    display: inline;
  }

  .s1440\:active\:flex:active{
    display: flex;
  }

  .s1440\:active\:inline-flex:active{
    display: inline-flex;
  }

  .s1440\:active\:table:active{
    display: table;
  }

  .s1440\:active\:table-caption:active{
    display: table-caption;
  }

  .s1440\:active\:table-cell:active{
    display: table-cell;
  }

  .s1440\:active\:table-column:active{
    display: table-column;
  }

  .s1440\:active\:table-column-group:active{
    display: table-column-group;
  }

  .s1440\:active\:table-footer-group:active{
    display: table-footer-group;
  }

  .s1440\:active\:table-header-group:active{
    display: table-header-group;
  }

  .s1440\:active\:table-row-group:active{
    display: table-row-group;
  }

  .s1440\:active\:table-row:active{
    display: table-row;
  }

  .s1440\:active\:flow-root:active{
    display: flow-root;
  }

  .s1440\:active\:grid:active{
    display: grid;
  }

  .s1440\:active\:inline-grid:active{
    display: inline-grid;
  }

  .s1440\:active\:contents:active{
    display: contents;
  }

  .s1440\:active\:hidden:active{
    display: none;
  }

  .s1440\:first\:block:first-child{
    display: block;
  }

  .s1440\:first\:inline-block:first-child{
    display: inline-block;
  }

  .s1440\:first\:inline:first-child{
    display: inline;
  }

  .s1440\:first\:flex:first-child{
    display: flex;
  }

  .s1440\:first\:inline-flex:first-child{
    display: inline-flex;
  }

  .s1440\:first\:table:first-child{
    display: table;
  }

  .s1440\:first\:table-caption:first-child{
    display: table-caption;
  }

  .s1440\:first\:table-cell:first-child{
    display: table-cell;
  }

  .s1440\:first\:table-column:first-child{
    display: table-column;
  }

  .s1440\:first\:table-column-group:first-child{
    display: table-column-group;
  }

  .s1440\:first\:table-footer-group:first-child{
    display: table-footer-group;
  }

  .s1440\:first\:table-header-group:first-child{
    display: table-header-group;
  }

  .s1440\:first\:table-row-group:first-child{
    display: table-row-group;
  }

  .s1440\:first\:table-row:first-child{
    display: table-row;
  }

  .s1440\:first\:flow-root:first-child{
    display: flow-root;
  }

  .s1440\:first\:grid:first-child{
    display: grid;
  }

  .s1440\:first\:inline-grid:first-child{
    display: inline-grid;
  }

  .s1440\:first\:contents:first-child{
    display: contents;
  }

  .s1440\:first\:hidden:first-child{
    display: none;
  }

  .s1440\:last\:block:last-child{
    display: block;
  }

  .s1440\:last\:inline-block:last-child{
    display: inline-block;
  }

  .s1440\:last\:inline:last-child{
    display: inline;
  }

  .s1440\:last\:flex:last-child{
    display: flex;
  }

  .s1440\:last\:inline-flex:last-child{
    display: inline-flex;
  }

  .s1440\:last\:table:last-child{
    display: table;
  }

  .s1440\:last\:table-caption:last-child{
    display: table-caption;
  }

  .s1440\:last\:table-cell:last-child{
    display: table-cell;
  }

  .s1440\:last\:table-column:last-child{
    display: table-column;
  }

  .s1440\:last\:table-column-group:last-child{
    display: table-column-group;
  }

  .s1440\:last\:table-footer-group:last-child{
    display: table-footer-group;
  }

  .s1440\:last\:table-header-group:last-child{
    display: table-header-group;
  }

  .s1440\:last\:table-row-group:last-child{
    display: table-row-group;
  }

  .s1440\:last\:table-row:last-child{
    display: table-row;
  }

  .s1440\:last\:flow-root:last-child{
    display: flow-root;
  }

  .s1440\:last\:grid:last-child{
    display: grid;
  }

  .s1440\:last\:inline-grid:last-child{
    display: inline-grid;
  }

  .s1440\:last\:contents:last-child{
    display: contents;
  }

  .s1440\:last\:hidden:last-child{
    display: none;
  }

  .s1440\:flex-row{
    flex-direction: row;
  }

  .s1440\:flex-row-reverse{
    flex-direction: row-reverse;
  }

  .s1440\:flex-col{
    flex-direction: column;
  }

  .s1440\:flex-col-reverse{
    flex-direction: column-reverse;
  }

  .s1440\:hover\:flex-row:hover{
    flex-direction: row;
  }

  .s1440\:hover\:flex-row-reverse:hover{
    flex-direction: row-reverse;
  }

  .s1440\:hover\:flex-col:hover{
    flex-direction: column;
  }

  .s1440\:hover\:flex-col-reverse:hover{
    flex-direction: column-reverse;
  }

  .s1440\:focus\:flex-row:focus{
    flex-direction: row;
  }

  .s1440\:focus\:flex-row-reverse:focus{
    flex-direction: row-reverse;
  }

  .s1440\:focus\:flex-col:focus{
    flex-direction: column;
  }

  .s1440\:focus\:flex-col-reverse:focus{
    flex-direction: column-reverse;
  }

  .s1440\:active\:flex-row:active{
    flex-direction: row;
  }

  .s1440\:active\:flex-row-reverse:active{
    flex-direction: row-reverse;
  }

  .s1440\:active\:flex-col:active{
    flex-direction: column;
  }

  .s1440\:active\:flex-col-reverse:active{
    flex-direction: column-reverse;
  }

  .s1440\:first\:flex-row:first-child{
    flex-direction: row;
  }

  .s1440\:first\:flex-row-reverse:first-child{
    flex-direction: row-reverse;
  }

  .s1440\:first\:flex-col:first-child{
    flex-direction: column;
  }

  .s1440\:first\:flex-col-reverse:first-child{
    flex-direction: column-reverse;
  }

  .s1440\:last\:flex-row:last-child{
    flex-direction: row;
  }

  .s1440\:last\:flex-row-reverse:last-child{
    flex-direction: row-reverse;
  }

  .s1440\:last\:flex-col:last-child{
    flex-direction: column;
  }

  .s1440\:last\:flex-col-reverse:last-child{
    flex-direction: column-reverse;
  }

  .s1440\:flex-wrap{
    flex-wrap: wrap;
  }

  .s1440\:flex-wrap-reverse{
    flex-wrap: wrap-reverse;
  }

  .s1440\:flex-no-wrap{
    flex-wrap: nowrap;
  }

  .s1440\:hover\:flex-wrap:hover{
    flex-wrap: wrap;
  }

  .s1440\:hover\:flex-wrap-reverse:hover{
    flex-wrap: wrap-reverse;
  }

  .s1440\:hover\:flex-no-wrap:hover{
    flex-wrap: nowrap;
  }

  .s1440\:focus\:flex-wrap:focus{
    flex-wrap: wrap;
  }

  .s1440\:focus\:flex-wrap-reverse:focus{
    flex-wrap: wrap-reverse;
  }

  .s1440\:focus\:flex-no-wrap:focus{
    flex-wrap: nowrap;
  }

  .s1440\:active\:flex-wrap:active{
    flex-wrap: wrap;
  }

  .s1440\:active\:flex-wrap-reverse:active{
    flex-wrap: wrap-reverse;
  }

  .s1440\:active\:flex-no-wrap:active{
    flex-wrap: nowrap;
  }

  .s1440\:first\:flex-wrap:first-child{
    flex-wrap: wrap;
  }

  .s1440\:first\:flex-wrap-reverse:first-child{
    flex-wrap: wrap-reverse;
  }

  .s1440\:first\:flex-no-wrap:first-child{
    flex-wrap: nowrap;
  }

  .s1440\:last\:flex-wrap:last-child{
    flex-wrap: wrap;
  }

  .s1440\:last\:flex-wrap-reverse:last-child{
    flex-wrap: wrap-reverse;
  }

  .s1440\:last\:flex-no-wrap:last-child{
    flex-wrap: nowrap;
  }

  .s1440\:place-items-auto{
    place-items: auto;
  }

  .s1440\:place-items-start{
    place-items: start;
  }

  .s1440\:place-items-end{
    place-items: end;
  }

  .s1440\:place-items-center{
    place-items: center;
  }

  .s1440\:place-items-stretch{
    place-items: stretch;
  }

  .s1440\:hover\:place-items-auto:hover{
    place-items: auto;
  }

  .s1440\:hover\:place-items-start:hover{
    place-items: start;
  }

  .s1440\:hover\:place-items-end:hover{
    place-items: end;
  }

  .s1440\:hover\:place-items-center:hover{
    place-items: center;
  }

  .s1440\:hover\:place-items-stretch:hover{
    place-items: stretch;
  }

  .s1440\:focus\:place-items-auto:focus{
    place-items: auto;
  }

  .s1440\:focus\:place-items-start:focus{
    place-items: start;
  }

  .s1440\:focus\:place-items-end:focus{
    place-items: end;
  }

  .s1440\:focus\:place-items-center:focus{
    place-items: center;
  }

  .s1440\:focus\:place-items-stretch:focus{
    place-items: stretch;
  }

  .s1440\:active\:place-items-auto:active{
    place-items: auto;
  }

  .s1440\:active\:place-items-start:active{
    place-items: start;
  }

  .s1440\:active\:place-items-end:active{
    place-items: end;
  }

  .s1440\:active\:place-items-center:active{
    place-items: center;
  }

  .s1440\:active\:place-items-stretch:active{
    place-items: stretch;
  }

  .s1440\:first\:place-items-auto:first-child{
    place-items: auto;
  }

  .s1440\:first\:place-items-start:first-child{
    place-items: start;
  }

  .s1440\:first\:place-items-end:first-child{
    place-items: end;
  }

  .s1440\:first\:place-items-center:first-child{
    place-items: center;
  }

  .s1440\:first\:place-items-stretch:first-child{
    place-items: stretch;
  }

  .s1440\:last\:place-items-auto:last-child{
    place-items: auto;
  }

  .s1440\:last\:place-items-start:last-child{
    place-items: start;
  }

  .s1440\:last\:place-items-end:last-child{
    place-items: end;
  }

  .s1440\:last\:place-items-center:last-child{
    place-items: center;
  }

  .s1440\:last\:place-items-stretch:last-child{
    place-items: stretch;
  }

  .s1440\:place-content-center{
    place-content: center;
  }

  .s1440\:place-content-start{
    place-content: start;
  }

  .s1440\:place-content-end{
    place-content: end;
  }

  .s1440\:place-content-between{
    place-content: space-between;
  }

  .s1440\:place-content-around{
    place-content: space-around;
  }

  .s1440\:place-content-evenly{
    place-content: space-evenly;
  }

  .s1440\:place-content-stretch{
    place-content: stretch;
  }

  .s1440\:hover\:place-content-center:hover{
    place-content: center;
  }

  .s1440\:hover\:place-content-start:hover{
    place-content: start;
  }

  .s1440\:hover\:place-content-end:hover{
    place-content: end;
  }

  .s1440\:hover\:place-content-between:hover{
    place-content: space-between;
  }

  .s1440\:hover\:place-content-around:hover{
    place-content: space-around;
  }

  .s1440\:hover\:place-content-evenly:hover{
    place-content: space-evenly;
  }

  .s1440\:hover\:place-content-stretch:hover{
    place-content: stretch;
  }

  .s1440\:focus\:place-content-center:focus{
    place-content: center;
  }

  .s1440\:focus\:place-content-start:focus{
    place-content: start;
  }

  .s1440\:focus\:place-content-end:focus{
    place-content: end;
  }

  .s1440\:focus\:place-content-between:focus{
    place-content: space-between;
  }

  .s1440\:focus\:place-content-around:focus{
    place-content: space-around;
  }

  .s1440\:focus\:place-content-evenly:focus{
    place-content: space-evenly;
  }

  .s1440\:focus\:place-content-stretch:focus{
    place-content: stretch;
  }

  .s1440\:active\:place-content-center:active{
    place-content: center;
  }

  .s1440\:active\:place-content-start:active{
    place-content: start;
  }

  .s1440\:active\:place-content-end:active{
    place-content: end;
  }

  .s1440\:active\:place-content-between:active{
    place-content: space-between;
  }

  .s1440\:active\:place-content-around:active{
    place-content: space-around;
  }

  .s1440\:active\:place-content-evenly:active{
    place-content: space-evenly;
  }

  .s1440\:active\:place-content-stretch:active{
    place-content: stretch;
  }

  .s1440\:first\:place-content-center:first-child{
    place-content: center;
  }

  .s1440\:first\:place-content-start:first-child{
    place-content: start;
  }

  .s1440\:first\:place-content-end:first-child{
    place-content: end;
  }

  .s1440\:first\:place-content-between:first-child{
    place-content: space-between;
  }

  .s1440\:first\:place-content-around:first-child{
    place-content: space-around;
  }

  .s1440\:first\:place-content-evenly:first-child{
    place-content: space-evenly;
  }

  .s1440\:first\:place-content-stretch:first-child{
    place-content: stretch;
  }

  .s1440\:last\:place-content-center:last-child{
    place-content: center;
  }

  .s1440\:last\:place-content-start:last-child{
    place-content: start;
  }

  .s1440\:last\:place-content-end:last-child{
    place-content: end;
  }

  .s1440\:last\:place-content-between:last-child{
    place-content: space-between;
  }

  .s1440\:last\:place-content-around:last-child{
    place-content: space-around;
  }

  .s1440\:last\:place-content-evenly:last-child{
    place-content: space-evenly;
  }

  .s1440\:last\:place-content-stretch:last-child{
    place-content: stretch;
  }

  .s1440\:place-self-auto{
    place-self: auto;
  }

  .s1440\:place-self-start{
    place-self: start;
  }

  .s1440\:place-self-end{
    place-self: end;
  }

  .s1440\:place-self-center{
    place-self: center;
  }

  .s1440\:place-self-stretch{
    place-self: stretch;
  }

  .s1440\:hover\:place-self-auto:hover{
    place-self: auto;
  }

  .s1440\:hover\:place-self-start:hover{
    place-self: start;
  }

  .s1440\:hover\:place-self-end:hover{
    place-self: end;
  }

  .s1440\:hover\:place-self-center:hover{
    place-self: center;
  }

  .s1440\:hover\:place-self-stretch:hover{
    place-self: stretch;
  }

  .s1440\:focus\:place-self-auto:focus{
    place-self: auto;
  }

  .s1440\:focus\:place-self-start:focus{
    place-self: start;
  }

  .s1440\:focus\:place-self-end:focus{
    place-self: end;
  }

  .s1440\:focus\:place-self-center:focus{
    place-self: center;
  }

  .s1440\:focus\:place-self-stretch:focus{
    place-self: stretch;
  }

  .s1440\:active\:place-self-auto:active{
    place-self: auto;
  }

  .s1440\:active\:place-self-start:active{
    place-self: start;
  }

  .s1440\:active\:place-self-end:active{
    place-self: end;
  }

  .s1440\:active\:place-self-center:active{
    place-self: center;
  }

  .s1440\:active\:place-self-stretch:active{
    place-self: stretch;
  }

  .s1440\:first\:place-self-auto:first-child{
    place-self: auto;
  }

  .s1440\:first\:place-self-start:first-child{
    place-self: start;
  }

  .s1440\:first\:place-self-end:first-child{
    place-self: end;
  }

  .s1440\:first\:place-self-center:first-child{
    place-self: center;
  }

  .s1440\:first\:place-self-stretch:first-child{
    place-self: stretch;
  }

  .s1440\:last\:place-self-auto:last-child{
    place-self: auto;
  }

  .s1440\:last\:place-self-start:last-child{
    place-self: start;
  }

  .s1440\:last\:place-self-end:last-child{
    place-self: end;
  }

  .s1440\:last\:place-self-center:last-child{
    place-self: center;
  }

  .s1440\:last\:place-self-stretch:last-child{
    place-self: stretch;
  }

  .s1440\:items-start{
    align-items: flex-start;
  }

  .s1440\:items-end{
    align-items: flex-end;
  }

  .s1440\:items-center{
    align-items: center;
  }

  .s1440\:items-baseline{
    align-items: baseline;
  }

  .s1440\:items-stretch{
    align-items: stretch;
  }

  .s1440\:hover\:items-start:hover{
    align-items: flex-start;
  }

  .s1440\:hover\:items-end:hover{
    align-items: flex-end;
  }

  .s1440\:hover\:items-center:hover{
    align-items: center;
  }

  .s1440\:hover\:items-baseline:hover{
    align-items: baseline;
  }

  .s1440\:hover\:items-stretch:hover{
    align-items: stretch;
  }

  .s1440\:focus\:items-start:focus{
    align-items: flex-start;
  }

  .s1440\:focus\:items-end:focus{
    align-items: flex-end;
  }

  .s1440\:focus\:items-center:focus{
    align-items: center;
  }

  .s1440\:focus\:items-baseline:focus{
    align-items: baseline;
  }

  .s1440\:focus\:items-stretch:focus{
    align-items: stretch;
  }

  .s1440\:active\:items-start:active{
    align-items: flex-start;
  }

  .s1440\:active\:items-end:active{
    align-items: flex-end;
  }

  .s1440\:active\:items-center:active{
    align-items: center;
  }

  .s1440\:active\:items-baseline:active{
    align-items: baseline;
  }

  .s1440\:active\:items-stretch:active{
    align-items: stretch;
  }

  .s1440\:first\:items-start:first-child{
    align-items: flex-start;
  }

  .s1440\:first\:items-end:first-child{
    align-items: flex-end;
  }

  .s1440\:first\:items-center:first-child{
    align-items: center;
  }

  .s1440\:first\:items-baseline:first-child{
    align-items: baseline;
  }

  .s1440\:first\:items-stretch:first-child{
    align-items: stretch;
  }

  .s1440\:last\:items-start:last-child{
    align-items: flex-start;
  }

  .s1440\:last\:items-end:last-child{
    align-items: flex-end;
  }

  .s1440\:last\:items-center:last-child{
    align-items: center;
  }

  .s1440\:last\:items-baseline:last-child{
    align-items: baseline;
  }

  .s1440\:last\:items-stretch:last-child{
    align-items: stretch;
  }

  .s1440\:content-center{
    align-content: center;
  }

  .s1440\:content-start{
    align-content: flex-start;
  }

  .s1440\:content-end{
    align-content: flex-end;
  }

  .s1440\:content-between{
    align-content: space-between;
  }

  .s1440\:content-around{
    align-content: space-around;
  }

  .s1440\:content-evenly{
    align-content: space-evenly;
  }

  .s1440\:hover\:content-center:hover{
    align-content: center;
  }

  .s1440\:hover\:content-start:hover{
    align-content: flex-start;
  }

  .s1440\:hover\:content-end:hover{
    align-content: flex-end;
  }

  .s1440\:hover\:content-between:hover{
    align-content: space-between;
  }

  .s1440\:hover\:content-around:hover{
    align-content: space-around;
  }

  .s1440\:hover\:content-evenly:hover{
    align-content: space-evenly;
  }

  .s1440\:focus\:content-center:focus{
    align-content: center;
  }

  .s1440\:focus\:content-start:focus{
    align-content: flex-start;
  }

  .s1440\:focus\:content-end:focus{
    align-content: flex-end;
  }

  .s1440\:focus\:content-between:focus{
    align-content: space-between;
  }

  .s1440\:focus\:content-around:focus{
    align-content: space-around;
  }

  .s1440\:focus\:content-evenly:focus{
    align-content: space-evenly;
  }

  .s1440\:active\:content-center:active{
    align-content: center;
  }

  .s1440\:active\:content-start:active{
    align-content: flex-start;
  }

  .s1440\:active\:content-end:active{
    align-content: flex-end;
  }

  .s1440\:active\:content-between:active{
    align-content: space-between;
  }

  .s1440\:active\:content-around:active{
    align-content: space-around;
  }

  .s1440\:active\:content-evenly:active{
    align-content: space-evenly;
  }

  .s1440\:first\:content-center:first-child{
    align-content: center;
  }

  .s1440\:first\:content-start:first-child{
    align-content: flex-start;
  }

  .s1440\:first\:content-end:first-child{
    align-content: flex-end;
  }

  .s1440\:first\:content-between:first-child{
    align-content: space-between;
  }

  .s1440\:first\:content-around:first-child{
    align-content: space-around;
  }

  .s1440\:first\:content-evenly:first-child{
    align-content: space-evenly;
  }

  .s1440\:last\:content-center:last-child{
    align-content: center;
  }

  .s1440\:last\:content-start:last-child{
    align-content: flex-start;
  }

  .s1440\:last\:content-end:last-child{
    align-content: flex-end;
  }

  .s1440\:last\:content-between:last-child{
    align-content: space-between;
  }

  .s1440\:last\:content-around:last-child{
    align-content: space-around;
  }

  .s1440\:last\:content-evenly:last-child{
    align-content: space-evenly;
  }

  .s1440\:self-auto{
    align-self: auto;
  }

  .s1440\:self-start{
    align-self: flex-start;
  }

  .s1440\:self-end{
    align-self: flex-end;
  }

  .s1440\:self-center{
    align-self: center;
  }

  .s1440\:self-stretch{
    align-self: stretch;
  }

  .s1440\:hover\:self-auto:hover{
    align-self: auto;
  }

  .s1440\:hover\:self-start:hover{
    align-self: flex-start;
  }

  .s1440\:hover\:self-end:hover{
    align-self: flex-end;
  }

  .s1440\:hover\:self-center:hover{
    align-self: center;
  }

  .s1440\:hover\:self-stretch:hover{
    align-self: stretch;
  }

  .s1440\:focus\:self-auto:focus{
    align-self: auto;
  }

  .s1440\:focus\:self-start:focus{
    align-self: flex-start;
  }

  .s1440\:focus\:self-end:focus{
    align-self: flex-end;
  }

  .s1440\:focus\:self-center:focus{
    align-self: center;
  }

  .s1440\:focus\:self-stretch:focus{
    align-self: stretch;
  }

  .s1440\:active\:self-auto:active{
    align-self: auto;
  }

  .s1440\:active\:self-start:active{
    align-self: flex-start;
  }

  .s1440\:active\:self-end:active{
    align-self: flex-end;
  }

  .s1440\:active\:self-center:active{
    align-self: center;
  }

  .s1440\:active\:self-stretch:active{
    align-self: stretch;
  }

  .s1440\:first\:self-auto:first-child{
    align-self: auto;
  }

  .s1440\:first\:self-start:first-child{
    align-self: flex-start;
  }

  .s1440\:first\:self-end:first-child{
    align-self: flex-end;
  }

  .s1440\:first\:self-center:first-child{
    align-self: center;
  }

  .s1440\:first\:self-stretch:first-child{
    align-self: stretch;
  }

  .s1440\:last\:self-auto:last-child{
    align-self: auto;
  }

  .s1440\:last\:self-start:last-child{
    align-self: flex-start;
  }

  .s1440\:last\:self-end:last-child{
    align-self: flex-end;
  }

  .s1440\:last\:self-center:last-child{
    align-self: center;
  }

  .s1440\:last\:self-stretch:last-child{
    align-self: stretch;
  }

  .s1440\:justify-items-auto{
    justify-items: auto;
  }

  .s1440\:justify-items-start{
    justify-items: start;
  }

  .s1440\:justify-items-end{
    justify-items: end;
  }

  .s1440\:justify-items-center{
    justify-items: center;
  }

  .s1440\:justify-items-stretch{
    justify-items: stretch;
  }

  .s1440\:hover\:justify-items-auto:hover{
    justify-items: auto;
  }

  .s1440\:hover\:justify-items-start:hover{
    justify-items: start;
  }

  .s1440\:hover\:justify-items-end:hover{
    justify-items: end;
  }

  .s1440\:hover\:justify-items-center:hover{
    justify-items: center;
  }

  .s1440\:hover\:justify-items-stretch:hover{
    justify-items: stretch;
  }

  .s1440\:focus\:justify-items-auto:focus{
    justify-items: auto;
  }

  .s1440\:focus\:justify-items-start:focus{
    justify-items: start;
  }

  .s1440\:focus\:justify-items-end:focus{
    justify-items: end;
  }

  .s1440\:focus\:justify-items-center:focus{
    justify-items: center;
  }

  .s1440\:focus\:justify-items-stretch:focus{
    justify-items: stretch;
  }

  .s1440\:active\:justify-items-auto:active{
    justify-items: auto;
  }

  .s1440\:active\:justify-items-start:active{
    justify-items: start;
  }

  .s1440\:active\:justify-items-end:active{
    justify-items: end;
  }

  .s1440\:active\:justify-items-center:active{
    justify-items: center;
  }

  .s1440\:active\:justify-items-stretch:active{
    justify-items: stretch;
  }

  .s1440\:first\:justify-items-auto:first-child{
    justify-items: auto;
  }

  .s1440\:first\:justify-items-start:first-child{
    justify-items: start;
  }

  .s1440\:first\:justify-items-end:first-child{
    justify-items: end;
  }

  .s1440\:first\:justify-items-center:first-child{
    justify-items: center;
  }

  .s1440\:first\:justify-items-stretch:first-child{
    justify-items: stretch;
  }

  .s1440\:last\:justify-items-auto:last-child{
    justify-items: auto;
  }

  .s1440\:last\:justify-items-start:last-child{
    justify-items: start;
  }

  .s1440\:last\:justify-items-end:last-child{
    justify-items: end;
  }

  .s1440\:last\:justify-items-center:last-child{
    justify-items: center;
  }

  .s1440\:last\:justify-items-stretch:last-child{
    justify-items: stretch;
  }

  .s1440\:justify-start{
    justify-content: flex-start;
  }

  .s1440\:justify-end{
    justify-content: flex-end;
  }

  .s1440\:justify-center{
    justify-content: center;
  }

  .s1440\:justify-between{
    justify-content: space-between;
  }

  .s1440\:justify-around{
    justify-content: space-around;
  }

  .s1440\:justify-evenly{
    justify-content: space-evenly;
  }

  .s1440\:hover\:justify-start:hover{
    justify-content: flex-start;
  }

  .s1440\:hover\:justify-end:hover{
    justify-content: flex-end;
  }

  .s1440\:hover\:justify-center:hover{
    justify-content: center;
  }

  .s1440\:hover\:justify-between:hover{
    justify-content: space-between;
  }

  .s1440\:hover\:justify-around:hover{
    justify-content: space-around;
  }

  .s1440\:hover\:justify-evenly:hover{
    justify-content: space-evenly;
  }

  .s1440\:focus\:justify-start:focus{
    justify-content: flex-start;
  }

  .s1440\:focus\:justify-end:focus{
    justify-content: flex-end;
  }

  .s1440\:focus\:justify-center:focus{
    justify-content: center;
  }

  .s1440\:focus\:justify-between:focus{
    justify-content: space-between;
  }

  .s1440\:focus\:justify-around:focus{
    justify-content: space-around;
  }

  .s1440\:focus\:justify-evenly:focus{
    justify-content: space-evenly;
  }

  .s1440\:active\:justify-start:active{
    justify-content: flex-start;
  }

  .s1440\:active\:justify-end:active{
    justify-content: flex-end;
  }

  .s1440\:active\:justify-center:active{
    justify-content: center;
  }

  .s1440\:active\:justify-between:active{
    justify-content: space-between;
  }

  .s1440\:active\:justify-around:active{
    justify-content: space-around;
  }

  .s1440\:active\:justify-evenly:active{
    justify-content: space-evenly;
  }

  .s1440\:first\:justify-start:first-child{
    justify-content: flex-start;
  }

  .s1440\:first\:justify-end:first-child{
    justify-content: flex-end;
  }

  .s1440\:first\:justify-center:first-child{
    justify-content: center;
  }

  .s1440\:first\:justify-between:first-child{
    justify-content: space-between;
  }

  .s1440\:first\:justify-around:first-child{
    justify-content: space-around;
  }

  .s1440\:first\:justify-evenly:first-child{
    justify-content: space-evenly;
  }

  .s1440\:last\:justify-start:last-child{
    justify-content: flex-start;
  }

  .s1440\:last\:justify-end:last-child{
    justify-content: flex-end;
  }

  .s1440\:last\:justify-center:last-child{
    justify-content: center;
  }

  .s1440\:last\:justify-between:last-child{
    justify-content: space-between;
  }

  .s1440\:last\:justify-around:last-child{
    justify-content: space-around;
  }

  .s1440\:last\:justify-evenly:last-child{
    justify-content: space-evenly;
  }

  .s1440\:justify-self-auto{
    justify-self: auto;
  }

  .s1440\:justify-self-start{
    justify-self: start;
  }

  .s1440\:justify-self-end{
    justify-self: end;
  }

  .s1440\:justify-self-center{
    justify-self: center;
  }

  .s1440\:justify-self-stretch{
    justify-self: stretch;
  }

  .s1440\:hover\:justify-self-auto:hover{
    justify-self: auto;
  }

  .s1440\:hover\:justify-self-start:hover{
    justify-self: start;
  }

  .s1440\:hover\:justify-self-end:hover{
    justify-self: end;
  }

  .s1440\:hover\:justify-self-center:hover{
    justify-self: center;
  }

  .s1440\:hover\:justify-self-stretch:hover{
    justify-self: stretch;
  }

  .s1440\:focus\:justify-self-auto:focus{
    justify-self: auto;
  }

  .s1440\:focus\:justify-self-start:focus{
    justify-self: start;
  }

  .s1440\:focus\:justify-self-end:focus{
    justify-self: end;
  }

  .s1440\:focus\:justify-self-center:focus{
    justify-self: center;
  }

  .s1440\:focus\:justify-self-stretch:focus{
    justify-self: stretch;
  }

  .s1440\:active\:justify-self-auto:active{
    justify-self: auto;
  }

  .s1440\:active\:justify-self-start:active{
    justify-self: start;
  }

  .s1440\:active\:justify-self-end:active{
    justify-self: end;
  }

  .s1440\:active\:justify-self-center:active{
    justify-self: center;
  }

  .s1440\:active\:justify-self-stretch:active{
    justify-self: stretch;
  }

  .s1440\:first\:justify-self-auto:first-child{
    justify-self: auto;
  }

  .s1440\:first\:justify-self-start:first-child{
    justify-self: start;
  }

  .s1440\:first\:justify-self-end:first-child{
    justify-self: end;
  }

  .s1440\:first\:justify-self-center:first-child{
    justify-self: center;
  }

  .s1440\:first\:justify-self-stretch:first-child{
    justify-self: stretch;
  }

  .s1440\:last\:justify-self-auto:last-child{
    justify-self: auto;
  }

  .s1440\:last\:justify-self-start:last-child{
    justify-self: start;
  }

  .s1440\:last\:justify-self-end:last-child{
    justify-self: end;
  }

  .s1440\:last\:justify-self-center:last-child{
    justify-self: center;
  }

  .s1440\:last\:justify-self-stretch:last-child{
    justify-self: stretch;
  }

  .s1440\:flex-1{
    flex: 1 1 0%;
  }

  .s1440\:flex-auto{
    flex: 1 1 auto;
  }

  .s1440\:flex-initial{
    flex: 0 1 auto;
  }

  .s1440\:flex-none{
    flex: none;
  }

  .s1440\:hover\:flex-1:hover{
    flex: 1 1 0%;
  }

  .s1440\:hover\:flex-auto:hover{
    flex: 1 1 auto;
  }

  .s1440\:hover\:flex-initial:hover{
    flex: 0 1 auto;
  }

  .s1440\:hover\:flex-none:hover{
    flex: none;
  }

  .s1440\:focus\:flex-1:focus{
    flex: 1 1 0%;
  }

  .s1440\:focus\:flex-auto:focus{
    flex: 1 1 auto;
  }

  .s1440\:focus\:flex-initial:focus{
    flex: 0 1 auto;
  }

  .s1440\:focus\:flex-none:focus{
    flex: none;
  }

  .s1440\:active\:flex-1:active{
    flex: 1 1 0%;
  }

  .s1440\:active\:flex-auto:active{
    flex: 1 1 auto;
  }

  .s1440\:active\:flex-initial:active{
    flex: 0 1 auto;
  }

  .s1440\:active\:flex-none:active{
    flex: none;
  }

  .s1440\:first\:flex-1:first-child{
    flex: 1 1 0%;
  }

  .s1440\:first\:flex-auto:first-child{
    flex: 1 1 auto;
  }

  .s1440\:first\:flex-initial:first-child{
    flex: 0 1 auto;
  }

  .s1440\:first\:flex-none:first-child{
    flex: none;
  }

  .s1440\:last\:flex-1:last-child{
    flex: 1 1 0%;
  }

  .s1440\:last\:flex-auto:last-child{
    flex: 1 1 auto;
  }

  .s1440\:last\:flex-initial:last-child{
    flex: 0 1 auto;
  }

  .s1440\:last\:flex-none:last-child{
    flex: none;
  }

  .s1440\:flex-grow-0{
    flex-grow: 0;
  }

  .s1440\:flex-grow-2{
    flex-grow: 2;
  }

  .s1440\:flex-grow{
    flex-grow: 1;
  }

  .s1440\:hover\:flex-grow-0:hover{
    flex-grow: 0;
  }

  .s1440\:hover\:flex-grow-2:hover{
    flex-grow: 2;
  }

  .s1440\:hover\:flex-grow:hover{
    flex-grow: 1;
  }

  .s1440\:focus\:flex-grow-0:focus{
    flex-grow: 0;
  }

  .s1440\:focus\:flex-grow-2:focus{
    flex-grow: 2;
  }

  .s1440\:focus\:flex-grow:focus{
    flex-grow: 1;
  }

  .s1440\:active\:flex-grow-0:active{
    flex-grow: 0;
  }

  .s1440\:active\:flex-grow-2:active{
    flex-grow: 2;
  }

  .s1440\:active\:flex-grow:active{
    flex-grow: 1;
  }

  .s1440\:first\:flex-grow-0:first-child{
    flex-grow: 0;
  }

  .s1440\:first\:flex-grow-2:first-child{
    flex-grow: 2;
  }

  .s1440\:first\:flex-grow:first-child{
    flex-grow: 1;
  }

  .s1440\:last\:flex-grow-0:last-child{
    flex-grow: 0;
  }

  .s1440\:last\:flex-grow-2:last-child{
    flex-grow: 2;
  }

  .s1440\:last\:flex-grow:last-child{
    flex-grow: 1;
  }

  .s1440\:flex-shrink-0{
    flex-shrink: 0;
  }

  .s1440\:flex-shrink{
    flex-shrink: 1;
  }

  .s1440\:hover\:flex-shrink-0:hover{
    flex-shrink: 0;
  }

  .s1440\:hover\:flex-shrink:hover{
    flex-shrink: 1;
  }

  .s1440\:focus\:flex-shrink-0:focus{
    flex-shrink: 0;
  }

  .s1440\:focus\:flex-shrink:focus{
    flex-shrink: 1;
  }

  .s1440\:active\:flex-shrink-0:active{
    flex-shrink: 0;
  }

  .s1440\:active\:flex-shrink:active{
    flex-shrink: 1;
  }

  .s1440\:first\:flex-shrink-0:first-child{
    flex-shrink: 0;
  }

  .s1440\:first\:flex-shrink:first-child{
    flex-shrink: 1;
  }

  .s1440\:last\:flex-shrink-0:last-child{
    flex-shrink: 0;
  }

  .s1440\:last\:flex-shrink:last-child{
    flex-shrink: 1;
  }

  .s1440\:order-1{
    order: 1;
  }

  .s1440\:order-2{
    order: 2;
  }

  .s1440\:order-3{
    order: 3;
  }

  .s1440\:order-4{
    order: 4;
  }

  .s1440\:order-5{
    order: 5;
  }

  .s1440\:order-6{
    order: 6;
  }

  .s1440\:order-7{
    order: 7;
  }

  .s1440\:order-8{
    order: 8;
  }

  .s1440\:order-9{
    order: 9;
  }

  .s1440\:order-10{
    order: 10;
  }

  .s1440\:order-11{
    order: 11;
  }

  .s1440\:order-12{
    order: 12;
  }

  .s1440\:order-first{
    order: -9999;
  }

  .s1440\:order-last{
    order: 9999;
  }

  .s1440\:order-none{
    order: 0;
  }

  .s1440\:hover\:order-1:hover{
    order: 1;
  }

  .s1440\:hover\:order-2:hover{
    order: 2;
  }

  .s1440\:hover\:order-3:hover{
    order: 3;
  }

  .s1440\:hover\:order-4:hover{
    order: 4;
  }

  .s1440\:hover\:order-5:hover{
    order: 5;
  }

  .s1440\:hover\:order-6:hover{
    order: 6;
  }

  .s1440\:hover\:order-7:hover{
    order: 7;
  }

  .s1440\:hover\:order-8:hover{
    order: 8;
  }

  .s1440\:hover\:order-9:hover{
    order: 9;
  }

  .s1440\:hover\:order-10:hover{
    order: 10;
  }

  .s1440\:hover\:order-11:hover{
    order: 11;
  }

  .s1440\:hover\:order-12:hover{
    order: 12;
  }

  .s1440\:hover\:order-first:hover{
    order: -9999;
  }

  .s1440\:hover\:order-last:hover{
    order: 9999;
  }

  .s1440\:hover\:order-none:hover{
    order: 0;
  }

  .s1440\:focus\:order-1:focus{
    order: 1;
  }

  .s1440\:focus\:order-2:focus{
    order: 2;
  }

  .s1440\:focus\:order-3:focus{
    order: 3;
  }

  .s1440\:focus\:order-4:focus{
    order: 4;
  }

  .s1440\:focus\:order-5:focus{
    order: 5;
  }

  .s1440\:focus\:order-6:focus{
    order: 6;
  }

  .s1440\:focus\:order-7:focus{
    order: 7;
  }

  .s1440\:focus\:order-8:focus{
    order: 8;
  }

  .s1440\:focus\:order-9:focus{
    order: 9;
  }

  .s1440\:focus\:order-10:focus{
    order: 10;
  }

  .s1440\:focus\:order-11:focus{
    order: 11;
  }

  .s1440\:focus\:order-12:focus{
    order: 12;
  }

  .s1440\:focus\:order-first:focus{
    order: -9999;
  }

  .s1440\:focus\:order-last:focus{
    order: 9999;
  }

  .s1440\:focus\:order-none:focus{
    order: 0;
  }

  .s1440\:active\:order-1:active{
    order: 1;
  }

  .s1440\:active\:order-2:active{
    order: 2;
  }

  .s1440\:active\:order-3:active{
    order: 3;
  }

  .s1440\:active\:order-4:active{
    order: 4;
  }

  .s1440\:active\:order-5:active{
    order: 5;
  }

  .s1440\:active\:order-6:active{
    order: 6;
  }

  .s1440\:active\:order-7:active{
    order: 7;
  }

  .s1440\:active\:order-8:active{
    order: 8;
  }

  .s1440\:active\:order-9:active{
    order: 9;
  }

  .s1440\:active\:order-10:active{
    order: 10;
  }

  .s1440\:active\:order-11:active{
    order: 11;
  }

  .s1440\:active\:order-12:active{
    order: 12;
  }

  .s1440\:active\:order-first:active{
    order: -9999;
  }

  .s1440\:active\:order-last:active{
    order: 9999;
  }

  .s1440\:active\:order-none:active{
    order: 0;
  }

  .s1440\:first\:order-1:first-child{
    order: 1;
  }

  .s1440\:first\:order-2:first-child{
    order: 2;
  }

  .s1440\:first\:order-3:first-child{
    order: 3;
  }

  .s1440\:first\:order-4:first-child{
    order: 4;
  }

  .s1440\:first\:order-5:first-child{
    order: 5;
  }

  .s1440\:first\:order-6:first-child{
    order: 6;
  }

  .s1440\:first\:order-7:first-child{
    order: 7;
  }

  .s1440\:first\:order-8:first-child{
    order: 8;
  }

  .s1440\:first\:order-9:first-child{
    order: 9;
  }

  .s1440\:first\:order-10:first-child{
    order: 10;
  }

  .s1440\:first\:order-11:first-child{
    order: 11;
  }

  .s1440\:first\:order-12:first-child{
    order: 12;
  }

  .s1440\:first\:order-first:first-child{
    order: -9999;
  }

  .s1440\:first\:order-last:first-child{
    order: 9999;
  }

  .s1440\:first\:order-none:first-child{
    order: 0;
  }

  .s1440\:last\:order-1:last-child{
    order: 1;
  }

  .s1440\:last\:order-2:last-child{
    order: 2;
  }

  .s1440\:last\:order-3:last-child{
    order: 3;
  }

  .s1440\:last\:order-4:last-child{
    order: 4;
  }

  .s1440\:last\:order-5:last-child{
    order: 5;
  }

  .s1440\:last\:order-6:last-child{
    order: 6;
  }

  .s1440\:last\:order-7:last-child{
    order: 7;
  }

  .s1440\:last\:order-8:last-child{
    order: 8;
  }

  .s1440\:last\:order-9:last-child{
    order: 9;
  }

  .s1440\:last\:order-10:last-child{
    order: 10;
  }

  .s1440\:last\:order-11:last-child{
    order: 11;
  }

  .s1440\:last\:order-12:last-child{
    order: 12;
  }

  .s1440\:last\:order-first:last-child{
    order: -9999;
  }

  .s1440\:last\:order-last:last-child{
    order: 9999;
  }

  .s1440\:last\:order-none:last-child{
    order: 0;
  }

  .s1440\:float-right{
    float: right;
  }

  .s1440\:float-left{
    float: left;
  }

  .s1440\:float-none{
    float: none;
  }

  .s1440\:clearfix:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1440\:hover\:float-right:hover{
    float: right;
  }

  .s1440\:hover\:float-left:hover{
    float: left;
  }

  .s1440\:hover\:float-none:hover{
    float: none;
  }

  .s1440\:hover\:clearfix:hover:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1440\:focus\:float-right:focus{
    float: right;
  }

  .s1440\:focus\:float-left:focus{
    float: left;
  }

  .s1440\:focus\:float-none:focus{
    float: none;
  }

  .s1440\:focus\:clearfix:focus:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1440\:active\:float-right:active{
    float: right;
  }

  .s1440\:active\:float-left:active{
    float: left;
  }

  .s1440\:active\:float-none:active{
    float: none;
  }

  .s1440\:active\:clearfix:active:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1440\:first\:float-right:first-child{
    float: right;
  }

  .s1440\:first\:float-left:first-child{
    float: left;
  }

  .s1440\:first\:float-none:first-child{
    float: none;
  }

  .s1440\:first\:clearfix:first-child:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1440\:last\:float-right:last-child{
    float: right;
  }

  .s1440\:last\:float-left:last-child{
    float: left;
  }

  .s1440\:last\:float-none:last-child{
    float: none;
  }

  .s1440\:last\:clearfix:last-child:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1440\:clear-left{
    clear: left;
  }

  .s1440\:clear-right{
    clear: right;
  }

  .s1440\:clear-both{
    clear: both;
  }

  .s1440\:clear-none{
    clear: none;
  }

  .s1440\:hover\:clear-left:hover{
    clear: left;
  }

  .s1440\:hover\:clear-right:hover{
    clear: right;
  }

  .s1440\:hover\:clear-both:hover{
    clear: both;
  }

  .s1440\:hover\:clear-none:hover{
    clear: none;
  }

  .s1440\:focus\:clear-left:focus{
    clear: left;
  }

  .s1440\:focus\:clear-right:focus{
    clear: right;
  }

  .s1440\:focus\:clear-both:focus{
    clear: both;
  }

  .s1440\:focus\:clear-none:focus{
    clear: none;
  }

  .s1440\:active\:clear-left:active{
    clear: left;
  }

  .s1440\:active\:clear-right:active{
    clear: right;
  }

  .s1440\:active\:clear-both:active{
    clear: both;
  }

  .s1440\:active\:clear-none:active{
    clear: none;
  }

  .s1440\:first\:clear-left:first-child{
    clear: left;
  }

  .s1440\:first\:clear-right:first-child{
    clear: right;
  }

  .s1440\:first\:clear-both:first-child{
    clear: both;
  }

  .s1440\:first\:clear-none:first-child{
    clear: none;
  }

  .s1440\:last\:clear-left:last-child{
    clear: left;
  }

  .s1440\:last\:clear-right:last-child{
    clear: right;
  }

  .s1440\:last\:clear-both:last-child{
    clear: both;
  }

  .s1440\:last\:clear-none:last-child{
    clear: none;
  }

  .s1440\:font-moderat{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1440\:font-brown-pro{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1440\:font-print{
    font-family: Bianco Sans;
  }

  .s1440\:font-print-serif{
    font-family: Bianco Serif;
  }

  .s1440\:hover\:font-moderat:hover{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1440\:hover\:font-brown-pro:hover{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1440\:hover\:font-print:hover{
    font-family: Bianco Sans;
  }

  .s1440\:hover\:font-print-serif:hover{
    font-family: Bianco Serif;
  }

  .s1440\:focus\:font-moderat:focus{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1440\:focus\:font-brown-pro:focus{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1440\:focus\:font-print:focus{
    font-family: Bianco Sans;
  }

  .s1440\:focus\:font-print-serif:focus{
    font-family: Bianco Serif;
  }

  .s1440\:active\:font-moderat:active{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1440\:active\:font-brown-pro:active{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1440\:active\:font-print:active{
    font-family: Bianco Sans;
  }

  .s1440\:active\:font-print-serif:active{
    font-family: Bianco Serif;
  }

  .s1440\:first\:font-moderat:first-child{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1440\:first\:font-brown-pro:first-child{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1440\:first\:font-print:first-child{
    font-family: Bianco Sans;
  }

  .s1440\:first\:font-print-serif:first-child{
    font-family: Bianco Serif;
  }

  .s1440\:last\:font-moderat:last-child{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1440\:last\:font-brown-pro:last-child{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1440\:last\:font-print:last-child{
    font-family: Bianco Sans;
  }

  .s1440\:last\:font-print-serif:last-child{
    font-family: Bianco Serif;
  }

  .s1440\:font-hairline{
    font-weight: 100;
  }

  .s1440\:font-thin{
    font-weight: 200;
  }

  .s1440\:font-light{
    font-weight: 300;
  }

  .s1440\:font-normal{
    font-weight: 400;
  }

  .s1440\:font-medium{
    font-weight: 500;
  }

  .s1440\:font-semibold{
    font-weight: 600;
  }

  .s1440\:font-bold{
    font-weight: 700;
  }

  .s1440\:font-extrabold{
    font-weight: 800;
  }

  .s1440\:font-black{
    font-weight: 900;
  }

  .s1440\:hover\:font-hairline:hover{
    font-weight: 100;
  }

  .s1440\:hover\:font-thin:hover{
    font-weight: 200;
  }

  .s1440\:hover\:font-light:hover{
    font-weight: 300;
  }

  .s1440\:hover\:font-normal:hover{
    font-weight: 400;
  }

  .s1440\:hover\:font-medium:hover{
    font-weight: 500;
  }

  .s1440\:hover\:font-semibold:hover{
    font-weight: 600;
  }

  .s1440\:hover\:font-bold:hover{
    font-weight: 700;
  }

  .s1440\:hover\:font-extrabold:hover{
    font-weight: 800;
  }

  .s1440\:hover\:font-black:hover{
    font-weight: 900;
  }

  .s1440\:focus\:font-hairline:focus{
    font-weight: 100;
  }

  .s1440\:focus\:font-thin:focus{
    font-weight: 200;
  }

  .s1440\:focus\:font-light:focus{
    font-weight: 300;
  }

  .s1440\:focus\:font-normal:focus{
    font-weight: 400;
  }

  .s1440\:focus\:font-medium:focus{
    font-weight: 500;
  }

  .s1440\:focus\:font-semibold:focus{
    font-weight: 600;
  }

  .s1440\:focus\:font-bold:focus{
    font-weight: 700;
  }

  .s1440\:focus\:font-extrabold:focus{
    font-weight: 800;
  }

  .s1440\:focus\:font-black:focus{
    font-weight: 900;
  }

  .s1440\:active\:font-hairline:active{
    font-weight: 100;
  }

  .s1440\:active\:font-thin:active{
    font-weight: 200;
  }

  .s1440\:active\:font-light:active{
    font-weight: 300;
  }

  .s1440\:active\:font-normal:active{
    font-weight: 400;
  }

  .s1440\:active\:font-medium:active{
    font-weight: 500;
  }

  .s1440\:active\:font-semibold:active{
    font-weight: 600;
  }

  .s1440\:active\:font-bold:active{
    font-weight: 700;
  }

  .s1440\:active\:font-extrabold:active{
    font-weight: 800;
  }

  .s1440\:active\:font-black:active{
    font-weight: 900;
  }

  .s1440\:first\:font-hairline:first-child{
    font-weight: 100;
  }

  .s1440\:first\:font-thin:first-child{
    font-weight: 200;
  }

  .s1440\:first\:font-light:first-child{
    font-weight: 300;
  }

  .s1440\:first\:font-normal:first-child{
    font-weight: 400;
  }

  .s1440\:first\:font-medium:first-child{
    font-weight: 500;
  }

  .s1440\:first\:font-semibold:first-child{
    font-weight: 600;
  }

  .s1440\:first\:font-bold:first-child{
    font-weight: 700;
  }

  .s1440\:first\:font-extrabold:first-child{
    font-weight: 800;
  }

  .s1440\:first\:font-black:first-child{
    font-weight: 900;
  }

  .s1440\:last\:font-hairline:last-child{
    font-weight: 100;
  }

  .s1440\:last\:font-thin:last-child{
    font-weight: 200;
  }

  .s1440\:last\:font-light:last-child{
    font-weight: 300;
  }

  .s1440\:last\:font-normal:last-child{
    font-weight: 400;
  }

  .s1440\:last\:font-medium:last-child{
    font-weight: 500;
  }

  .s1440\:last\:font-semibold:last-child{
    font-weight: 600;
  }

  .s1440\:last\:font-bold:last-child{
    font-weight: 700;
  }

  .s1440\:last\:font-extrabold:last-child{
    font-weight: 800;
  }

  .s1440\:last\:font-black:last-child{
    font-weight: 900;
  }

  .s1440\:h-0{
    height: 0;
  }

  .s1440\:h-1{
    height: 0.25rem;
  }

  .s1440\:h-2{
    height: 0.5rem;
  }

  .s1440\:h-3{
    height: 0.75rem;
  }

  .s1440\:h-4{
    height: 1rem;
  }

  .s1440\:h-5{
    height: 1.25rem;
  }

  .s1440\:h-6{
    height: 1.5rem;
  }

  .s1440\:h-8{
    height: 2rem;
  }

  .s1440\:h-10{
    height: 2.5rem;
  }

  .s1440\:h-12{
    height: 3rem;
  }

  .s1440\:h-14{
    height: 3.5rem;
  }

  .s1440\:h-16{
    height: 4rem;
  }

  .s1440\:h-20{
    height: 5rem;
  }

  .s1440\:h-24{
    height: 6rem;
  }

  .s1440\:h-28{
    height: 7rem;
  }

  .s1440\:h-32{
    height: 8rem;
  }

  .s1440\:h-40{
    height: 10rem;
  }

  .s1440\:h-48{
    height: 12rem;
  }

  .s1440\:h-56{
    height: 14rem;
  }

  .s1440\:h-64{
    height: 16rem;
  }

  .s1440\:h-auto{
    height: auto;
  }

  .s1440\:h-px{
    height: 1px;
  }

  .s1440\:h-full{
    height: 100%;
  }

  .s1440\:h-screen{
    height: 100vh;
  }

  .s1440\:hover\:h-0:hover{
    height: 0;
  }

  .s1440\:hover\:h-1:hover{
    height: 0.25rem;
  }

  .s1440\:hover\:h-2:hover{
    height: 0.5rem;
  }

  .s1440\:hover\:h-3:hover{
    height: 0.75rem;
  }

  .s1440\:hover\:h-4:hover{
    height: 1rem;
  }

  .s1440\:hover\:h-5:hover{
    height: 1.25rem;
  }

  .s1440\:hover\:h-6:hover{
    height: 1.5rem;
  }

  .s1440\:hover\:h-8:hover{
    height: 2rem;
  }

  .s1440\:hover\:h-10:hover{
    height: 2.5rem;
  }

  .s1440\:hover\:h-12:hover{
    height: 3rem;
  }

  .s1440\:hover\:h-14:hover{
    height: 3.5rem;
  }

  .s1440\:hover\:h-16:hover{
    height: 4rem;
  }

  .s1440\:hover\:h-20:hover{
    height: 5rem;
  }

  .s1440\:hover\:h-24:hover{
    height: 6rem;
  }

  .s1440\:hover\:h-28:hover{
    height: 7rem;
  }

  .s1440\:hover\:h-32:hover{
    height: 8rem;
  }

  .s1440\:hover\:h-40:hover{
    height: 10rem;
  }

  .s1440\:hover\:h-48:hover{
    height: 12rem;
  }

  .s1440\:hover\:h-56:hover{
    height: 14rem;
  }

  .s1440\:hover\:h-64:hover{
    height: 16rem;
  }

  .s1440\:hover\:h-auto:hover{
    height: auto;
  }

  .s1440\:hover\:h-px:hover{
    height: 1px;
  }

  .s1440\:hover\:h-full:hover{
    height: 100%;
  }

  .s1440\:hover\:h-screen:hover{
    height: 100vh;
  }

  .s1440\:focus\:h-0:focus{
    height: 0;
  }

  .s1440\:focus\:h-1:focus{
    height: 0.25rem;
  }

  .s1440\:focus\:h-2:focus{
    height: 0.5rem;
  }

  .s1440\:focus\:h-3:focus{
    height: 0.75rem;
  }

  .s1440\:focus\:h-4:focus{
    height: 1rem;
  }

  .s1440\:focus\:h-5:focus{
    height: 1.25rem;
  }

  .s1440\:focus\:h-6:focus{
    height: 1.5rem;
  }

  .s1440\:focus\:h-8:focus{
    height: 2rem;
  }

  .s1440\:focus\:h-10:focus{
    height: 2.5rem;
  }

  .s1440\:focus\:h-12:focus{
    height: 3rem;
  }

  .s1440\:focus\:h-14:focus{
    height: 3.5rem;
  }

  .s1440\:focus\:h-16:focus{
    height: 4rem;
  }

  .s1440\:focus\:h-20:focus{
    height: 5rem;
  }

  .s1440\:focus\:h-24:focus{
    height: 6rem;
  }

  .s1440\:focus\:h-28:focus{
    height: 7rem;
  }

  .s1440\:focus\:h-32:focus{
    height: 8rem;
  }

  .s1440\:focus\:h-40:focus{
    height: 10rem;
  }

  .s1440\:focus\:h-48:focus{
    height: 12rem;
  }

  .s1440\:focus\:h-56:focus{
    height: 14rem;
  }

  .s1440\:focus\:h-64:focus{
    height: 16rem;
  }

  .s1440\:focus\:h-auto:focus{
    height: auto;
  }

  .s1440\:focus\:h-px:focus{
    height: 1px;
  }

  .s1440\:focus\:h-full:focus{
    height: 100%;
  }

  .s1440\:focus\:h-screen:focus{
    height: 100vh;
  }

  .s1440\:active\:h-0:active{
    height: 0;
  }

  .s1440\:active\:h-1:active{
    height: 0.25rem;
  }

  .s1440\:active\:h-2:active{
    height: 0.5rem;
  }

  .s1440\:active\:h-3:active{
    height: 0.75rem;
  }

  .s1440\:active\:h-4:active{
    height: 1rem;
  }

  .s1440\:active\:h-5:active{
    height: 1.25rem;
  }

  .s1440\:active\:h-6:active{
    height: 1.5rem;
  }

  .s1440\:active\:h-8:active{
    height: 2rem;
  }

  .s1440\:active\:h-10:active{
    height: 2.5rem;
  }

  .s1440\:active\:h-12:active{
    height: 3rem;
  }

  .s1440\:active\:h-14:active{
    height: 3.5rem;
  }

  .s1440\:active\:h-16:active{
    height: 4rem;
  }

  .s1440\:active\:h-20:active{
    height: 5rem;
  }

  .s1440\:active\:h-24:active{
    height: 6rem;
  }

  .s1440\:active\:h-28:active{
    height: 7rem;
  }

  .s1440\:active\:h-32:active{
    height: 8rem;
  }

  .s1440\:active\:h-40:active{
    height: 10rem;
  }

  .s1440\:active\:h-48:active{
    height: 12rem;
  }

  .s1440\:active\:h-56:active{
    height: 14rem;
  }

  .s1440\:active\:h-64:active{
    height: 16rem;
  }

  .s1440\:active\:h-auto:active{
    height: auto;
  }

  .s1440\:active\:h-px:active{
    height: 1px;
  }

  .s1440\:active\:h-full:active{
    height: 100%;
  }

  .s1440\:active\:h-screen:active{
    height: 100vh;
  }

  .s1440\:first\:h-0:first-child{
    height: 0;
  }

  .s1440\:first\:h-1:first-child{
    height: 0.25rem;
  }

  .s1440\:first\:h-2:first-child{
    height: 0.5rem;
  }

  .s1440\:first\:h-3:first-child{
    height: 0.75rem;
  }

  .s1440\:first\:h-4:first-child{
    height: 1rem;
  }

  .s1440\:first\:h-5:first-child{
    height: 1.25rem;
  }

  .s1440\:first\:h-6:first-child{
    height: 1.5rem;
  }

  .s1440\:first\:h-8:first-child{
    height: 2rem;
  }

  .s1440\:first\:h-10:first-child{
    height: 2.5rem;
  }

  .s1440\:first\:h-12:first-child{
    height: 3rem;
  }

  .s1440\:first\:h-14:first-child{
    height: 3.5rem;
  }

  .s1440\:first\:h-16:first-child{
    height: 4rem;
  }

  .s1440\:first\:h-20:first-child{
    height: 5rem;
  }

  .s1440\:first\:h-24:first-child{
    height: 6rem;
  }

  .s1440\:first\:h-28:first-child{
    height: 7rem;
  }

  .s1440\:first\:h-32:first-child{
    height: 8rem;
  }

  .s1440\:first\:h-40:first-child{
    height: 10rem;
  }

  .s1440\:first\:h-48:first-child{
    height: 12rem;
  }

  .s1440\:first\:h-56:first-child{
    height: 14rem;
  }

  .s1440\:first\:h-64:first-child{
    height: 16rem;
  }

  .s1440\:first\:h-auto:first-child{
    height: auto;
  }

  .s1440\:first\:h-px:first-child{
    height: 1px;
  }

  .s1440\:first\:h-full:first-child{
    height: 100%;
  }

  .s1440\:first\:h-screen:first-child{
    height: 100vh;
  }

  .s1440\:last\:h-0:last-child{
    height: 0;
  }

  .s1440\:last\:h-1:last-child{
    height: 0.25rem;
  }

  .s1440\:last\:h-2:last-child{
    height: 0.5rem;
  }

  .s1440\:last\:h-3:last-child{
    height: 0.75rem;
  }

  .s1440\:last\:h-4:last-child{
    height: 1rem;
  }

  .s1440\:last\:h-5:last-child{
    height: 1.25rem;
  }

  .s1440\:last\:h-6:last-child{
    height: 1.5rem;
  }

  .s1440\:last\:h-8:last-child{
    height: 2rem;
  }

  .s1440\:last\:h-10:last-child{
    height: 2.5rem;
  }

  .s1440\:last\:h-12:last-child{
    height: 3rem;
  }

  .s1440\:last\:h-14:last-child{
    height: 3.5rem;
  }

  .s1440\:last\:h-16:last-child{
    height: 4rem;
  }

  .s1440\:last\:h-20:last-child{
    height: 5rem;
  }

  .s1440\:last\:h-24:last-child{
    height: 6rem;
  }

  .s1440\:last\:h-28:last-child{
    height: 7rem;
  }

  .s1440\:last\:h-32:last-child{
    height: 8rem;
  }

  .s1440\:last\:h-40:last-child{
    height: 10rem;
  }

  .s1440\:last\:h-48:last-child{
    height: 12rem;
  }

  .s1440\:last\:h-56:last-child{
    height: 14rem;
  }

  .s1440\:last\:h-64:last-child{
    height: 16rem;
  }

  .s1440\:last\:h-auto:last-child{
    height: auto;
  }

  .s1440\:last\:h-px:last-child{
    height: 1px;
  }

  .s1440\:last\:h-full:last-child{
    height: 100%;
  }

  .s1440\:last\:h-screen:last-child{
    height: 100vh;
  }

  .s1440\:text-xxxxxs{
    font-size: 0.3125rem;
  }

  .s1440\:text-xxxxs{
    font-size: 0.375rem;
  }

  .s1440\:text-xxxs{
    font-size: 0.5rem;
  }

  .s1440\:text-xxs{
    font-size: 0.625rem;
  }

  .s1440\:text-xs{
    font-size: 0.75rem;
  }

  .s1440\:text-sm{
    font-size: 0.875rem;
  }

  .s1440\:text-base{
    font-size: 1rem;
  }

  .s1440\:text-lg{
    font-size: 1.125rem;
  }

  .s1440\:text-xl{
    font-size: 1.5rem;
  }

  .s1440\:text-2xl{
    font-size: 2rem;
  }

  .s1440\:text-3xl{
    font-size: 3rem;
  }

  .s1440\:text-4xl{
    font-size: 3.75rem;
  }

  .s1440\:text-5xl{
    font-size: 6rem;
  }

  .s1440\:hover\:text-xxxxxs:hover{
    font-size: 0.3125rem;
  }

  .s1440\:hover\:text-xxxxs:hover{
    font-size: 0.375rem;
  }

  .s1440\:hover\:text-xxxs:hover{
    font-size: 0.5rem;
  }

  .s1440\:hover\:text-xxs:hover{
    font-size: 0.625rem;
  }

  .s1440\:hover\:text-xs:hover{
    font-size: 0.75rem;
  }

  .s1440\:hover\:text-sm:hover{
    font-size: 0.875rem;
  }

  .s1440\:hover\:text-base:hover{
    font-size: 1rem;
  }

  .s1440\:hover\:text-lg:hover{
    font-size: 1.125rem;
  }

  .s1440\:hover\:text-xl:hover{
    font-size: 1.5rem;
  }

  .s1440\:hover\:text-2xl:hover{
    font-size: 2rem;
  }

  .s1440\:hover\:text-3xl:hover{
    font-size: 3rem;
  }

  .s1440\:hover\:text-4xl:hover{
    font-size: 3.75rem;
  }

  .s1440\:hover\:text-5xl:hover{
    font-size: 6rem;
  }

  .s1440\:focus\:text-xxxxxs:focus{
    font-size: 0.3125rem;
  }

  .s1440\:focus\:text-xxxxs:focus{
    font-size: 0.375rem;
  }

  .s1440\:focus\:text-xxxs:focus{
    font-size: 0.5rem;
  }

  .s1440\:focus\:text-xxs:focus{
    font-size: 0.625rem;
  }

  .s1440\:focus\:text-xs:focus{
    font-size: 0.75rem;
  }

  .s1440\:focus\:text-sm:focus{
    font-size: 0.875rem;
  }

  .s1440\:focus\:text-base:focus{
    font-size: 1rem;
  }

  .s1440\:focus\:text-lg:focus{
    font-size: 1.125rem;
  }

  .s1440\:focus\:text-xl:focus{
    font-size: 1.5rem;
  }

  .s1440\:focus\:text-2xl:focus{
    font-size: 2rem;
  }

  .s1440\:focus\:text-3xl:focus{
    font-size: 3rem;
  }

  .s1440\:focus\:text-4xl:focus{
    font-size: 3.75rem;
  }

  .s1440\:focus\:text-5xl:focus{
    font-size: 6rem;
  }

  .s1440\:active\:text-xxxxxs:active{
    font-size: 0.3125rem;
  }

  .s1440\:active\:text-xxxxs:active{
    font-size: 0.375rem;
  }

  .s1440\:active\:text-xxxs:active{
    font-size: 0.5rem;
  }

  .s1440\:active\:text-xxs:active{
    font-size: 0.625rem;
  }

  .s1440\:active\:text-xs:active{
    font-size: 0.75rem;
  }

  .s1440\:active\:text-sm:active{
    font-size: 0.875rem;
  }

  .s1440\:active\:text-base:active{
    font-size: 1rem;
  }

  .s1440\:active\:text-lg:active{
    font-size: 1.125rem;
  }

  .s1440\:active\:text-xl:active{
    font-size: 1.5rem;
  }

  .s1440\:active\:text-2xl:active{
    font-size: 2rem;
  }

  .s1440\:active\:text-3xl:active{
    font-size: 3rem;
  }

  .s1440\:active\:text-4xl:active{
    font-size: 3.75rem;
  }

  .s1440\:active\:text-5xl:active{
    font-size: 6rem;
  }

  .s1440\:first\:text-xxxxxs:first-child{
    font-size: 0.3125rem;
  }

  .s1440\:first\:text-xxxxs:first-child{
    font-size: 0.375rem;
  }

  .s1440\:first\:text-xxxs:first-child{
    font-size: 0.5rem;
  }

  .s1440\:first\:text-xxs:first-child{
    font-size: 0.625rem;
  }

  .s1440\:first\:text-xs:first-child{
    font-size: 0.75rem;
  }

  .s1440\:first\:text-sm:first-child{
    font-size: 0.875rem;
  }

  .s1440\:first\:text-base:first-child{
    font-size: 1rem;
  }

  .s1440\:first\:text-lg:first-child{
    font-size: 1.125rem;
  }

  .s1440\:first\:text-xl:first-child{
    font-size: 1.5rem;
  }

  .s1440\:first\:text-2xl:first-child{
    font-size: 2rem;
  }

  .s1440\:first\:text-3xl:first-child{
    font-size: 3rem;
  }

  .s1440\:first\:text-4xl:first-child{
    font-size: 3.75rem;
  }

  .s1440\:first\:text-5xl:first-child{
    font-size: 6rem;
  }

  .s1440\:last\:text-xxxxxs:last-child{
    font-size: 0.3125rem;
  }

  .s1440\:last\:text-xxxxs:last-child{
    font-size: 0.375rem;
  }

  .s1440\:last\:text-xxxs:last-child{
    font-size: 0.5rem;
  }

  .s1440\:last\:text-xxs:last-child{
    font-size: 0.625rem;
  }

  .s1440\:last\:text-xs:last-child{
    font-size: 0.75rem;
  }

  .s1440\:last\:text-sm:last-child{
    font-size: 0.875rem;
  }

  .s1440\:last\:text-base:last-child{
    font-size: 1rem;
  }

  .s1440\:last\:text-lg:last-child{
    font-size: 1.125rem;
  }

  .s1440\:last\:text-xl:last-child{
    font-size: 1.5rem;
  }

  .s1440\:last\:text-2xl:last-child{
    font-size: 2rem;
  }

  .s1440\:last\:text-3xl:last-child{
    font-size: 3rem;
  }

  .s1440\:last\:text-4xl:last-child{
    font-size: 3.75rem;
  }

  .s1440\:last\:text-5xl:last-child{
    font-size: 6rem;
  }

  .s1440\:leading-3{
    line-height: .75rem;
  }

  .s1440\:leading-4{
    line-height: 1rem;
  }

  .s1440\:leading-5{
    line-height: 1.25rem;
  }

  .s1440\:leading-6{
    line-height: 1.5rem;
  }

  .s1440\:leading-7{
    line-height: 1.75rem;
  }

  .s1440\:leading-8{
    line-height: 2rem;
  }

  .s1440\:leading-9{
    line-height: 2.25rem;
  }

  .s1440\:leading-10{
    line-height: 2.5rem;
  }

  .s1440\:leading-none{
    line-height: 1;
  }

  .s1440\:leading-tight{
    line-height: 1;
  }

  .s1440\:leading-snug{
    line-height: 1.375;
  }

  .s1440\:leading-normal{
    line-height: 1.5;
  }

  .s1440\:leading-relaxed{
    line-height: 1.625;
  }

  .s1440\:leading-loose{
    line-height: 2;
  }

  .s1440\:leading-error{
    line-height: 1.333;
  }

  .s1440\:hover\:leading-3:hover{
    line-height: .75rem;
  }

  .s1440\:hover\:leading-4:hover{
    line-height: 1rem;
  }

  .s1440\:hover\:leading-5:hover{
    line-height: 1.25rem;
  }

  .s1440\:hover\:leading-6:hover{
    line-height: 1.5rem;
  }

  .s1440\:hover\:leading-7:hover{
    line-height: 1.75rem;
  }

  .s1440\:hover\:leading-8:hover{
    line-height: 2rem;
  }

  .s1440\:hover\:leading-9:hover{
    line-height: 2.25rem;
  }

  .s1440\:hover\:leading-10:hover{
    line-height: 2.5rem;
  }

  .s1440\:hover\:leading-none:hover{
    line-height: 1;
  }

  .s1440\:hover\:leading-tight:hover{
    line-height: 1;
  }

  .s1440\:hover\:leading-snug:hover{
    line-height: 1.375;
  }

  .s1440\:hover\:leading-normal:hover{
    line-height: 1.5;
  }

  .s1440\:hover\:leading-relaxed:hover{
    line-height: 1.625;
  }

  .s1440\:hover\:leading-loose:hover{
    line-height: 2;
  }

  .s1440\:hover\:leading-error:hover{
    line-height: 1.333;
  }

  .s1440\:focus\:leading-3:focus{
    line-height: .75rem;
  }

  .s1440\:focus\:leading-4:focus{
    line-height: 1rem;
  }

  .s1440\:focus\:leading-5:focus{
    line-height: 1.25rem;
  }

  .s1440\:focus\:leading-6:focus{
    line-height: 1.5rem;
  }

  .s1440\:focus\:leading-7:focus{
    line-height: 1.75rem;
  }

  .s1440\:focus\:leading-8:focus{
    line-height: 2rem;
  }

  .s1440\:focus\:leading-9:focus{
    line-height: 2.25rem;
  }

  .s1440\:focus\:leading-10:focus{
    line-height: 2.5rem;
  }

  .s1440\:focus\:leading-none:focus{
    line-height: 1;
  }

  .s1440\:focus\:leading-tight:focus{
    line-height: 1;
  }

  .s1440\:focus\:leading-snug:focus{
    line-height: 1.375;
  }

  .s1440\:focus\:leading-normal:focus{
    line-height: 1.5;
  }

  .s1440\:focus\:leading-relaxed:focus{
    line-height: 1.625;
  }

  .s1440\:focus\:leading-loose:focus{
    line-height: 2;
  }

  .s1440\:focus\:leading-error:focus{
    line-height: 1.333;
  }

  .s1440\:active\:leading-3:active{
    line-height: .75rem;
  }

  .s1440\:active\:leading-4:active{
    line-height: 1rem;
  }

  .s1440\:active\:leading-5:active{
    line-height: 1.25rem;
  }

  .s1440\:active\:leading-6:active{
    line-height: 1.5rem;
  }

  .s1440\:active\:leading-7:active{
    line-height: 1.75rem;
  }

  .s1440\:active\:leading-8:active{
    line-height: 2rem;
  }

  .s1440\:active\:leading-9:active{
    line-height: 2.25rem;
  }

  .s1440\:active\:leading-10:active{
    line-height: 2.5rem;
  }

  .s1440\:active\:leading-none:active{
    line-height: 1;
  }

  .s1440\:active\:leading-tight:active{
    line-height: 1;
  }

  .s1440\:active\:leading-snug:active{
    line-height: 1.375;
  }

  .s1440\:active\:leading-normal:active{
    line-height: 1.5;
  }

  .s1440\:active\:leading-relaxed:active{
    line-height: 1.625;
  }

  .s1440\:active\:leading-loose:active{
    line-height: 2;
  }

  .s1440\:active\:leading-error:active{
    line-height: 1.333;
  }

  .s1440\:first\:leading-3:first-child{
    line-height: .75rem;
  }

  .s1440\:first\:leading-4:first-child{
    line-height: 1rem;
  }

  .s1440\:first\:leading-5:first-child{
    line-height: 1.25rem;
  }

  .s1440\:first\:leading-6:first-child{
    line-height: 1.5rem;
  }

  .s1440\:first\:leading-7:first-child{
    line-height: 1.75rem;
  }

  .s1440\:first\:leading-8:first-child{
    line-height: 2rem;
  }

  .s1440\:first\:leading-9:first-child{
    line-height: 2.25rem;
  }

  .s1440\:first\:leading-10:first-child{
    line-height: 2.5rem;
  }

  .s1440\:first\:leading-none:first-child{
    line-height: 1;
  }

  .s1440\:first\:leading-tight:first-child{
    line-height: 1;
  }

  .s1440\:first\:leading-snug:first-child{
    line-height: 1.375;
  }

  .s1440\:first\:leading-normal:first-child{
    line-height: 1.5;
  }

  .s1440\:first\:leading-relaxed:first-child{
    line-height: 1.625;
  }

  .s1440\:first\:leading-loose:first-child{
    line-height: 2;
  }

  .s1440\:first\:leading-error:first-child{
    line-height: 1.333;
  }

  .s1440\:last\:leading-3:last-child{
    line-height: .75rem;
  }

  .s1440\:last\:leading-4:last-child{
    line-height: 1rem;
  }

  .s1440\:last\:leading-5:last-child{
    line-height: 1.25rem;
  }

  .s1440\:last\:leading-6:last-child{
    line-height: 1.5rem;
  }

  .s1440\:last\:leading-7:last-child{
    line-height: 1.75rem;
  }

  .s1440\:last\:leading-8:last-child{
    line-height: 2rem;
  }

  .s1440\:last\:leading-9:last-child{
    line-height: 2.25rem;
  }

  .s1440\:last\:leading-10:last-child{
    line-height: 2.5rem;
  }

  .s1440\:last\:leading-none:last-child{
    line-height: 1;
  }

  .s1440\:last\:leading-tight:last-child{
    line-height: 1;
  }

  .s1440\:last\:leading-snug:last-child{
    line-height: 1.375;
  }

  .s1440\:last\:leading-normal:last-child{
    line-height: 1.5;
  }

  .s1440\:last\:leading-relaxed:last-child{
    line-height: 1.625;
  }

  .s1440\:last\:leading-loose:last-child{
    line-height: 2;
  }

  .s1440\:last\:leading-error:last-child{
    line-height: 1.333;
  }

  .s1440\:list-inside{
    list-style-position: inside;
  }

  .s1440\:list-outside{
    list-style-position: outside;
  }

  .s1440\:hover\:list-inside:hover{
    list-style-position: inside;
  }

  .s1440\:hover\:list-outside:hover{
    list-style-position: outside;
  }

  .s1440\:focus\:list-inside:focus{
    list-style-position: inside;
  }

  .s1440\:focus\:list-outside:focus{
    list-style-position: outside;
  }

  .s1440\:active\:list-inside:active{
    list-style-position: inside;
  }

  .s1440\:active\:list-outside:active{
    list-style-position: outside;
  }

  .s1440\:first\:list-inside:first-child{
    list-style-position: inside;
  }

  .s1440\:first\:list-outside:first-child{
    list-style-position: outside;
  }

  .s1440\:last\:list-inside:last-child{
    list-style-position: inside;
  }

  .s1440\:last\:list-outside:last-child{
    list-style-position: outside;
  }

  .s1440\:list-none{
    list-style-type: none;
  }

  .s1440\:list-disc{
    list-style-type: disc;
  }

  .s1440\:list-decimal{
    list-style-type: decimal;
  }

  .s1440\:hover\:list-none:hover{
    list-style-type: none;
  }

  .s1440\:hover\:list-disc:hover{
    list-style-type: disc;
  }

  .s1440\:hover\:list-decimal:hover{
    list-style-type: decimal;
  }

  .s1440\:focus\:list-none:focus{
    list-style-type: none;
  }

  .s1440\:focus\:list-disc:focus{
    list-style-type: disc;
  }

  .s1440\:focus\:list-decimal:focus{
    list-style-type: decimal;
  }

  .s1440\:active\:list-none:active{
    list-style-type: none;
  }

  .s1440\:active\:list-disc:active{
    list-style-type: disc;
  }

  .s1440\:active\:list-decimal:active{
    list-style-type: decimal;
  }

  .s1440\:first\:list-none:first-child{
    list-style-type: none;
  }

  .s1440\:first\:list-disc:first-child{
    list-style-type: disc;
  }

  .s1440\:first\:list-decimal:first-child{
    list-style-type: decimal;
  }

  .s1440\:last\:list-none:last-child{
    list-style-type: none;
  }

  .s1440\:last\:list-disc:last-child{
    list-style-type: disc;
  }

  .s1440\:last\:list-decimal:last-child{
    list-style-type: decimal;
  }

  .s1440\:m-0{
    margin: 0;
  }

  .s1440\:m-1{
    margin: 0.25rem;
  }

  .s1440\:m-2{
    margin: 0.5rem;
  }

  .s1440\:m-3{
    margin: 0.75rem;
  }

  .s1440\:m-4{
    margin: 1rem;
  }

  .s1440\:m-5{
    margin: 1.25rem;
  }

  .s1440\:m-6{
    margin: 1.5rem;
  }

  .s1440\:m-7{
    margin: 1.75rem;
  }

  .s1440\:m-8{
    margin: 2rem;
  }

  .s1440\:m-10{
    margin: 2.5rem;
  }

  .s1440\:m-12{
    margin: 3rem;
  }

  .s1440\:m-14{
    margin: 3.5rem;
  }

  .s1440\:m-16{
    margin: 4rem;
  }

  .s1440\:m-18{
    margin: 4.5rem;
  }

  .s1440\:m-20{
    margin: 5rem;
  }

  .s1440\:m-24{
    margin: 6rem;
  }

  .s1440\:m-32{
    margin: 8rem;
  }

  .s1440\:m-40{
    margin: 10rem;
  }

  .s1440\:m-48{
    margin: 12rem;
  }

  .s1440\:m-56{
    margin: 14rem;
  }

  .s1440\:m-64{
    margin: 16rem;
  }

  .s1440\:m-auto{
    margin: auto;
  }

  .s1440\:m-px{
    margin: 1px;
  }

  .s1440\:-m-1{
    margin: -0.25rem;
  }

  .s1440\:-m-2{
    margin: -0.5rem;
  }

  .s1440\:-m-3{
    margin: -0.75rem;
  }

  .s1440\:-m-4{
    margin: -1rem;
  }

  .s1440\:-m-5{
    margin: -1.25rem;
  }

  .s1440\:-m-6{
    margin: -1.5rem;
  }

  .s1440\:-m-8{
    margin: -2rem;
  }

  .s1440\:-m-10{
    margin: -2.5rem;
  }

  .s1440\:-m-12{
    margin: -3rem;
  }

  .s1440\:-m-14{
    margin: -3.5rem;
  }

  .s1440\:-m-16{
    margin: -4rem;
  }

  .s1440\:-m-20{
    margin: -5rem;
  }

  .s1440\:-m-24{
    margin: -6rem;
  }

  .s1440\:-m-32{
    margin: -8rem;
  }

  .s1440\:-m-40{
    margin: -10rem;
  }

  .s1440\:-m-48{
    margin: -12rem;
  }

  .s1440\:-m-56{
    margin: -14rem;
  }

  .s1440\:-m-64{
    margin: -16rem;
  }

  .s1440\:-m-px{
    margin: -1px;
  }

  .s1440\:m-bin{
    margin: -0.313rem;
  }

  .s1440\:-m-0\.25{
    margin: -0.0625rem;
  }

  .s1440\:m-0\.25{
    margin: 0.0625rem;
  }

  .s1440\:m-3\.125{
    margin: 3.125rem;
  }

  .s1440\:m-modal{
    margin: 6.25rem;
  }

  .s1440\:m-sidebar{
    margin: 25rem;
  }

  .s1440\:my-0{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1440\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }

  .s1440\:my-1{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1440\:mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1440\:my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1440\:mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1440\:my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1440\:mx-3{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1440\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1440\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1440\:my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1440\:mx-5{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1440\:my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1440\:mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1440\:my-7{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1440\:mx-7{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1440\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1440\:mx-8{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1440\:my-10{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1440\:mx-10{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1440\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1440\:mx-12{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1440\:my-14{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1440\:mx-14{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1440\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1440\:mx-16{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1440\:my-18{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1440\:mx-18{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1440\:my-20{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1440\:mx-20{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1440\:my-24{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1440\:mx-24{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1440\:my-32{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1440\:mx-32{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1440\:my-40{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1440\:mx-40{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1440\:my-48{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1440\:mx-48{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1440\:my-56{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1440\:mx-56{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1440\:my-64{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1440\:mx-64{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1440\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1440\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .s1440\:my-px{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1440\:mx-px{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1440\:-my-1{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1440\:-mx-1{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1440\:-my-2{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1440\:-mx-2{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1440\:-my-3{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1440\:-mx-3{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1440\:-my-4{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1440\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1440\:-my-5{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1440\:-mx-5{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1440\:-my-6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1440\:-mx-6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1440\:-my-8{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1440\:-mx-8{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1440\:-my-10{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1440\:-mx-10{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1440\:-my-12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1440\:-mx-12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1440\:-my-14{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1440\:-mx-14{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1440\:-my-16{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1440\:-mx-16{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1440\:-my-20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1440\:-mx-20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1440\:-my-24{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1440\:-mx-24{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1440\:-my-32{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1440\:-mx-32{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1440\:-my-40{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1440\:-mx-40{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1440\:-my-48{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1440\:-mx-48{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1440\:-my-56{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1440\:-mx-56{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1440\:-my-64{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1440\:-mx-64{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1440\:-my-px{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1440\:-mx-px{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1440\:my-bin{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1440\:mx-bin{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1440\:-my-0\.25{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1440\:-mx-0\.25{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1440\:my-0\.25{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1440\:mx-0\.25{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1440\:my-3\.125{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1440\:mx-3\.125{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1440\:my-modal{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1440\:mx-modal{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1440\:my-sidebar{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1440\:mx-sidebar{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1440\:mt-0{
    margin-top: 0;
  }

  .s1440\:mr-0{
    margin-right: 0;
  }

  .s1440\:mb-0{
    margin-bottom: 0;
  }

  .s1440\:ml-0{
    margin-left: 0;
  }

  .s1440\:mt-1{
    margin-top: 0.25rem;
  }

  .s1440\:mr-1{
    margin-right: 0.25rem;
  }

  .s1440\:mb-1{
    margin-bottom: 0.25rem;
  }

  .s1440\:ml-1{
    margin-left: 0.25rem;
  }

  .s1440\:mt-2{
    margin-top: 0.5rem;
  }

  .s1440\:mr-2{
    margin-right: 0.5rem;
  }

  .s1440\:mb-2{
    margin-bottom: 0.5rem;
  }

  .s1440\:ml-2{
    margin-left: 0.5rem;
  }

  .s1440\:mt-3{
    margin-top: 0.75rem;
  }

  .s1440\:mr-3{
    margin-right: 0.75rem;
  }

  .s1440\:mb-3{
    margin-bottom: 0.75rem;
  }

  .s1440\:ml-3{
    margin-left: 0.75rem;
  }

  .s1440\:mt-4{
    margin-top: 1rem;
  }

  .s1440\:mr-4{
    margin-right: 1rem;
  }

  .s1440\:mb-4{
    margin-bottom: 1rem;
  }

  .s1440\:ml-4{
    margin-left: 1rem;
  }

  .s1440\:mt-5{
    margin-top: 1.25rem;
  }

  .s1440\:mr-5{
    margin-right: 1.25rem;
  }

  .s1440\:mb-5{
    margin-bottom: 1.25rem;
  }

  .s1440\:ml-5{
    margin-left: 1.25rem;
  }

  .s1440\:mt-6{
    margin-top: 1.5rem;
  }

  .s1440\:mr-6{
    margin-right: 1.5rem;
  }

  .s1440\:mb-6{
    margin-bottom: 1.5rem;
  }

  .s1440\:ml-6{
    margin-left: 1.5rem;
  }

  .s1440\:mt-7{
    margin-top: 1.75rem;
  }

  .s1440\:mr-7{
    margin-right: 1.75rem;
  }

  .s1440\:mb-7{
    margin-bottom: 1.75rem;
  }

  .s1440\:ml-7{
    margin-left: 1.75rem;
  }

  .s1440\:mt-8{
    margin-top: 2rem;
  }

  .s1440\:mr-8{
    margin-right: 2rem;
  }

  .s1440\:mb-8{
    margin-bottom: 2rem;
  }

  .s1440\:ml-8{
    margin-left: 2rem;
  }

  .s1440\:mt-10{
    margin-top: 2.5rem;
  }

  .s1440\:mr-10{
    margin-right: 2.5rem;
  }

  .s1440\:mb-10{
    margin-bottom: 2.5rem;
  }

  .s1440\:ml-10{
    margin-left: 2.5rem;
  }

  .s1440\:mt-12{
    margin-top: 3rem;
  }

  .s1440\:mr-12{
    margin-right: 3rem;
  }

  .s1440\:mb-12{
    margin-bottom: 3rem;
  }

  .s1440\:ml-12{
    margin-left: 3rem;
  }

  .s1440\:mt-14{
    margin-top: 3.5rem;
  }

  .s1440\:mr-14{
    margin-right: 3.5rem;
  }

  .s1440\:mb-14{
    margin-bottom: 3.5rem;
  }

  .s1440\:ml-14{
    margin-left: 3.5rem;
  }

  .s1440\:mt-16{
    margin-top: 4rem;
  }

  .s1440\:mr-16{
    margin-right: 4rem;
  }

  .s1440\:mb-16{
    margin-bottom: 4rem;
  }

  .s1440\:ml-16{
    margin-left: 4rem;
  }

  .s1440\:mt-18{
    margin-top: 4.5rem;
  }

  .s1440\:mr-18{
    margin-right: 4.5rem;
  }

  .s1440\:mb-18{
    margin-bottom: 4.5rem;
  }

  .s1440\:ml-18{
    margin-left: 4.5rem;
  }

  .s1440\:mt-20{
    margin-top: 5rem;
  }

  .s1440\:mr-20{
    margin-right: 5rem;
  }

  .s1440\:mb-20{
    margin-bottom: 5rem;
  }

  .s1440\:ml-20{
    margin-left: 5rem;
  }

  .s1440\:mt-24{
    margin-top: 6rem;
  }

  .s1440\:mr-24{
    margin-right: 6rem;
  }

  .s1440\:mb-24{
    margin-bottom: 6rem;
  }

  .s1440\:ml-24{
    margin-left: 6rem;
  }

  .s1440\:mt-32{
    margin-top: 8rem;
  }

  .s1440\:mr-32{
    margin-right: 8rem;
  }

  .s1440\:mb-32{
    margin-bottom: 8rem;
  }

  .s1440\:ml-32{
    margin-left: 8rem;
  }

  .s1440\:mt-40{
    margin-top: 10rem;
  }

  .s1440\:mr-40{
    margin-right: 10rem;
  }

  .s1440\:mb-40{
    margin-bottom: 10rem;
  }

  .s1440\:ml-40{
    margin-left: 10rem;
  }

  .s1440\:mt-48{
    margin-top: 12rem;
  }

  .s1440\:mr-48{
    margin-right: 12rem;
  }

  .s1440\:mb-48{
    margin-bottom: 12rem;
  }

  .s1440\:ml-48{
    margin-left: 12rem;
  }

  .s1440\:mt-56{
    margin-top: 14rem;
  }

  .s1440\:mr-56{
    margin-right: 14rem;
  }

  .s1440\:mb-56{
    margin-bottom: 14rem;
  }

  .s1440\:ml-56{
    margin-left: 14rem;
  }

  .s1440\:mt-64{
    margin-top: 16rem;
  }

  .s1440\:mr-64{
    margin-right: 16rem;
  }

  .s1440\:mb-64{
    margin-bottom: 16rem;
  }

  .s1440\:ml-64{
    margin-left: 16rem;
  }

  .s1440\:mt-auto{
    margin-top: auto;
  }

  .s1440\:mr-auto{
    margin-right: auto;
  }

  .s1440\:mb-auto{
    margin-bottom: auto;
  }

  .s1440\:ml-auto{
    margin-left: auto;
  }

  .s1440\:mt-px{
    margin-top: 1px;
  }

  .s1440\:mr-px{
    margin-right: 1px;
  }

  .s1440\:mb-px{
    margin-bottom: 1px;
  }

  .s1440\:ml-px{
    margin-left: 1px;
  }

  .s1440\:-mt-1{
    margin-top: -0.25rem;
  }

  .s1440\:-mr-1{
    margin-right: -0.25rem;
  }

  .s1440\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .s1440\:-ml-1{
    margin-left: -0.25rem;
  }

  .s1440\:-mt-2{
    margin-top: -0.5rem;
  }

  .s1440\:-mr-2{
    margin-right: -0.5rem;
  }

  .s1440\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .s1440\:-ml-2{
    margin-left: -0.5rem;
  }

  .s1440\:-mt-3{
    margin-top: -0.75rem;
  }

  .s1440\:-mr-3{
    margin-right: -0.75rem;
  }

  .s1440\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .s1440\:-ml-3{
    margin-left: -0.75rem;
  }

  .s1440\:-mt-4{
    margin-top: -1rem;
  }

  .s1440\:-mr-4{
    margin-right: -1rem;
  }

  .s1440\:-mb-4{
    margin-bottom: -1rem;
  }

  .s1440\:-ml-4{
    margin-left: -1rem;
  }

  .s1440\:-mt-5{
    margin-top: -1.25rem;
  }

  .s1440\:-mr-5{
    margin-right: -1.25rem;
  }

  .s1440\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .s1440\:-ml-5{
    margin-left: -1.25rem;
  }

  .s1440\:-mt-6{
    margin-top: -1.5rem;
  }

  .s1440\:-mr-6{
    margin-right: -1.5rem;
  }

  .s1440\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .s1440\:-ml-6{
    margin-left: -1.5rem;
  }

  .s1440\:-mt-8{
    margin-top: -2rem;
  }

  .s1440\:-mr-8{
    margin-right: -2rem;
  }

  .s1440\:-mb-8{
    margin-bottom: -2rem;
  }

  .s1440\:-ml-8{
    margin-left: -2rem;
  }

  .s1440\:-mt-10{
    margin-top: -2.5rem;
  }

  .s1440\:-mr-10{
    margin-right: -2.5rem;
  }

  .s1440\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .s1440\:-ml-10{
    margin-left: -2.5rem;
  }

  .s1440\:-mt-12{
    margin-top: -3rem;
  }

  .s1440\:-mr-12{
    margin-right: -3rem;
  }

  .s1440\:-mb-12{
    margin-bottom: -3rem;
  }

  .s1440\:-ml-12{
    margin-left: -3rem;
  }

  .s1440\:-mt-14{
    margin-top: -3.5rem;
  }

  .s1440\:-mr-14{
    margin-right: -3.5rem;
  }

  .s1440\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .s1440\:-ml-14{
    margin-left: -3.5rem;
  }

  .s1440\:-mt-16{
    margin-top: -4rem;
  }

  .s1440\:-mr-16{
    margin-right: -4rem;
  }

  .s1440\:-mb-16{
    margin-bottom: -4rem;
  }

  .s1440\:-ml-16{
    margin-left: -4rem;
  }

  .s1440\:-mt-20{
    margin-top: -5rem;
  }

  .s1440\:-mr-20{
    margin-right: -5rem;
  }

  .s1440\:-mb-20{
    margin-bottom: -5rem;
  }

  .s1440\:-ml-20{
    margin-left: -5rem;
  }

  .s1440\:-mt-24{
    margin-top: -6rem;
  }

  .s1440\:-mr-24{
    margin-right: -6rem;
  }

  .s1440\:-mb-24{
    margin-bottom: -6rem;
  }

  .s1440\:-ml-24{
    margin-left: -6rem;
  }

  .s1440\:-mt-32{
    margin-top: -8rem;
  }

  .s1440\:-mr-32{
    margin-right: -8rem;
  }

  .s1440\:-mb-32{
    margin-bottom: -8rem;
  }

  .s1440\:-ml-32{
    margin-left: -8rem;
  }

  .s1440\:-mt-40{
    margin-top: -10rem;
  }

  .s1440\:-mr-40{
    margin-right: -10rem;
  }

  .s1440\:-mb-40{
    margin-bottom: -10rem;
  }

  .s1440\:-ml-40{
    margin-left: -10rem;
  }

  .s1440\:-mt-48{
    margin-top: -12rem;
  }

  .s1440\:-mr-48{
    margin-right: -12rem;
  }

  .s1440\:-mb-48{
    margin-bottom: -12rem;
  }

  .s1440\:-ml-48{
    margin-left: -12rem;
  }

  .s1440\:-mt-56{
    margin-top: -14rem;
  }

  .s1440\:-mr-56{
    margin-right: -14rem;
  }

  .s1440\:-mb-56{
    margin-bottom: -14rem;
  }

  .s1440\:-ml-56{
    margin-left: -14rem;
  }

  .s1440\:-mt-64{
    margin-top: -16rem;
  }

  .s1440\:-mr-64{
    margin-right: -16rem;
  }

  .s1440\:-mb-64{
    margin-bottom: -16rem;
  }

  .s1440\:-ml-64{
    margin-left: -16rem;
  }

  .s1440\:-mt-px{
    margin-top: -1px;
  }

  .s1440\:-mr-px{
    margin-right: -1px;
  }

  .s1440\:-mb-px{
    margin-bottom: -1px;
  }

  .s1440\:-ml-px{
    margin-left: -1px;
  }

  .s1440\:mt-bin{
    margin-top: -0.313rem;
  }

  .s1440\:mr-bin{
    margin-right: -0.313rem;
  }

  .s1440\:mb-bin{
    margin-bottom: -0.313rem;
  }

  .s1440\:ml-bin{
    margin-left: -0.313rem;
  }

  .s1440\:-mt-0\.25{
    margin-top: -0.0625rem;
  }

  .s1440\:-mr-0\.25{
    margin-right: -0.0625rem;
  }

  .s1440\:-mb-0\.25{
    margin-bottom: -0.0625rem;
  }

  .s1440\:-ml-0\.25{
    margin-left: -0.0625rem;
  }

  .s1440\:mt-0\.25{
    margin-top: 0.0625rem;
  }

  .s1440\:mr-0\.25{
    margin-right: 0.0625rem;
  }

  .s1440\:mb-0\.25{
    margin-bottom: 0.0625rem;
  }

  .s1440\:ml-0\.25{
    margin-left: 0.0625rem;
  }

  .s1440\:mt-3\.125{
    margin-top: 3.125rem;
  }

  .s1440\:mr-3\.125{
    margin-right: 3.125rem;
  }

  .s1440\:mb-3\.125{
    margin-bottom: 3.125rem;
  }

  .s1440\:ml-3\.125{
    margin-left: 3.125rem;
  }

  .s1440\:mt-modal{
    margin-top: 6.25rem;
  }

  .s1440\:mr-modal{
    margin-right: 6.25rem;
  }

  .s1440\:mb-modal{
    margin-bottom: 6.25rem;
  }

  .s1440\:ml-modal{
    margin-left: 6.25rem;
  }

  .s1440\:mt-sidebar{
    margin-top: 25rem;
  }

  .s1440\:mr-sidebar{
    margin-right: 25rem;
  }

  .s1440\:mb-sidebar{
    margin-bottom: 25rem;
  }

  .s1440\:ml-sidebar{
    margin-left: 25rem;
  }

  .s1440\:hover\:m-0:hover{
    margin: 0;
  }

  .s1440\:hover\:m-1:hover{
    margin: 0.25rem;
  }

  .s1440\:hover\:m-2:hover{
    margin: 0.5rem;
  }

  .s1440\:hover\:m-3:hover{
    margin: 0.75rem;
  }

  .s1440\:hover\:m-4:hover{
    margin: 1rem;
  }

  .s1440\:hover\:m-5:hover{
    margin: 1.25rem;
  }

  .s1440\:hover\:m-6:hover{
    margin: 1.5rem;
  }

  .s1440\:hover\:m-7:hover{
    margin: 1.75rem;
  }

  .s1440\:hover\:m-8:hover{
    margin: 2rem;
  }

  .s1440\:hover\:m-10:hover{
    margin: 2.5rem;
  }

  .s1440\:hover\:m-12:hover{
    margin: 3rem;
  }

  .s1440\:hover\:m-14:hover{
    margin: 3.5rem;
  }

  .s1440\:hover\:m-16:hover{
    margin: 4rem;
  }

  .s1440\:hover\:m-18:hover{
    margin: 4.5rem;
  }

  .s1440\:hover\:m-20:hover{
    margin: 5rem;
  }

  .s1440\:hover\:m-24:hover{
    margin: 6rem;
  }

  .s1440\:hover\:m-32:hover{
    margin: 8rem;
  }

  .s1440\:hover\:m-40:hover{
    margin: 10rem;
  }

  .s1440\:hover\:m-48:hover{
    margin: 12rem;
  }

  .s1440\:hover\:m-56:hover{
    margin: 14rem;
  }

  .s1440\:hover\:m-64:hover{
    margin: 16rem;
  }

  .s1440\:hover\:m-auto:hover{
    margin: auto;
  }

  .s1440\:hover\:m-px:hover{
    margin: 1px;
  }

  .s1440\:hover\:-m-1:hover{
    margin: -0.25rem;
  }

  .s1440\:hover\:-m-2:hover{
    margin: -0.5rem;
  }

  .s1440\:hover\:-m-3:hover{
    margin: -0.75rem;
  }

  .s1440\:hover\:-m-4:hover{
    margin: -1rem;
  }

  .s1440\:hover\:-m-5:hover{
    margin: -1.25rem;
  }

  .s1440\:hover\:-m-6:hover{
    margin: -1.5rem;
  }

  .s1440\:hover\:-m-8:hover{
    margin: -2rem;
  }

  .s1440\:hover\:-m-10:hover{
    margin: -2.5rem;
  }

  .s1440\:hover\:-m-12:hover{
    margin: -3rem;
  }

  .s1440\:hover\:-m-14:hover{
    margin: -3.5rem;
  }

  .s1440\:hover\:-m-16:hover{
    margin: -4rem;
  }

  .s1440\:hover\:-m-20:hover{
    margin: -5rem;
  }

  .s1440\:hover\:-m-24:hover{
    margin: -6rem;
  }

  .s1440\:hover\:-m-32:hover{
    margin: -8rem;
  }

  .s1440\:hover\:-m-40:hover{
    margin: -10rem;
  }

  .s1440\:hover\:-m-48:hover{
    margin: -12rem;
  }

  .s1440\:hover\:-m-56:hover{
    margin: -14rem;
  }

  .s1440\:hover\:-m-64:hover{
    margin: -16rem;
  }

  .s1440\:hover\:-m-px:hover{
    margin: -1px;
  }

  .s1440\:hover\:m-bin:hover{
    margin: -0.313rem;
  }

  .s1440\:hover\:-m-0\.25:hover{
    margin: -0.0625rem;
  }

  .s1440\:hover\:m-0\.25:hover{
    margin: 0.0625rem;
  }

  .s1440\:hover\:m-3\.125:hover{
    margin: 3.125rem;
  }

  .s1440\:hover\:m-modal:hover{
    margin: 6.25rem;
  }

  .s1440\:hover\:m-sidebar:hover{
    margin: 25rem;
  }

  .s1440\:hover\:my-0:hover{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1440\:hover\:mx-0:hover{
    margin-left: 0;
    margin-right: 0;
  }

  .s1440\:hover\:my-1:hover{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1440\:hover\:mx-1:hover{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1440\:hover\:my-2:hover{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1440\:hover\:mx-2:hover{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1440\:hover\:my-3:hover{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1440\:hover\:mx-3:hover{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1440\:hover\:my-4:hover{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1440\:hover\:mx-4:hover{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1440\:hover\:my-5:hover{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1440\:hover\:mx-5:hover{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1440\:hover\:my-6:hover{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1440\:hover\:mx-6:hover{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1440\:hover\:my-7:hover{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1440\:hover\:mx-7:hover{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1440\:hover\:my-8:hover{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1440\:hover\:mx-8:hover{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1440\:hover\:my-10:hover{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1440\:hover\:mx-10:hover{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1440\:hover\:my-12:hover{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1440\:hover\:mx-12:hover{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1440\:hover\:my-14:hover{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1440\:hover\:mx-14:hover{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1440\:hover\:my-16:hover{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1440\:hover\:mx-16:hover{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1440\:hover\:my-18:hover{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1440\:hover\:mx-18:hover{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1440\:hover\:my-20:hover{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1440\:hover\:mx-20:hover{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1440\:hover\:my-24:hover{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1440\:hover\:mx-24:hover{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1440\:hover\:my-32:hover{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1440\:hover\:mx-32:hover{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1440\:hover\:my-40:hover{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1440\:hover\:mx-40:hover{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1440\:hover\:my-48:hover{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1440\:hover\:mx-48:hover{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1440\:hover\:my-56:hover{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1440\:hover\:mx-56:hover{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1440\:hover\:my-64:hover{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1440\:hover\:mx-64:hover{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1440\:hover\:my-auto:hover{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1440\:hover\:mx-auto:hover{
    margin-left: auto;
    margin-right: auto;
  }

  .s1440\:hover\:my-px:hover{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1440\:hover\:mx-px:hover{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1440\:hover\:-my-1:hover{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1440\:hover\:-mx-1:hover{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1440\:hover\:-my-2:hover{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1440\:hover\:-mx-2:hover{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1440\:hover\:-my-3:hover{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1440\:hover\:-mx-3:hover{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1440\:hover\:-my-4:hover{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1440\:hover\:-mx-4:hover{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1440\:hover\:-my-5:hover{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1440\:hover\:-mx-5:hover{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1440\:hover\:-my-6:hover{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1440\:hover\:-mx-6:hover{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1440\:hover\:-my-8:hover{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1440\:hover\:-mx-8:hover{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1440\:hover\:-my-10:hover{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1440\:hover\:-mx-10:hover{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1440\:hover\:-my-12:hover{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1440\:hover\:-mx-12:hover{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1440\:hover\:-my-14:hover{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1440\:hover\:-mx-14:hover{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1440\:hover\:-my-16:hover{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1440\:hover\:-mx-16:hover{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1440\:hover\:-my-20:hover{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1440\:hover\:-mx-20:hover{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1440\:hover\:-my-24:hover{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1440\:hover\:-mx-24:hover{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1440\:hover\:-my-32:hover{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1440\:hover\:-mx-32:hover{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1440\:hover\:-my-40:hover{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1440\:hover\:-mx-40:hover{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1440\:hover\:-my-48:hover{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1440\:hover\:-mx-48:hover{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1440\:hover\:-my-56:hover{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1440\:hover\:-mx-56:hover{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1440\:hover\:-my-64:hover{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1440\:hover\:-mx-64:hover{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1440\:hover\:-my-px:hover{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1440\:hover\:-mx-px:hover{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1440\:hover\:my-bin:hover{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1440\:hover\:mx-bin:hover{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1440\:hover\:-my-0\.25:hover{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1440\:hover\:-mx-0\.25:hover{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1440\:hover\:my-0\.25:hover{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1440\:hover\:mx-0\.25:hover{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1440\:hover\:my-3\.125:hover{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1440\:hover\:mx-3\.125:hover{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1440\:hover\:my-modal:hover{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1440\:hover\:mx-modal:hover{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1440\:hover\:my-sidebar:hover{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1440\:hover\:mx-sidebar:hover{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1440\:hover\:mt-0:hover{
    margin-top: 0;
  }

  .s1440\:hover\:mr-0:hover{
    margin-right: 0;
  }

  .s1440\:hover\:mb-0:hover{
    margin-bottom: 0;
  }

  .s1440\:hover\:ml-0:hover{
    margin-left: 0;
  }

  .s1440\:hover\:mt-1:hover{
    margin-top: 0.25rem;
  }

  .s1440\:hover\:mr-1:hover{
    margin-right: 0.25rem;
  }

  .s1440\:hover\:mb-1:hover{
    margin-bottom: 0.25rem;
  }

  .s1440\:hover\:ml-1:hover{
    margin-left: 0.25rem;
  }

  .s1440\:hover\:mt-2:hover{
    margin-top: 0.5rem;
  }

  .s1440\:hover\:mr-2:hover{
    margin-right: 0.5rem;
  }

  .s1440\:hover\:mb-2:hover{
    margin-bottom: 0.5rem;
  }

  .s1440\:hover\:ml-2:hover{
    margin-left: 0.5rem;
  }

  .s1440\:hover\:mt-3:hover{
    margin-top: 0.75rem;
  }

  .s1440\:hover\:mr-3:hover{
    margin-right: 0.75rem;
  }

  .s1440\:hover\:mb-3:hover{
    margin-bottom: 0.75rem;
  }

  .s1440\:hover\:ml-3:hover{
    margin-left: 0.75rem;
  }

  .s1440\:hover\:mt-4:hover{
    margin-top: 1rem;
  }

  .s1440\:hover\:mr-4:hover{
    margin-right: 1rem;
  }

  .s1440\:hover\:mb-4:hover{
    margin-bottom: 1rem;
  }

  .s1440\:hover\:ml-4:hover{
    margin-left: 1rem;
  }

  .s1440\:hover\:mt-5:hover{
    margin-top: 1.25rem;
  }

  .s1440\:hover\:mr-5:hover{
    margin-right: 1.25rem;
  }

  .s1440\:hover\:mb-5:hover{
    margin-bottom: 1.25rem;
  }

  .s1440\:hover\:ml-5:hover{
    margin-left: 1.25rem;
  }

  .s1440\:hover\:mt-6:hover{
    margin-top: 1.5rem;
  }

  .s1440\:hover\:mr-6:hover{
    margin-right: 1.5rem;
  }

  .s1440\:hover\:mb-6:hover{
    margin-bottom: 1.5rem;
  }

  .s1440\:hover\:ml-6:hover{
    margin-left: 1.5rem;
  }

  .s1440\:hover\:mt-7:hover{
    margin-top: 1.75rem;
  }

  .s1440\:hover\:mr-7:hover{
    margin-right: 1.75rem;
  }

  .s1440\:hover\:mb-7:hover{
    margin-bottom: 1.75rem;
  }

  .s1440\:hover\:ml-7:hover{
    margin-left: 1.75rem;
  }

  .s1440\:hover\:mt-8:hover{
    margin-top: 2rem;
  }

  .s1440\:hover\:mr-8:hover{
    margin-right: 2rem;
  }

  .s1440\:hover\:mb-8:hover{
    margin-bottom: 2rem;
  }

  .s1440\:hover\:ml-8:hover{
    margin-left: 2rem;
  }

  .s1440\:hover\:mt-10:hover{
    margin-top: 2.5rem;
  }

  .s1440\:hover\:mr-10:hover{
    margin-right: 2.5rem;
  }

  .s1440\:hover\:mb-10:hover{
    margin-bottom: 2.5rem;
  }

  .s1440\:hover\:ml-10:hover{
    margin-left: 2.5rem;
  }

  .s1440\:hover\:mt-12:hover{
    margin-top: 3rem;
  }

  .s1440\:hover\:mr-12:hover{
    margin-right: 3rem;
  }

  .s1440\:hover\:mb-12:hover{
    margin-bottom: 3rem;
  }

  .s1440\:hover\:ml-12:hover{
    margin-left: 3rem;
  }

  .s1440\:hover\:mt-14:hover{
    margin-top: 3.5rem;
  }

  .s1440\:hover\:mr-14:hover{
    margin-right: 3.5rem;
  }

  .s1440\:hover\:mb-14:hover{
    margin-bottom: 3.5rem;
  }

  .s1440\:hover\:ml-14:hover{
    margin-left: 3.5rem;
  }

  .s1440\:hover\:mt-16:hover{
    margin-top: 4rem;
  }

  .s1440\:hover\:mr-16:hover{
    margin-right: 4rem;
  }

  .s1440\:hover\:mb-16:hover{
    margin-bottom: 4rem;
  }

  .s1440\:hover\:ml-16:hover{
    margin-left: 4rem;
  }

  .s1440\:hover\:mt-18:hover{
    margin-top: 4.5rem;
  }

  .s1440\:hover\:mr-18:hover{
    margin-right: 4.5rem;
  }

  .s1440\:hover\:mb-18:hover{
    margin-bottom: 4.5rem;
  }

  .s1440\:hover\:ml-18:hover{
    margin-left: 4.5rem;
  }

  .s1440\:hover\:mt-20:hover{
    margin-top: 5rem;
  }

  .s1440\:hover\:mr-20:hover{
    margin-right: 5rem;
  }

  .s1440\:hover\:mb-20:hover{
    margin-bottom: 5rem;
  }

  .s1440\:hover\:ml-20:hover{
    margin-left: 5rem;
  }

  .s1440\:hover\:mt-24:hover{
    margin-top: 6rem;
  }

  .s1440\:hover\:mr-24:hover{
    margin-right: 6rem;
  }

  .s1440\:hover\:mb-24:hover{
    margin-bottom: 6rem;
  }

  .s1440\:hover\:ml-24:hover{
    margin-left: 6rem;
  }

  .s1440\:hover\:mt-32:hover{
    margin-top: 8rem;
  }

  .s1440\:hover\:mr-32:hover{
    margin-right: 8rem;
  }

  .s1440\:hover\:mb-32:hover{
    margin-bottom: 8rem;
  }

  .s1440\:hover\:ml-32:hover{
    margin-left: 8rem;
  }

  .s1440\:hover\:mt-40:hover{
    margin-top: 10rem;
  }

  .s1440\:hover\:mr-40:hover{
    margin-right: 10rem;
  }

  .s1440\:hover\:mb-40:hover{
    margin-bottom: 10rem;
  }

  .s1440\:hover\:ml-40:hover{
    margin-left: 10rem;
  }

  .s1440\:hover\:mt-48:hover{
    margin-top: 12rem;
  }

  .s1440\:hover\:mr-48:hover{
    margin-right: 12rem;
  }

  .s1440\:hover\:mb-48:hover{
    margin-bottom: 12rem;
  }

  .s1440\:hover\:ml-48:hover{
    margin-left: 12rem;
  }

  .s1440\:hover\:mt-56:hover{
    margin-top: 14rem;
  }

  .s1440\:hover\:mr-56:hover{
    margin-right: 14rem;
  }

  .s1440\:hover\:mb-56:hover{
    margin-bottom: 14rem;
  }

  .s1440\:hover\:ml-56:hover{
    margin-left: 14rem;
  }

  .s1440\:hover\:mt-64:hover{
    margin-top: 16rem;
  }

  .s1440\:hover\:mr-64:hover{
    margin-right: 16rem;
  }

  .s1440\:hover\:mb-64:hover{
    margin-bottom: 16rem;
  }

  .s1440\:hover\:ml-64:hover{
    margin-left: 16rem;
  }

  .s1440\:hover\:mt-auto:hover{
    margin-top: auto;
  }

  .s1440\:hover\:mr-auto:hover{
    margin-right: auto;
  }

  .s1440\:hover\:mb-auto:hover{
    margin-bottom: auto;
  }

  .s1440\:hover\:ml-auto:hover{
    margin-left: auto;
  }

  .s1440\:hover\:mt-px:hover{
    margin-top: 1px;
  }

  .s1440\:hover\:mr-px:hover{
    margin-right: 1px;
  }

  .s1440\:hover\:mb-px:hover{
    margin-bottom: 1px;
  }

  .s1440\:hover\:ml-px:hover{
    margin-left: 1px;
  }

  .s1440\:hover\:-mt-1:hover{
    margin-top: -0.25rem;
  }

  .s1440\:hover\:-mr-1:hover{
    margin-right: -0.25rem;
  }

  .s1440\:hover\:-mb-1:hover{
    margin-bottom: -0.25rem;
  }

  .s1440\:hover\:-ml-1:hover{
    margin-left: -0.25rem;
  }

  .s1440\:hover\:-mt-2:hover{
    margin-top: -0.5rem;
  }

  .s1440\:hover\:-mr-2:hover{
    margin-right: -0.5rem;
  }

  .s1440\:hover\:-mb-2:hover{
    margin-bottom: -0.5rem;
  }

  .s1440\:hover\:-ml-2:hover{
    margin-left: -0.5rem;
  }

  .s1440\:hover\:-mt-3:hover{
    margin-top: -0.75rem;
  }

  .s1440\:hover\:-mr-3:hover{
    margin-right: -0.75rem;
  }

  .s1440\:hover\:-mb-3:hover{
    margin-bottom: -0.75rem;
  }

  .s1440\:hover\:-ml-3:hover{
    margin-left: -0.75rem;
  }

  .s1440\:hover\:-mt-4:hover{
    margin-top: -1rem;
  }

  .s1440\:hover\:-mr-4:hover{
    margin-right: -1rem;
  }

  .s1440\:hover\:-mb-4:hover{
    margin-bottom: -1rem;
  }

  .s1440\:hover\:-ml-4:hover{
    margin-left: -1rem;
  }

  .s1440\:hover\:-mt-5:hover{
    margin-top: -1.25rem;
  }

  .s1440\:hover\:-mr-5:hover{
    margin-right: -1.25rem;
  }

  .s1440\:hover\:-mb-5:hover{
    margin-bottom: -1.25rem;
  }

  .s1440\:hover\:-ml-5:hover{
    margin-left: -1.25rem;
  }

  .s1440\:hover\:-mt-6:hover{
    margin-top: -1.5rem;
  }

  .s1440\:hover\:-mr-6:hover{
    margin-right: -1.5rem;
  }

  .s1440\:hover\:-mb-6:hover{
    margin-bottom: -1.5rem;
  }

  .s1440\:hover\:-ml-6:hover{
    margin-left: -1.5rem;
  }

  .s1440\:hover\:-mt-8:hover{
    margin-top: -2rem;
  }

  .s1440\:hover\:-mr-8:hover{
    margin-right: -2rem;
  }

  .s1440\:hover\:-mb-8:hover{
    margin-bottom: -2rem;
  }

  .s1440\:hover\:-ml-8:hover{
    margin-left: -2rem;
  }

  .s1440\:hover\:-mt-10:hover{
    margin-top: -2.5rem;
  }

  .s1440\:hover\:-mr-10:hover{
    margin-right: -2.5rem;
  }

  .s1440\:hover\:-mb-10:hover{
    margin-bottom: -2.5rem;
  }

  .s1440\:hover\:-ml-10:hover{
    margin-left: -2.5rem;
  }

  .s1440\:hover\:-mt-12:hover{
    margin-top: -3rem;
  }

  .s1440\:hover\:-mr-12:hover{
    margin-right: -3rem;
  }

  .s1440\:hover\:-mb-12:hover{
    margin-bottom: -3rem;
  }

  .s1440\:hover\:-ml-12:hover{
    margin-left: -3rem;
  }

  .s1440\:hover\:-mt-14:hover{
    margin-top: -3.5rem;
  }

  .s1440\:hover\:-mr-14:hover{
    margin-right: -3.5rem;
  }

  .s1440\:hover\:-mb-14:hover{
    margin-bottom: -3.5rem;
  }

  .s1440\:hover\:-ml-14:hover{
    margin-left: -3.5rem;
  }

  .s1440\:hover\:-mt-16:hover{
    margin-top: -4rem;
  }

  .s1440\:hover\:-mr-16:hover{
    margin-right: -4rem;
  }

  .s1440\:hover\:-mb-16:hover{
    margin-bottom: -4rem;
  }

  .s1440\:hover\:-ml-16:hover{
    margin-left: -4rem;
  }

  .s1440\:hover\:-mt-20:hover{
    margin-top: -5rem;
  }

  .s1440\:hover\:-mr-20:hover{
    margin-right: -5rem;
  }

  .s1440\:hover\:-mb-20:hover{
    margin-bottom: -5rem;
  }

  .s1440\:hover\:-ml-20:hover{
    margin-left: -5rem;
  }

  .s1440\:hover\:-mt-24:hover{
    margin-top: -6rem;
  }

  .s1440\:hover\:-mr-24:hover{
    margin-right: -6rem;
  }

  .s1440\:hover\:-mb-24:hover{
    margin-bottom: -6rem;
  }

  .s1440\:hover\:-ml-24:hover{
    margin-left: -6rem;
  }

  .s1440\:hover\:-mt-32:hover{
    margin-top: -8rem;
  }

  .s1440\:hover\:-mr-32:hover{
    margin-right: -8rem;
  }

  .s1440\:hover\:-mb-32:hover{
    margin-bottom: -8rem;
  }

  .s1440\:hover\:-ml-32:hover{
    margin-left: -8rem;
  }

  .s1440\:hover\:-mt-40:hover{
    margin-top: -10rem;
  }

  .s1440\:hover\:-mr-40:hover{
    margin-right: -10rem;
  }

  .s1440\:hover\:-mb-40:hover{
    margin-bottom: -10rem;
  }

  .s1440\:hover\:-ml-40:hover{
    margin-left: -10rem;
  }

  .s1440\:hover\:-mt-48:hover{
    margin-top: -12rem;
  }

  .s1440\:hover\:-mr-48:hover{
    margin-right: -12rem;
  }

  .s1440\:hover\:-mb-48:hover{
    margin-bottom: -12rem;
  }

  .s1440\:hover\:-ml-48:hover{
    margin-left: -12rem;
  }

  .s1440\:hover\:-mt-56:hover{
    margin-top: -14rem;
  }

  .s1440\:hover\:-mr-56:hover{
    margin-right: -14rem;
  }

  .s1440\:hover\:-mb-56:hover{
    margin-bottom: -14rem;
  }

  .s1440\:hover\:-ml-56:hover{
    margin-left: -14rem;
  }

  .s1440\:hover\:-mt-64:hover{
    margin-top: -16rem;
  }

  .s1440\:hover\:-mr-64:hover{
    margin-right: -16rem;
  }

  .s1440\:hover\:-mb-64:hover{
    margin-bottom: -16rem;
  }

  .s1440\:hover\:-ml-64:hover{
    margin-left: -16rem;
  }

  .s1440\:hover\:-mt-px:hover{
    margin-top: -1px;
  }

  .s1440\:hover\:-mr-px:hover{
    margin-right: -1px;
  }

  .s1440\:hover\:-mb-px:hover{
    margin-bottom: -1px;
  }

  .s1440\:hover\:-ml-px:hover{
    margin-left: -1px;
  }

  .s1440\:hover\:mt-bin:hover{
    margin-top: -0.313rem;
  }

  .s1440\:hover\:mr-bin:hover{
    margin-right: -0.313rem;
  }

  .s1440\:hover\:mb-bin:hover{
    margin-bottom: -0.313rem;
  }

  .s1440\:hover\:ml-bin:hover{
    margin-left: -0.313rem;
  }

  .s1440\:hover\:-mt-0\.25:hover{
    margin-top: -0.0625rem;
  }

  .s1440\:hover\:-mr-0\.25:hover{
    margin-right: -0.0625rem;
  }

  .s1440\:hover\:-mb-0\.25:hover{
    margin-bottom: -0.0625rem;
  }

  .s1440\:hover\:-ml-0\.25:hover{
    margin-left: -0.0625rem;
  }

  .s1440\:hover\:mt-0\.25:hover{
    margin-top: 0.0625rem;
  }

  .s1440\:hover\:mr-0\.25:hover{
    margin-right: 0.0625rem;
  }

  .s1440\:hover\:mb-0\.25:hover{
    margin-bottom: 0.0625rem;
  }

  .s1440\:hover\:ml-0\.25:hover{
    margin-left: 0.0625rem;
  }

  .s1440\:hover\:mt-3\.125:hover{
    margin-top: 3.125rem;
  }

  .s1440\:hover\:mr-3\.125:hover{
    margin-right: 3.125rem;
  }

  .s1440\:hover\:mb-3\.125:hover{
    margin-bottom: 3.125rem;
  }

  .s1440\:hover\:ml-3\.125:hover{
    margin-left: 3.125rem;
  }

  .s1440\:hover\:mt-modal:hover{
    margin-top: 6.25rem;
  }

  .s1440\:hover\:mr-modal:hover{
    margin-right: 6.25rem;
  }

  .s1440\:hover\:mb-modal:hover{
    margin-bottom: 6.25rem;
  }

  .s1440\:hover\:ml-modal:hover{
    margin-left: 6.25rem;
  }

  .s1440\:hover\:mt-sidebar:hover{
    margin-top: 25rem;
  }

  .s1440\:hover\:mr-sidebar:hover{
    margin-right: 25rem;
  }

  .s1440\:hover\:mb-sidebar:hover{
    margin-bottom: 25rem;
  }

  .s1440\:hover\:ml-sidebar:hover{
    margin-left: 25rem;
  }

  .s1440\:focus\:m-0:focus{
    margin: 0;
  }

  .s1440\:focus\:m-1:focus{
    margin: 0.25rem;
  }

  .s1440\:focus\:m-2:focus{
    margin: 0.5rem;
  }

  .s1440\:focus\:m-3:focus{
    margin: 0.75rem;
  }

  .s1440\:focus\:m-4:focus{
    margin: 1rem;
  }

  .s1440\:focus\:m-5:focus{
    margin: 1.25rem;
  }

  .s1440\:focus\:m-6:focus{
    margin: 1.5rem;
  }

  .s1440\:focus\:m-7:focus{
    margin: 1.75rem;
  }

  .s1440\:focus\:m-8:focus{
    margin: 2rem;
  }

  .s1440\:focus\:m-10:focus{
    margin: 2.5rem;
  }

  .s1440\:focus\:m-12:focus{
    margin: 3rem;
  }

  .s1440\:focus\:m-14:focus{
    margin: 3.5rem;
  }

  .s1440\:focus\:m-16:focus{
    margin: 4rem;
  }

  .s1440\:focus\:m-18:focus{
    margin: 4.5rem;
  }

  .s1440\:focus\:m-20:focus{
    margin: 5rem;
  }

  .s1440\:focus\:m-24:focus{
    margin: 6rem;
  }

  .s1440\:focus\:m-32:focus{
    margin: 8rem;
  }

  .s1440\:focus\:m-40:focus{
    margin: 10rem;
  }

  .s1440\:focus\:m-48:focus{
    margin: 12rem;
  }

  .s1440\:focus\:m-56:focus{
    margin: 14rem;
  }

  .s1440\:focus\:m-64:focus{
    margin: 16rem;
  }

  .s1440\:focus\:m-auto:focus{
    margin: auto;
  }

  .s1440\:focus\:m-px:focus{
    margin: 1px;
  }

  .s1440\:focus\:-m-1:focus{
    margin: -0.25rem;
  }

  .s1440\:focus\:-m-2:focus{
    margin: -0.5rem;
  }

  .s1440\:focus\:-m-3:focus{
    margin: -0.75rem;
  }

  .s1440\:focus\:-m-4:focus{
    margin: -1rem;
  }

  .s1440\:focus\:-m-5:focus{
    margin: -1.25rem;
  }

  .s1440\:focus\:-m-6:focus{
    margin: -1.5rem;
  }

  .s1440\:focus\:-m-8:focus{
    margin: -2rem;
  }

  .s1440\:focus\:-m-10:focus{
    margin: -2.5rem;
  }

  .s1440\:focus\:-m-12:focus{
    margin: -3rem;
  }

  .s1440\:focus\:-m-14:focus{
    margin: -3.5rem;
  }

  .s1440\:focus\:-m-16:focus{
    margin: -4rem;
  }

  .s1440\:focus\:-m-20:focus{
    margin: -5rem;
  }

  .s1440\:focus\:-m-24:focus{
    margin: -6rem;
  }

  .s1440\:focus\:-m-32:focus{
    margin: -8rem;
  }

  .s1440\:focus\:-m-40:focus{
    margin: -10rem;
  }

  .s1440\:focus\:-m-48:focus{
    margin: -12rem;
  }

  .s1440\:focus\:-m-56:focus{
    margin: -14rem;
  }

  .s1440\:focus\:-m-64:focus{
    margin: -16rem;
  }

  .s1440\:focus\:-m-px:focus{
    margin: -1px;
  }

  .s1440\:focus\:m-bin:focus{
    margin: -0.313rem;
  }

  .s1440\:focus\:-m-0\.25:focus{
    margin: -0.0625rem;
  }

  .s1440\:focus\:m-0\.25:focus{
    margin: 0.0625rem;
  }

  .s1440\:focus\:m-3\.125:focus{
    margin: 3.125rem;
  }

  .s1440\:focus\:m-modal:focus{
    margin: 6.25rem;
  }

  .s1440\:focus\:m-sidebar:focus{
    margin: 25rem;
  }

  .s1440\:focus\:my-0:focus{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1440\:focus\:mx-0:focus{
    margin-left: 0;
    margin-right: 0;
  }

  .s1440\:focus\:my-1:focus{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1440\:focus\:mx-1:focus{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1440\:focus\:my-2:focus{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1440\:focus\:mx-2:focus{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1440\:focus\:my-3:focus{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1440\:focus\:mx-3:focus{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1440\:focus\:my-4:focus{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1440\:focus\:mx-4:focus{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1440\:focus\:my-5:focus{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1440\:focus\:mx-5:focus{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1440\:focus\:my-6:focus{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1440\:focus\:mx-6:focus{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1440\:focus\:my-7:focus{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1440\:focus\:mx-7:focus{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1440\:focus\:my-8:focus{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1440\:focus\:mx-8:focus{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1440\:focus\:my-10:focus{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1440\:focus\:mx-10:focus{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1440\:focus\:my-12:focus{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1440\:focus\:mx-12:focus{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1440\:focus\:my-14:focus{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1440\:focus\:mx-14:focus{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1440\:focus\:my-16:focus{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1440\:focus\:mx-16:focus{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1440\:focus\:my-18:focus{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1440\:focus\:mx-18:focus{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1440\:focus\:my-20:focus{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1440\:focus\:mx-20:focus{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1440\:focus\:my-24:focus{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1440\:focus\:mx-24:focus{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1440\:focus\:my-32:focus{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1440\:focus\:mx-32:focus{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1440\:focus\:my-40:focus{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1440\:focus\:mx-40:focus{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1440\:focus\:my-48:focus{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1440\:focus\:mx-48:focus{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1440\:focus\:my-56:focus{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1440\:focus\:mx-56:focus{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1440\:focus\:my-64:focus{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1440\:focus\:mx-64:focus{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1440\:focus\:my-auto:focus{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1440\:focus\:mx-auto:focus{
    margin-left: auto;
    margin-right: auto;
  }

  .s1440\:focus\:my-px:focus{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1440\:focus\:mx-px:focus{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1440\:focus\:-my-1:focus{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1440\:focus\:-mx-1:focus{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1440\:focus\:-my-2:focus{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1440\:focus\:-mx-2:focus{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1440\:focus\:-my-3:focus{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1440\:focus\:-mx-3:focus{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1440\:focus\:-my-4:focus{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1440\:focus\:-mx-4:focus{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1440\:focus\:-my-5:focus{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1440\:focus\:-mx-5:focus{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1440\:focus\:-my-6:focus{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1440\:focus\:-mx-6:focus{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1440\:focus\:-my-8:focus{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1440\:focus\:-mx-8:focus{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1440\:focus\:-my-10:focus{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1440\:focus\:-mx-10:focus{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1440\:focus\:-my-12:focus{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1440\:focus\:-mx-12:focus{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1440\:focus\:-my-14:focus{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1440\:focus\:-mx-14:focus{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1440\:focus\:-my-16:focus{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1440\:focus\:-mx-16:focus{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1440\:focus\:-my-20:focus{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1440\:focus\:-mx-20:focus{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1440\:focus\:-my-24:focus{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1440\:focus\:-mx-24:focus{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1440\:focus\:-my-32:focus{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1440\:focus\:-mx-32:focus{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1440\:focus\:-my-40:focus{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1440\:focus\:-mx-40:focus{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1440\:focus\:-my-48:focus{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1440\:focus\:-mx-48:focus{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1440\:focus\:-my-56:focus{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1440\:focus\:-mx-56:focus{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1440\:focus\:-my-64:focus{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1440\:focus\:-mx-64:focus{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1440\:focus\:-my-px:focus{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1440\:focus\:-mx-px:focus{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1440\:focus\:my-bin:focus{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1440\:focus\:mx-bin:focus{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1440\:focus\:-my-0\.25:focus{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1440\:focus\:-mx-0\.25:focus{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1440\:focus\:my-0\.25:focus{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1440\:focus\:mx-0\.25:focus{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1440\:focus\:my-3\.125:focus{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1440\:focus\:mx-3\.125:focus{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1440\:focus\:my-modal:focus{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1440\:focus\:mx-modal:focus{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1440\:focus\:my-sidebar:focus{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1440\:focus\:mx-sidebar:focus{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1440\:focus\:mt-0:focus{
    margin-top: 0;
  }

  .s1440\:focus\:mr-0:focus{
    margin-right: 0;
  }

  .s1440\:focus\:mb-0:focus{
    margin-bottom: 0;
  }

  .s1440\:focus\:ml-0:focus{
    margin-left: 0;
  }

  .s1440\:focus\:mt-1:focus{
    margin-top: 0.25rem;
  }

  .s1440\:focus\:mr-1:focus{
    margin-right: 0.25rem;
  }

  .s1440\:focus\:mb-1:focus{
    margin-bottom: 0.25rem;
  }

  .s1440\:focus\:ml-1:focus{
    margin-left: 0.25rem;
  }

  .s1440\:focus\:mt-2:focus{
    margin-top: 0.5rem;
  }

  .s1440\:focus\:mr-2:focus{
    margin-right: 0.5rem;
  }

  .s1440\:focus\:mb-2:focus{
    margin-bottom: 0.5rem;
  }

  .s1440\:focus\:ml-2:focus{
    margin-left: 0.5rem;
  }

  .s1440\:focus\:mt-3:focus{
    margin-top: 0.75rem;
  }

  .s1440\:focus\:mr-3:focus{
    margin-right: 0.75rem;
  }

  .s1440\:focus\:mb-3:focus{
    margin-bottom: 0.75rem;
  }

  .s1440\:focus\:ml-3:focus{
    margin-left: 0.75rem;
  }

  .s1440\:focus\:mt-4:focus{
    margin-top: 1rem;
  }

  .s1440\:focus\:mr-4:focus{
    margin-right: 1rem;
  }

  .s1440\:focus\:mb-4:focus{
    margin-bottom: 1rem;
  }

  .s1440\:focus\:ml-4:focus{
    margin-left: 1rem;
  }

  .s1440\:focus\:mt-5:focus{
    margin-top: 1.25rem;
  }

  .s1440\:focus\:mr-5:focus{
    margin-right: 1.25rem;
  }

  .s1440\:focus\:mb-5:focus{
    margin-bottom: 1.25rem;
  }

  .s1440\:focus\:ml-5:focus{
    margin-left: 1.25rem;
  }

  .s1440\:focus\:mt-6:focus{
    margin-top: 1.5rem;
  }

  .s1440\:focus\:mr-6:focus{
    margin-right: 1.5rem;
  }

  .s1440\:focus\:mb-6:focus{
    margin-bottom: 1.5rem;
  }

  .s1440\:focus\:ml-6:focus{
    margin-left: 1.5rem;
  }

  .s1440\:focus\:mt-7:focus{
    margin-top: 1.75rem;
  }

  .s1440\:focus\:mr-7:focus{
    margin-right: 1.75rem;
  }

  .s1440\:focus\:mb-7:focus{
    margin-bottom: 1.75rem;
  }

  .s1440\:focus\:ml-7:focus{
    margin-left: 1.75rem;
  }

  .s1440\:focus\:mt-8:focus{
    margin-top: 2rem;
  }

  .s1440\:focus\:mr-8:focus{
    margin-right: 2rem;
  }

  .s1440\:focus\:mb-8:focus{
    margin-bottom: 2rem;
  }

  .s1440\:focus\:ml-8:focus{
    margin-left: 2rem;
  }

  .s1440\:focus\:mt-10:focus{
    margin-top: 2.5rem;
  }

  .s1440\:focus\:mr-10:focus{
    margin-right: 2.5rem;
  }

  .s1440\:focus\:mb-10:focus{
    margin-bottom: 2.5rem;
  }

  .s1440\:focus\:ml-10:focus{
    margin-left: 2.5rem;
  }

  .s1440\:focus\:mt-12:focus{
    margin-top: 3rem;
  }

  .s1440\:focus\:mr-12:focus{
    margin-right: 3rem;
  }

  .s1440\:focus\:mb-12:focus{
    margin-bottom: 3rem;
  }

  .s1440\:focus\:ml-12:focus{
    margin-left: 3rem;
  }

  .s1440\:focus\:mt-14:focus{
    margin-top: 3.5rem;
  }

  .s1440\:focus\:mr-14:focus{
    margin-right: 3.5rem;
  }

  .s1440\:focus\:mb-14:focus{
    margin-bottom: 3.5rem;
  }

  .s1440\:focus\:ml-14:focus{
    margin-left: 3.5rem;
  }

  .s1440\:focus\:mt-16:focus{
    margin-top: 4rem;
  }

  .s1440\:focus\:mr-16:focus{
    margin-right: 4rem;
  }

  .s1440\:focus\:mb-16:focus{
    margin-bottom: 4rem;
  }

  .s1440\:focus\:ml-16:focus{
    margin-left: 4rem;
  }

  .s1440\:focus\:mt-18:focus{
    margin-top: 4.5rem;
  }

  .s1440\:focus\:mr-18:focus{
    margin-right: 4.5rem;
  }

  .s1440\:focus\:mb-18:focus{
    margin-bottom: 4.5rem;
  }

  .s1440\:focus\:ml-18:focus{
    margin-left: 4.5rem;
  }

  .s1440\:focus\:mt-20:focus{
    margin-top: 5rem;
  }

  .s1440\:focus\:mr-20:focus{
    margin-right: 5rem;
  }

  .s1440\:focus\:mb-20:focus{
    margin-bottom: 5rem;
  }

  .s1440\:focus\:ml-20:focus{
    margin-left: 5rem;
  }

  .s1440\:focus\:mt-24:focus{
    margin-top: 6rem;
  }

  .s1440\:focus\:mr-24:focus{
    margin-right: 6rem;
  }

  .s1440\:focus\:mb-24:focus{
    margin-bottom: 6rem;
  }

  .s1440\:focus\:ml-24:focus{
    margin-left: 6rem;
  }

  .s1440\:focus\:mt-32:focus{
    margin-top: 8rem;
  }

  .s1440\:focus\:mr-32:focus{
    margin-right: 8rem;
  }

  .s1440\:focus\:mb-32:focus{
    margin-bottom: 8rem;
  }

  .s1440\:focus\:ml-32:focus{
    margin-left: 8rem;
  }

  .s1440\:focus\:mt-40:focus{
    margin-top: 10rem;
  }

  .s1440\:focus\:mr-40:focus{
    margin-right: 10rem;
  }

  .s1440\:focus\:mb-40:focus{
    margin-bottom: 10rem;
  }

  .s1440\:focus\:ml-40:focus{
    margin-left: 10rem;
  }

  .s1440\:focus\:mt-48:focus{
    margin-top: 12rem;
  }

  .s1440\:focus\:mr-48:focus{
    margin-right: 12rem;
  }

  .s1440\:focus\:mb-48:focus{
    margin-bottom: 12rem;
  }

  .s1440\:focus\:ml-48:focus{
    margin-left: 12rem;
  }

  .s1440\:focus\:mt-56:focus{
    margin-top: 14rem;
  }

  .s1440\:focus\:mr-56:focus{
    margin-right: 14rem;
  }

  .s1440\:focus\:mb-56:focus{
    margin-bottom: 14rem;
  }

  .s1440\:focus\:ml-56:focus{
    margin-left: 14rem;
  }

  .s1440\:focus\:mt-64:focus{
    margin-top: 16rem;
  }

  .s1440\:focus\:mr-64:focus{
    margin-right: 16rem;
  }

  .s1440\:focus\:mb-64:focus{
    margin-bottom: 16rem;
  }

  .s1440\:focus\:ml-64:focus{
    margin-left: 16rem;
  }

  .s1440\:focus\:mt-auto:focus{
    margin-top: auto;
  }

  .s1440\:focus\:mr-auto:focus{
    margin-right: auto;
  }

  .s1440\:focus\:mb-auto:focus{
    margin-bottom: auto;
  }

  .s1440\:focus\:ml-auto:focus{
    margin-left: auto;
  }

  .s1440\:focus\:mt-px:focus{
    margin-top: 1px;
  }

  .s1440\:focus\:mr-px:focus{
    margin-right: 1px;
  }

  .s1440\:focus\:mb-px:focus{
    margin-bottom: 1px;
  }

  .s1440\:focus\:ml-px:focus{
    margin-left: 1px;
  }

  .s1440\:focus\:-mt-1:focus{
    margin-top: -0.25rem;
  }

  .s1440\:focus\:-mr-1:focus{
    margin-right: -0.25rem;
  }

  .s1440\:focus\:-mb-1:focus{
    margin-bottom: -0.25rem;
  }

  .s1440\:focus\:-ml-1:focus{
    margin-left: -0.25rem;
  }

  .s1440\:focus\:-mt-2:focus{
    margin-top: -0.5rem;
  }

  .s1440\:focus\:-mr-2:focus{
    margin-right: -0.5rem;
  }

  .s1440\:focus\:-mb-2:focus{
    margin-bottom: -0.5rem;
  }

  .s1440\:focus\:-ml-2:focus{
    margin-left: -0.5rem;
  }

  .s1440\:focus\:-mt-3:focus{
    margin-top: -0.75rem;
  }

  .s1440\:focus\:-mr-3:focus{
    margin-right: -0.75rem;
  }

  .s1440\:focus\:-mb-3:focus{
    margin-bottom: -0.75rem;
  }

  .s1440\:focus\:-ml-3:focus{
    margin-left: -0.75rem;
  }

  .s1440\:focus\:-mt-4:focus{
    margin-top: -1rem;
  }

  .s1440\:focus\:-mr-4:focus{
    margin-right: -1rem;
  }

  .s1440\:focus\:-mb-4:focus{
    margin-bottom: -1rem;
  }

  .s1440\:focus\:-ml-4:focus{
    margin-left: -1rem;
  }

  .s1440\:focus\:-mt-5:focus{
    margin-top: -1.25rem;
  }

  .s1440\:focus\:-mr-5:focus{
    margin-right: -1.25rem;
  }

  .s1440\:focus\:-mb-5:focus{
    margin-bottom: -1.25rem;
  }

  .s1440\:focus\:-ml-5:focus{
    margin-left: -1.25rem;
  }

  .s1440\:focus\:-mt-6:focus{
    margin-top: -1.5rem;
  }

  .s1440\:focus\:-mr-6:focus{
    margin-right: -1.5rem;
  }

  .s1440\:focus\:-mb-6:focus{
    margin-bottom: -1.5rem;
  }

  .s1440\:focus\:-ml-6:focus{
    margin-left: -1.5rem;
  }

  .s1440\:focus\:-mt-8:focus{
    margin-top: -2rem;
  }

  .s1440\:focus\:-mr-8:focus{
    margin-right: -2rem;
  }

  .s1440\:focus\:-mb-8:focus{
    margin-bottom: -2rem;
  }

  .s1440\:focus\:-ml-8:focus{
    margin-left: -2rem;
  }

  .s1440\:focus\:-mt-10:focus{
    margin-top: -2.5rem;
  }

  .s1440\:focus\:-mr-10:focus{
    margin-right: -2.5rem;
  }

  .s1440\:focus\:-mb-10:focus{
    margin-bottom: -2.5rem;
  }

  .s1440\:focus\:-ml-10:focus{
    margin-left: -2.5rem;
  }

  .s1440\:focus\:-mt-12:focus{
    margin-top: -3rem;
  }

  .s1440\:focus\:-mr-12:focus{
    margin-right: -3rem;
  }

  .s1440\:focus\:-mb-12:focus{
    margin-bottom: -3rem;
  }

  .s1440\:focus\:-ml-12:focus{
    margin-left: -3rem;
  }

  .s1440\:focus\:-mt-14:focus{
    margin-top: -3.5rem;
  }

  .s1440\:focus\:-mr-14:focus{
    margin-right: -3.5rem;
  }

  .s1440\:focus\:-mb-14:focus{
    margin-bottom: -3.5rem;
  }

  .s1440\:focus\:-ml-14:focus{
    margin-left: -3.5rem;
  }

  .s1440\:focus\:-mt-16:focus{
    margin-top: -4rem;
  }

  .s1440\:focus\:-mr-16:focus{
    margin-right: -4rem;
  }

  .s1440\:focus\:-mb-16:focus{
    margin-bottom: -4rem;
  }

  .s1440\:focus\:-ml-16:focus{
    margin-left: -4rem;
  }

  .s1440\:focus\:-mt-20:focus{
    margin-top: -5rem;
  }

  .s1440\:focus\:-mr-20:focus{
    margin-right: -5rem;
  }

  .s1440\:focus\:-mb-20:focus{
    margin-bottom: -5rem;
  }

  .s1440\:focus\:-ml-20:focus{
    margin-left: -5rem;
  }

  .s1440\:focus\:-mt-24:focus{
    margin-top: -6rem;
  }

  .s1440\:focus\:-mr-24:focus{
    margin-right: -6rem;
  }

  .s1440\:focus\:-mb-24:focus{
    margin-bottom: -6rem;
  }

  .s1440\:focus\:-ml-24:focus{
    margin-left: -6rem;
  }

  .s1440\:focus\:-mt-32:focus{
    margin-top: -8rem;
  }

  .s1440\:focus\:-mr-32:focus{
    margin-right: -8rem;
  }

  .s1440\:focus\:-mb-32:focus{
    margin-bottom: -8rem;
  }

  .s1440\:focus\:-ml-32:focus{
    margin-left: -8rem;
  }

  .s1440\:focus\:-mt-40:focus{
    margin-top: -10rem;
  }

  .s1440\:focus\:-mr-40:focus{
    margin-right: -10rem;
  }

  .s1440\:focus\:-mb-40:focus{
    margin-bottom: -10rem;
  }

  .s1440\:focus\:-ml-40:focus{
    margin-left: -10rem;
  }

  .s1440\:focus\:-mt-48:focus{
    margin-top: -12rem;
  }

  .s1440\:focus\:-mr-48:focus{
    margin-right: -12rem;
  }

  .s1440\:focus\:-mb-48:focus{
    margin-bottom: -12rem;
  }

  .s1440\:focus\:-ml-48:focus{
    margin-left: -12rem;
  }

  .s1440\:focus\:-mt-56:focus{
    margin-top: -14rem;
  }

  .s1440\:focus\:-mr-56:focus{
    margin-right: -14rem;
  }

  .s1440\:focus\:-mb-56:focus{
    margin-bottom: -14rem;
  }

  .s1440\:focus\:-ml-56:focus{
    margin-left: -14rem;
  }

  .s1440\:focus\:-mt-64:focus{
    margin-top: -16rem;
  }

  .s1440\:focus\:-mr-64:focus{
    margin-right: -16rem;
  }

  .s1440\:focus\:-mb-64:focus{
    margin-bottom: -16rem;
  }

  .s1440\:focus\:-ml-64:focus{
    margin-left: -16rem;
  }

  .s1440\:focus\:-mt-px:focus{
    margin-top: -1px;
  }

  .s1440\:focus\:-mr-px:focus{
    margin-right: -1px;
  }

  .s1440\:focus\:-mb-px:focus{
    margin-bottom: -1px;
  }

  .s1440\:focus\:-ml-px:focus{
    margin-left: -1px;
  }

  .s1440\:focus\:mt-bin:focus{
    margin-top: -0.313rem;
  }

  .s1440\:focus\:mr-bin:focus{
    margin-right: -0.313rem;
  }

  .s1440\:focus\:mb-bin:focus{
    margin-bottom: -0.313rem;
  }

  .s1440\:focus\:ml-bin:focus{
    margin-left: -0.313rem;
  }

  .s1440\:focus\:-mt-0\.25:focus{
    margin-top: -0.0625rem;
  }

  .s1440\:focus\:-mr-0\.25:focus{
    margin-right: -0.0625rem;
  }

  .s1440\:focus\:-mb-0\.25:focus{
    margin-bottom: -0.0625rem;
  }

  .s1440\:focus\:-ml-0\.25:focus{
    margin-left: -0.0625rem;
  }

  .s1440\:focus\:mt-0\.25:focus{
    margin-top: 0.0625rem;
  }

  .s1440\:focus\:mr-0\.25:focus{
    margin-right: 0.0625rem;
  }

  .s1440\:focus\:mb-0\.25:focus{
    margin-bottom: 0.0625rem;
  }

  .s1440\:focus\:ml-0\.25:focus{
    margin-left: 0.0625rem;
  }

  .s1440\:focus\:mt-3\.125:focus{
    margin-top: 3.125rem;
  }

  .s1440\:focus\:mr-3\.125:focus{
    margin-right: 3.125rem;
  }

  .s1440\:focus\:mb-3\.125:focus{
    margin-bottom: 3.125rem;
  }

  .s1440\:focus\:ml-3\.125:focus{
    margin-left: 3.125rem;
  }

  .s1440\:focus\:mt-modal:focus{
    margin-top: 6.25rem;
  }

  .s1440\:focus\:mr-modal:focus{
    margin-right: 6.25rem;
  }

  .s1440\:focus\:mb-modal:focus{
    margin-bottom: 6.25rem;
  }

  .s1440\:focus\:ml-modal:focus{
    margin-left: 6.25rem;
  }

  .s1440\:focus\:mt-sidebar:focus{
    margin-top: 25rem;
  }

  .s1440\:focus\:mr-sidebar:focus{
    margin-right: 25rem;
  }

  .s1440\:focus\:mb-sidebar:focus{
    margin-bottom: 25rem;
  }

  .s1440\:focus\:ml-sidebar:focus{
    margin-left: 25rem;
  }

  .s1440\:active\:m-0:active{
    margin: 0;
  }

  .s1440\:active\:m-1:active{
    margin: 0.25rem;
  }

  .s1440\:active\:m-2:active{
    margin: 0.5rem;
  }

  .s1440\:active\:m-3:active{
    margin: 0.75rem;
  }

  .s1440\:active\:m-4:active{
    margin: 1rem;
  }

  .s1440\:active\:m-5:active{
    margin: 1.25rem;
  }

  .s1440\:active\:m-6:active{
    margin: 1.5rem;
  }

  .s1440\:active\:m-7:active{
    margin: 1.75rem;
  }

  .s1440\:active\:m-8:active{
    margin: 2rem;
  }

  .s1440\:active\:m-10:active{
    margin: 2.5rem;
  }

  .s1440\:active\:m-12:active{
    margin: 3rem;
  }

  .s1440\:active\:m-14:active{
    margin: 3.5rem;
  }

  .s1440\:active\:m-16:active{
    margin: 4rem;
  }

  .s1440\:active\:m-18:active{
    margin: 4.5rem;
  }

  .s1440\:active\:m-20:active{
    margin: 5rem;
  }

  .s1440\:active\:m-24:active{
    margin: 6rem;
  }

  .s1440\:active\:m-32:active{
    margin: 8rem;
  }

  .s1440\:active\:m-40:active{
    margin: 10rem;
  }

  .s1440\:active\:m-48:active{
    margin: 12rem;
  }

  .s1440\:active\:m-56:active{
    margin: 14rem;
  }

  .s1440\:active\:m-64:active{
    margin: 16rem;
  }

  .s1440\:active\:m-auto:active{
    margin: auto;
  }

  .s1440\:active\:m-px:active{
    margin: 1px;
  }

  .s1440\:active\:-m-1:active{
    margin: -0.25rem;
  }

  .s1440\:active\:-m-2:active{
    margin: -0.5rem;
  }

  .s1440\:active\:-m-3:active{
    margin: -0.75rem;
  }

  .s1440\:active\:-m-4:active{
    margin: -1rem;
  }

  .s1440\:active\:-m-5:active{
    margin: -1.25rem;
  }

  .s1440\:active\:-m-6:active{
    margin: -1.5rem;
  }

  .s1440\:active\:-m-8:active{
    margin: -2rem;
  }

  .s1440\:active\:-m-10:active{
    margin: -2.5rem;
  }

  .s1440\:active\:-m-12:active{
    margin: -3rem;
  }

  .s1440\:active\:-m-14:active{
    margin: -3.5rem;
  }

  .s1440\:active\:-m-16:active{
    margin: -4rem;
  }

  .s1440\:active\:-m-20:active{
    margin: -5rem;
  }

  .s1440\:active\:-m-24:active{
    margin: -6rem;
  }

  .s1440\:active\:-m-32:active{
    margin: -8rem;
  }

  .s1440\:active\:-m-40:active{
    margin: -10rem;
  }

  .s1440\:active\:-m-48:active{
    margin: -12rem;
  }

  .s1440\:active\:-m-56:active{
    margin: -14rem;
  }

  .s1440\:active\:-m-64:active{
    margin: -16rem;
  }

  .s1440\:active\:-m-px:active{
    margin: -1px;
  }

  .s1440\:active\:m-bin:active{
    margin: -0.313rem;
  }

  .s1440\:active\:-m-0\.25:active{
    margin: -0.0625rem;
  }

  .s1440\:active\:m-0\.25:active{
    margin: 0.0625rem;
  }

  .s1440\:active\:m-3\.125:active{
    margin: 3.125rem;
  }

  .s1440\:active\:m-modal:active{
    margin: 6.25rem;
  }

  .s1440\:active\:m-sidebar:active{
    margin: 25rem;
  }

  .s1440\:active\:my-0:active{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1440\:active\:mx-0:active{
    margin-left: 0;
    margin-right: 0;
  }

  .s1440\:active\:my-1:active{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1440\:active\:mx-1:active{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1440\:active\:my-2:active{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1440\:active\:mx-2:active{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1440\:active\:my-3:active{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1440\:active\:mx-3:active{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1440\:active\:my-4:active{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1440\:active\:mx-4:active{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1440\:active\:my-5:active{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1440\:active\:mx-5:active{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1440\:active\:my-6:active{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1440\:active\:mx-6:active{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1440\:active\:my-7:active{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1440\:active\:mx-7:active{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1440\:active\:my-8:active{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1440\:active\:mx-8:active{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1440\:active\:my-10:active{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1440\:active\:mx-10:active{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1440\:active\:my-12:active{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1440\:active\:mx-12:active{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1440\:active\:my-14:active{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1440\:active\:mx-14:active{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1440\:active\:my-16:active{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1440\:active\:mx-16:active{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1440\:active\:my-18:active{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1440\:active\:mx-18:active{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1440\:active\:my-20:active{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1440\:active\:mx-20:active{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1440\:active\:my-24:active{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1440\:active\:mx-24:active{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1440\:active\:my-32:active{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1440\:active\:mx-32:active{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1440\:active\:my-40:active{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1440\:active\:mx-40:active{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1440\:active\:my-48:active{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1440\:active\:mx-48:active{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1440\:active\:my-56:active{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1440\:active\:mx-56:active{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1440\:active\:my-64:active{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1440\:active\:mx-64:active{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1440\:active\:my-auto:active{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1440\:active\:mx-auto:active{
    margin-left: auto;
    margin-right: auto;
  }

  .s1440\:active\:my-px:active{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1440\:active\:mx-px:active{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1440\:active\:-my-1:active{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1440\:active\:-mx-1:active{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1440\:active\:-my-2:active{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1440\:active\:-mx-2:active{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1440\:active\:-my-3:active{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1440\:active\:-mx-3:active{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1440\:active\:-my-4:active{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1440\:active\:-mx-4:active{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1440\:active\:-my-5:active{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1440\:active\:-mx-5:active{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1440\:active\:-my-6:active{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1440\:active\:-mx-6:active{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1440\:active\:-my-8:active{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1440\:active\:-mx-8:active{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1440\:active\:-my-10:active{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1440\:active\:-mx-10:active{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1440\:active\:-my-12:active{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1440\:active\:-mx-12:active{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1440\:active\:-my-14:active{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1440\:active\:-mx-14:active{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1440\:active\:-my-16:active{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1440\:active\:-mx-16:active{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1440\:active\:-my-20:active{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1440\:active\:-mx-20:active{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1440\:active\:-my-24:active{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1440\:active\:-mx-24:active{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1440\:active\:-my-32:active{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1440\:active\:-mx-32:active{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1440\:active\:-my-40:active{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1440\:active\:-mx-40:active{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1440\:active\:-my-48:active{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1440\:active\:-mx-48:active{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1440\:active\:-my-56:active{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1440\:active\:-mx-56:active{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1440\:active\:-my-64:active{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1440\:active\:-mx-64:active{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1440\:active\:-my-px:active{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1440\:active\:-mx-px:active{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1440\:active\:my-bin:active{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1440\:active\:mx-bin:active{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1440\:active\:-my-0\.25:active{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1440\:active\:-mx-0\.25:active{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1440\:active\:my-0\.25:active{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1440\:active\:mx-0\.25:active{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1440\:active\:my-3\.125:active{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1440\:active\:mx-3\.125:active{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1440\:active\:my-modal:active{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1440\:active\:mx-modal:active{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1440\:active\:my-sidebar:active{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1440\:active\:mx-sidebar:active{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1440\:active\:mt-0:active{
    margin-top: 0;
  }

  .s1440\:active\:mr-0:active{
    margin-right: 0;
  }

  .s1440\:active\:mb-0:active{
    margin-bottom: 0;
  }

  .s1440\:active\:ml-0:active{
    margin-left: 0;
  }

  .s1440\:active\:mt-1:active{
    margin-top: 0.25rem;
  }

  .s1440\:active\:mr-1:active{
    margin-right: 0.25rem;
  }

  .s1440\:active\:mb-1:active{
    margin-bottom: 0.25rem;
  }

  .s1440\:active\:ml-1:active{
    margin-left: 0.25rem;
  }

  .s1440\:active\:mt-2:active{
    margin-top: 0.5rem;
  }

  .s1440\:active\:mr-2:active{
    margin-right: 0.5rem;
  }

  .s1440\:active\:mb-2:active{
    margin-bottom: 0.5rem;
  }

  .s1440\:active\:ml-2:active{
    margin-left: 0.5rem;
  }

  .s1440\:active\:mt-3:active{
    margin-top: 0.75rem;
  }

  .s1440\:active\:mr-3:active{
    margin-right: 0.75rem;
  }

  .s1440\:active\:mb-3:active{
    margin-bottom: 0.75rem;
  }

  .s1440\:active\:ml-3:active{
    margin-left: 0.75rem;
  }

  .s1440\:active\:mt-4:active{
    margin-top: 1rem;
  }

  .s1440\:active\:mr-4:active{
    margin-right: 1rem;
  }

  .s1440\:active\:mb-4:active{
    margin-bottom: 1rem;
  }

  .s1440\:active\:ml-4:active{
    margin-left: 1rem;
  }

  .s1440\:active\:mt-5:active{
    margin-top: 1.25rem;
  }

  .s1440\:active\:mr-5:active{
    margin-right: 1.25rem;
  }

  .s1440\:active\:mb-5:active{
    margin-bottom: 1.25rem;
  }

  .s1440\:active\:ml-5:active{
    margin-left: 1.25rem;
  }

  .s1440\:active\:mt-6:active{
    margin-top: 1.5rem;
  }

  .s1440\:active\:mr-6:active{
    margin-right: 1.5rem;
  }

  .s1440\:active\:mb-6:active{
    margin-bottom: 1.5rem;
  }

  .s1440\:active\:ml-6:active{
    margin-left: 1.5rem;
  }

  .s1440\:active\:mt-7:active{
    margin-top: 1.75rem;
  }

  .s1440\:active\:mr-7:active{
    margin-right: 1.75rem;
  }

  .s1440\:active\:mb-7:active{
    margin-bottom: 1.75rem;
  }

  .s1440\:active\:ml-7:active{
    margin-left: 1.75rem;
  }

  .s1440\:active\:mt-8:active{
    margin-top: 2rem;
  }

  .s1440\:active\:mr-8:active{
    margin-right: 2rem;
  }

  .s1440\:active\:mb-8:active{
    margin-bottom: 2rem;
  }

  .s1440\:active\:ml-8:active{
    margin-left: 2rem;
  }

  .s1440\:active\:mt-10:active{
    margin-top: 2.5rem;
  }

  .s1440\:active\:mr-10:active{
    margin-right: 2.5rem;
  }

  .s1440\:active\:mb-10:active{
    margin-bottom: 2.5rem;
  }

  .s1440\:active\:ml-10:active{
    margin-left: 2.5rem;
  }

  .s1440\:active\:mt-12:active{
    margin-top: 3rem;
  }

  .s1440\:active\:mr-12:active{
    margin-right: 3rem;
  }

  .s1440\:active\:mb-12:active{
    margin-bottom: 3rem;
  }

  .s1440\:active\:ml-12:active{
    margin-left: 3rem;
  }

  .s1440\:active\:mt-14:active{
    margin-top: 3.5rem;
  }

  .s1440\:active\:mr-14:active{
    margin-right: 3.5rem;
  }

  .s1440\:active\:mb-14:active{
    margin-bottom: 3.5rem;
  }

  .s1440\:active\:ml-14:active{
    margin-left: 3.5rem;
  }

  .s1440\:active\:mt-16:active{
    margin-top: 4rem;
  }

  .s1440\:active\:mr-16:active{
    margin-right: 4rem;
  }

  .s1440\:active\:mb-16:active{
    margin-bottom: 4rem;
  }

  .s1440\:active\:ml-16:active{
    margin-left: 4rem;
  }

  .s1440\:active\:mt-18:active{
    margin-top: 4.5rem;
  }

  .s1440\:active\:mr-18:active{
    margin-right: 4.5rem;
  }

  .s1440\:active\:mb-18:active{
    margin-bottom: 4.5rem;
  }

  .s1440\:active\:ml-18:active{
    margin-left: 4.5rem;
  }

  .s1440\:active\:mt-20:active{
    margin-top: 5rem;
  }

  .s1440\:active\:mr-20:active{
    margin-right: 5rem;
  }

  .s1440\:active\:mb-20:active{
    margin-bottom: 5rem;
  }

  .s1440\:active\:ml-20:active{
    margin-left: 5rem;
  }

  .s1440\:active\:mt-24:active{
    margin-top: 6rem;
  }

  .s1440\:active\:mr-24:active{
    margin-right: 6rem;
  }

  .s1440\:active\:mb-24:active{
    margin-bottom: 6rem;
  }

  .s1440\:active\:ml-24:active{
    margin-left: 6rem;
  }

  .s1440\:active\:mt-32:active{
    margin-top: 8rem;
  }

  .s1440\:active\:mr-32:active{
    margin-right: 8rem;
  }

  .s1440\:active\:mb-32:active{
    margin-bottom: 8rem;
  }

  .s1440\:active\:ml-32:active{
    margin-left: 8rem;
  }

  .s1440\:active\:mt-40:active{
    margin-top: 10rem;
  }

  .s1440\:active\:mr-40:active{
    margin-right: 10rem;
  }

  .s1440\:active\:mb-40:active{
    margin-bottom: 10rem;
  }

  .s1440\:active\:ml-40:active{
    margin-left: 10rem;
  }

  .s1440\:active\:mt-48:active{
    margin-top: 12rem;
  }

  .s1440\:active\:mr-48:active{
    margin-right: 12rem;
  }

  .s1440\:active\:mb-48:active{
    margin-bottom: 12rem;
  }

  .s1440\:active\:ml-48:active{
    margin-left: 12rem;
  }

  .s1440\:active\:mt-56:active{
    margin-top: 14rem;
  }

  .s1440\:active\:mr-56:active{
    margin-right: 14rem;
  }

  .s1440\:active\:mb-56:active{
    margin-bottom: 14rem;
  }

  .s1440\:active\:ml-56:active{
    margin-left: 14rem;
  }

  .s1440\:active\:mt-64:active{
    margin-top: 16rem;
  }

  .s1440\:active\:mr-64:active{
    margin-right: 16rem;
  }

  .s1440\:active\:mb-64:active{
    margin-bottom: 16rem;
  }

  .s1440\:active\:ml-64:active{
    margin-left: 16rem;
  }

  .s1440\:active\:mt-auto:active{
    margin-top: auto;
  }

  .s1440\:active\:mr-auto:active{
    margin-right: auto;
  }

  .s1440\:active\:mb-auto:active{
    margin-bottom: auto;
  }

  .s1440\:active\:ml-auto:active{
    margin-left: auto;
  }

  .s1440\:active\:mt-px:active{
    margin-top: 1px;
  }

  .s1440\:active\:mr-px:active{
    margin-right: 1px;
  }

  .s1440\:active\:mb-px:active{
    margin-bottom: 1px;
  }

  .s1440\:active\:ml-px:active{
    margin-left: 1px;
  }

  .s1440\:active\:-mt-1:active{
    margin-top: -0.25rem;
  }

  .s1440\:active\:-mr-1:active{
    margin-right: -0.25rem;
  }

  .s1440\:active\:-mb-1:active{
    margin-bottom: -0.25rem;
  }

  .s1440\:active\:-ml-1:active{
    margin-left: -0.25rem;
  }

  .s1440\:active\:-mt-2:active{
    margin-top: -0.5rem;
  }

  .s1440\:active\:-mr-2:active{
    margin-right: -0.5rem;
  }

  .s1440\:active\:-mb-2:active{
    margin-bottom: -0.5rem;
  }

  .s1440\:active\:-ml-2:active{
    margin-left: -0.5rem;
  }

  .s1440\:active\:-mt-3:active{
    margin-top: -0.75rem;
  }

  .s1440\:active\:-mr-3:active{
    margin-right: -0.75rem;
  }

  .s1440\:active\:-mb-3:active{
    margin-bottom: -0.75rem;
  }

  .s1440\:active\:-ml-3:active{
    margin-left: -0.75rem;
  }

  .s1440\:active\:-mt-4:active{
    margin-top: -1rem;
  }

  .s1440\:active\:-mr-4:active{
    margin-right: -1rem;
  }

  .s1440\:active\:-mb-4:active{
    margin-bottom: -1rem;
  }

  .s1440\:active\:-ml-4:active{
    margin-left: -1rem;
  }

  .s1440\:active\:-mt-5:active{
    margin-top: -1.25rem;
  }

  .s1440\:active\:-mr-5:active{
    margin-right: -1.25rem;
  }

  .s1440\:active\:-mb-5:active{
    margin-bottom: -1.25rem;
  }

  .s1440\:active\:-ml-5:active{
    margin-left: -1.25rem;
  }

  .s1440\:active\:-mt-6:active{
    margin-top: -1.5rem;
  }

  .s1440\:active\:-mr-6:active{
    margin-right: -1.5rem;
  }

  .s1440\:active\:-mb-6:active{
    margin-bottom: -1.5rem;
  }

  .s1440\:active\:-ml-6:active{
    margin-left: -1.5rem;
  }

  .s1440\:active\:-mt-8:active{
    margin-top: -2rem;
  }

  .s1440\:active\:-mr-8:active{
    margin-right: -2rem;
  }

  .s1440\:active\:-mb-8:active{
    margin-bottom: -2rem;
  }

  .s1440\:active\:-ml-8:active{
    margin-left: -2rem;
  }

  .s1440\:active\:-mt-10:active{
    margin-top: -2.5rem;
  }

  .s1440\:active\:-mr-10:active{
    margin-right: -2.5rem;
  }

  .s1440\:active\:-mb-10:active{
    margin-bottom: -2.5rem;
  }

  .s1440\:active\:-ml-10:active{
    margin-left: -2.5rem;
  }

  .s1440\:active\:-mt-12:active{
    margin-top: -3rem;
  }

  .s1440\:active\:-mr-12:active{
    margin-right: -3rem;
  }

  .s1440\:active\:-mb-12:active{
    margin-bottom: -3rem;
  }

  .s1440\:active\:-ml-12:active{
    margin-left: -3rem;
  }

  .s1440\:active\:-mt-14:active{
    margin-top: -3.5rem;
  }

  .s1440\:active\:-mr-14:active{
    margin-right: -3.5rem;
  }

  .s1440\:active\:-mb-14:active{
    margin-bottom: -3.5rem;
  }

  .s1440\:active\:-ml-14:active{
    margin-left: -3.5rem;
  }

  .s1440\:active\:-mt-16:active{
    margin-top: -4rem;
  }

  .s1440\:active\:-mr-16:active{
    margin-right: -4rem;
  }

  .s1440\:active\:-mb-16:active{
    margin-bottom: -4rem;
  }

  .s1440\:active\:-ml-16:active{
    margin-left: -4rem;
  }

  .s1440\:active\:-mt-20:active{
    margin-top: -5rem;
  }

  .s1440\:active\:-mr-20:active{
    margin-right: -5rem;
  }

  .s1440\:active\:-mb-20:active{
    margin-bottom: -5rem;
  }

  .s1440\:active\:-ml-20:active{
    margin-left: -5rem;
  }

  .s1440\:active\:-mt-24:active{
    margin-top: -6rem;
  }

  .s1440\:active\:-mr-24:active{
    margin-right: -6rem;
  }

  .s1440\:active\:-mb-24:active{
    margin-bottom: -6rem;
  }

  .s1440\:active\:-ml-24:active{
    margin-left: -6rem;
  }

  .s1440\:active\:-mt-32:active{
    margin-top: -8rem;
  }

  .s1440\:active\:-mr-32:active{
    margin-right: -8rem;
  }

  .s1440\:active\:-mb-32:active{
    margin-bottom: -8rem;
  }

  .s1440\:active\:-ml-32:active{
    margin-left: -8rem;
  }

  .s1440\:active\:-mt-40:active{
    margin-top: -10rem;
  }

  .s1440\:active\:-mr-40:active{
    margin-right: -10rem;
  }

  .s1440\:active\:-mb-40:active{
    margin-bottom: -10rem;
  }

  .s1440\:active\:-ml-40:active{
    margin-left: -10rem;
  }

  .s1440\:active\:-mt-48:active{
    margin-top: -12rem;
  }

  .s1440\:active\:-mr-48:active{
    margin-right: -12rem;
  }

  .s1440\:active\:-mb-48:active{
    margin-bottom: -12rem;
  }

  .s1440\:active\:-ml-48:active{
    margin-left: -12rem;
  }

  .s1440\:active\:-mt-56:active{
    margin-top: -14rem;
  }

  .s1440\:active\:-mr-56:active{
    margin-right: -14rem;
  }

  .s1440\:active\:-mb-56:active{
    margin-bottom: -14rem;
  }

  .s1440\:active\:-ml-56:active{
    margin-left: -14rem;
  }

  .s1440\:active\:-mt-64:active{
    margin-top: -16rem;
  }

  .s1440\:active\:-mr-64:active{
    margin-right: -16rem;
  }

  .s1440\:active\:-mb-64:active{
    margin-bottom: -16rem;
  }

  .s1440\:active\:-ml-64:active{
    margin-left: -16rem;
  }

  .s1440\:active\:-mt-px:active{
    margin-top: -1px;
  }

  .s1440\:active\:-mr-px:active{
    margin-right: -1px;
  }

  .s1440\:active\:-mb-px:active{
    margin-bottom: -1px;
  }

  .s1440\:active\:-ml-px:active{
    margin-left: -1px;
  }

  .s1440\:active\:mt-bin:active{
    margin-top: -0.313rem;
  }

  .s1440\:active\:mr-bin:active{
    margin-right: -0.313rem;
  }

  .s1440\:active\:mb-bin:active{
    margin-bottom: -0.313rem;
  }

  .s1440\:active\:ml-bin:active{
    margin-left: -0.313rem;
  }

  .s1440\:active\:-mt-0\.25:active{
    margin-top: -0.0625rem;
  }

  .s1440\:active\:-mr-0\.25:active{
    margin-right: -0.0625rem;
  }

  .s1440\:active\:-mb-0\.25:active{
    margin-bottom: -0.0625rem;
  }

  .s1440\:active\:-ml-0\.25:active{
    margin-left: -0.0625rem;
  }

  .s1440\:active\:mt-0\.25:active{
    margin-top: 0.0625rem;
  }

  .s1440\:active\:mr-0\.25:active{
    margin-right: 0.0625rem;
  }

  .s1440\:active\:mb-0\.25:active{
    margin-bottom: 0.0625rem;
  }

  .s1440\:active\:ml-0\.25:active{
    margin-left: 0.0625rem;
  }

  .s1440\:active\:mt-3\.125:active{
    margin-top: 3.125rem;
  }

  .s1440\:active\:mr-3\.125:active{
    margin-right: 3.125rem;
  }

  .s1440\:active\:mb-3\.125:active{
    margin-bottom: 3.125rem;
  }

  .s1440\:active\:ml-3\.125:active{
    margin-left: 3.125rem;
  }

  .s1440\:active\:mt-modal:active{
    margin-top: 6.25rem;
  }

  .s1440\:active\:mr-modal:active{
    margin-right: 6.25rem;
  }

  .s1440\:active\:mb-modal:active{
    margin-bottom: 6.25rem;
  }

  .s1440\:active\:ml-modal:active{
    margin-left: 6.25rem;
  }

  .s1440\:active\:mt-sidebar:active{
    margin-top: 25rem;
  }

  .s1440\:active\:mr-sidebar:active{
    margin-right: 25rem;
  }

  .s1440\:active\:mb-sidebar:active{
    margin-bottom: 25rem;
  }

  .s1440\:active\:ml-sidebar:active{
    margin-left: 25rem;
  }

  .s1440\:first\:m-0:first-child{
    margin: 0;
  }

  .s1440\:first\:m-1:first-child{
    margin: 0.25rem;
  }

  .s1440\:first\:m-2:first-child{
    margin: 0.5rem;
  }

  .s1440\:first\:m-3:first-child{
    margin: 0.75rem;
  }

  .s1440\:first\:m-4:first-child{
    margin: 1rem;
  }

  .s1440\:first\:m-5:first-child{
    margin: 1.25rem;
  }

  .s1440\:first\:m-6:first-child{
    margin: 1.5rem;
  }

  .s1440\:first\:m-7:first-child{
    margin: 1.75rem;
  }

  .s1440\:first\:m-8:first-child{
    margin: 2rem;
  }

  .s1440\:first\:m-10:first-child{
    margin: 2.5rem;
  }

  .s1440\:first\:m-12:first-child{
    margin: 3rem;
  }

  .s1440\:first\:m-14:first-child{
    margin: 3.5rem;
  }

  .s1440\:first\:m-16:first-child{
    margin: 4rem;
  }

  .s1440\:first\:m-18:first-child{
    margin: 4.5rem;
  }

  .s1440\:first\:m-20:first-child{
    margin: 5rem;
  }

  .s1440\:first\:m-24:first-child{
    margin: 6rem;
  }

  .s1440\:first\:m-32:first-child{
    margin: 8rem;
  }

  .s1440\:first\:m-40:first-child{
    margin: 10rem;
  }

  .s1440\:first\:m-48:first-child{
    margin: 12rem;
  }

  .s1440\:first\:m-56:first-child{
    margin: 14rem;
  }

  .s1440\:first\:m-64:first-child{
    margin: 16rem;
  }

  .s1440\:first\:m-auto:first-child{
    margin: auto;
  }

  .s1440\:first\:m-px:first-child{
    margin: 1px;
  }

  .s1440\:first\:-m-1:first-child{
    margin: -0.25rem;
  }

  .s1440\:first\:-m-2:first-child{
    margin: -0.5rem;
  }

  .s1440\:first\:-m-3:first-child{
    margin: -0.75rem;
  }

  .s1440\:first\:-m-4:first-child{
    margin: -1rem;
  }

  .s1440\:first\:-m-5:first-child{
    margin: -1.25rem;
  }

  .s1440\:first\:-m-6:first-child{
    margin: -1.5rem;
  }

  .s1440\:first\:-m-8:first-child{
    margin: -2rem;
  }

  .s1440\:first\:-m-10:first-child{
    margin: -2.5rem;
  }

  .s1440\:first\:-m-12:first-child{
    margin: -3rem;
  }

  .s1440\:first\:-m-14:first-child{
    margin: -3.5rem;
  }

  .s1440\:first\:-m-16:first-child{
    margin: -4rem;
  }

  .s1440\:first\:-m-20:first-child{
    margin: -5rem;
  }

  .s1440\:first\:-m-24:first-child{
    margin: -6rem;
  }

  .s1440\:first\:-m-32:first-child{
    margin: -8rem;
  }

  .s1440\:first\:-m-40:first-child{
    margin: -10rem;
  }

  .s1440\:first\:-m-48:first-child{
    margin: -12rem;
  }

  .s1440\:first\:-m-56:first-child{
    margin: -14rem;
  }

  .s1440\:first\:-m-64:first-child{
    margin: -16rem;
  }

  .s1440\:first\:-m-px:first-child{
    margin: -1px;
  }

  .s1440\:first\:m-bin:first-child{
    margin: -0.313rem;
  }

  .s1440\:first\:-m-0\.25:first-child{
    margin: -0.0625rem;
  }

  .s1440\:first\:m-0\.25:first-child{
    margin: 0.0625rem;
  }

  .s1440\:first\:m-3\.125:first-child{
    margin: 3.125rem;
  }

  .s1440\:first\:m-modal:first-child{
    margin: 6.25rem;
  }

  .s1440\:first\:m-sidebar:first-child{
    margin: 25rem;
  }

  .s1440\:first\:my-0:first-child{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1440\:first\:mx-0:first-child{
    margin-left: 0;
    margin-right: 0;
  }

  .s1440\:first\:my-1:first-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1440\:first\:mx-1:first-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1440\:first\:my-2:first-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1440\:first\:mx-2:first-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1440\:first\:my-3:first-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1440\:first\:mx-3:first-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1440\:first\:my-4:first-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1440\:first\:mx-4:first-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1440\:first\:my-5:first-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1440\:first\:mx-5:first-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1440\:first\:my-6:first-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1440\:first\:mx-6:first-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1440\:first\:my-7:first-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1440\:first\:mx-7:first-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1440\:first\:my-8:first-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1440\:first\:mx-8:first-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1440\:first\:my-10:first-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1440\:first\:mx-10:first-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1440\:first\:my-12:first-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1440\:first\:mx-12:first-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1440\:first\:my-14:first-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1440\:first\:mx-14:first-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1440\:first\:my-16:first-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1440\:first\:mx-16:first-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1440\:first\:my-18:first-child{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1440\:first\:mx-18:first-child{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1440\:first\:my-20:first-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1440\:first\:mx-20:first-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1440\:first\:my-24:first-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1440\:first\:mx-24:first-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1440\:first\:my-32:first-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1440\:first\:mx-32:first-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1440\:first\:my-40:first-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1440\:first\:mx-40:first-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1440\:first\:my-48:first-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1440\:first\:mx-48:first-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1440\:first\:my-56:first-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1440\:first\:mx-56:first-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1440\:first\:my-64:first-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1440\:first\:mx-64:first-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1440\:first\:my-auto:first-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1440\:first\:mx-auto:first-child{
    margin-left: auto;
    margin-right: auto;
  }

  .s1440\:first\:my-px:first-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1440\:first\:mx-px:first-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1440\:first\:-my-1:first-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1440\:first\:-mx-1:first-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1440\:first\:-my-2:first-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1440\:first\:-mx-2:first-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1440\:first\:-my-3:first-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1440\:first\:-mx-3:first-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1440\:first\:-my-4:first-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1440\:first\:-mx-4:first-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1440\:first\:-my-5:first-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1440\:first\:-mx-5:first-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1440\:first\:-my-6:first-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1440\:first\:-mx-6:first-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1440\:first\:-my-8:first-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1440\:first\:-mx-8:first-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1440\:first\:-my-10:first-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1440\:first\:-mx-10:first-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1440\:first\:-my-12:first-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1440\:first\:-mx-12:first-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1440\:first\:-my-14:first-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1440\:first\:-mx-14:first-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1440\:first\:-my-16:first-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1440\:first\:-mx-16:first-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1440\:first\:-my-20:first-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1440\:first\:-mx-20:first-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1440\:first\:-my-24:first-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1440\:first\:-mx-24:first-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1440\:first\:-my-32:first-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1440\:first\:-mx-32:first-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1440\:first\:-my-40:first-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1440\:first\:-mx-40:first-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1440\:first\:-my-48:first-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1440\:first\:-mx-48:first-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1440\:first\:-my-56:first-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1440\:first\:-mx-56:first-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1440\:first\:-my-64:first-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1440\:first\:-mx-64:first-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1440\:first\:-my-px:first-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1440\:first\:-mx-px:first-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1440\:first\:my-bin:first-child{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1440\:first\:mx-bin:first-child{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1440\:first\:-my-0\.25:first-child{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1440\:first\:-mx-0\.25:first-child{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1440\:first\:my-0\.25:first-child{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1440\:first\:mx-0\.25:first-child{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1440\:first\:my-3\.125:first-child{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1440\:first\:mx-3\.125:first-child{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1440\:first\:my-modal:first-child{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1440\:first\:mx-modal:first-child{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1440\:first\:my-sidebar:first-child{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1440\:first\:mx-sidebar:first-child{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1440\:first\:mt-0:first-child{
    margin-top: 0;
  }

  .s1440\:first\:mr-0:first-child{
    margin-right: 0;
  }

  .s1440\:first\:mb-0:first-child{
    margin-bottom: 0;
  }

  .s1440\:first\:ml-0:first-child{
    margin-left: 0;
  }

  .s1440\:first\:mt-1:first-child{
    margin-top: 0.25rem;
  }

  .s1440\:first\:mr-1:first-child{
    margin-right: 0.25rem;
  }

  .s1440\:first\:mb-1:first-child{
    margin-bottom: 0.25rem;
  }

  .s1440\:first\:ml-1:first-child{
    margin-left: 0.25rem;
  }

  .s1440\:first\:mt-2:first-child{
    margin-top: 0.5rem;
  }

  .s1440\:first\:mr-2:first-child{
    margin-right: 0.5rem;
  }

  .s1440\:first\:mb-2:first-child{
    margin-bottom: 0.5rem;
  }

  .s1440\:first\:ml-2:first-child{
    margin-left: 0.5rem;
  }

  .s1440\:first\:mt-3:first-child{
    margin-top: 0.75rem;
  }

  .s1440\:first\:mr-3:first-child{
    margin-right: 0.75rem;
  }

  .s1440\:first\:mb-3:first-child{
    margin-bottom: 0.75rem;
  }

  .s1440\:first\:ml-3:first-child{
    margin-left: 0.75rem;
  }

  .s1440\:first\:mt-4:first-child{
    margin-top: 1rem;
  }

  .s1440\:first\:mr-4:first-child{
    margin-right: 1rem;
  }

  .s1440\:first\:mb-4:first-child{
    margin-bottom: 1rem;
  }

  .s1440\:first\:ml-4:first-child{
    margin-left: 1rem;
  }

  .s1440\:first\:mt-5:first-child{
    margin-top: 1.25rem;
  }

  .s1440\:first\:mr-5:first-child{
    margin-right: 1.25rem;
  }

  .s1440\:first\:mb-5:first-child{
    margin-bottom: 1.25rem;
  }

  .s1440\:first\:ml-5:first-child{
    margin-left: 1.25rem;
  }

  .s1440\:first\:mt-6:first-child{
    margin-top: 1.5rem;
  }

  .s1440\:first\:mr-6:first-child{
    margin-right: 1.5rem;
  }

  .s1440\:first\:mb-6:first-child{
    margin-bottom: 1.5rem;
  }

  .s1440\:first\:ml-6:first-child{
    margin-left: 1.5rem;
  }

  .s1440\:first\:mt-7:first-child{
    margin-top: 1.75rem;
  }

  .s1440\:first\:mr-7:first-child{
    margin-right: 1.75rem;
  }

  .s1440\:first\:mb-7:first-child{
    margin-bottom: 1.75rem;
  }

  .s1440\:first\:ml-7:first-child{
    margin-left: 1.75rem;
  }

  .s1440\:first\:mt-8:first-child{
    margin-top: 2rem;
  }

  .s1440\:first\:mr-8:first-child{
    margin-right: 2rem;
  }

  .s1440\:first\:mb-8:first-child{
    margin-bottom: 2rem;
  }

  .s1440\:first\:ml-8:first-child{
    margin-left: 2rem;
  }

  .s1440\:first\:mt-10:first-child{
    margin-top: 2.5rem;
  }

  .s1440\:first\:mr-10:first-child{
    margin-right: 2.5rem;
  }

  .s1440\:first\:mb-10:first-child{
    margin-bottom: 2.5rem;
  }

  .s1440\:first\:ml-10:first-child{
    margin-left: 2.5rem;
  }

  .s1440\:first\:mt-12:first-child{
    margin-top: 3rem;
  }

  .s1440\:first\:mr-12:first-child{
    margin-right: 3rem;
  }

  .s1440\:first\:mb-12:first-child{
    margin-bottom: 3rem;
  }

  .s1440\:first\:ml-12:first-child{
    margin-left: 3rem;
  }

  .s1440\:first\:mt-14:first-child{
    margin-top: 3.5rem;
  }

  .s1440\:first\:mr-14:first-child{
    margin-right: 3.5rem;
  }

  .s1440\:first\:mb-14:first-child{
    margin-bottom: 3.5rem;
  }

  .s1440\:first\:ml-14:first-child{
    margin-left: 3.5rem;
  }

  .s1440\:first\:mt-16:first-child{
    margin-top: 4rem;
  }

  .s1440\:first\:mr-16:first-child{
    margin-right: 4rem;
  }

  .s1440\:first\:mb-16:first-child{
    margin-bottom: 4rem;
  }

  .s1440\:first\:ml-16:first-child{
    margin-left: 4rem;
  }

  .s1440\:first\:mt-18:first-child{
    margin-top: 4.5rem;
  }

  .s1440\:first\:mr-18:first-child{
    margin-right: 4.5rem;
  }

  .s1440\:first\:mb-18:first-child{
    margin-bottom: 4.5rem;
  }

  .s1440\:first\:ml-18:first-child{
    margin-left: 4.5rem;
  }

  .s1440\:first\:mt-20:first-child{
    margin-top: 5rem;
  }

  .s1440\:first\:mr-20:first-child{
    margin-right: 5rem;
  }

  .s1440\:first\:mb-20:first-child{
    margin-bottom: 5rem;
  }

  .s1440\:first\:ml-20:first-child{
    margin-left: 5rem;
  }

  .s1440\:first\:mt-24:first-child{
    margin-top: 6rem;
  }

  .s1440\:first\:mr-24:first-child{
    margin-right: 6rem;
  }

  .s1440\:first\:mb-24:first-child{
    margin-bottom: 6rem;
  }

  .s1440\:first\:ml-24:first-child{
    margin-left: 6rem;
  }

  .s1440\:first\:mt-32:first-child{
    margin-top: 8rem;
  }

  .s1440\:first\:mr-32:first-child{
    margin-right: 8rem;
  }

  .s1440\:first\:mb-32:first-child{
    margin-bottom: 8rem;
  }

  .s1440\:first\:ml-32:first-child{
    margin-left: 8rem;
  }

  .s1440\:first\:mt-40:first-child{
    margin-top: 10rem;
  }

  .s1440\:first\:mr-40:first-child{
    margin-right: 10rem;
  }

  .s1440\:first\:mb-40:first-child{
    margin-bottom: 10rem;
  }

  .s1440\:first\:ml-40:first-child{
    margin-left: 10rem;
  }

  .s1440\:first\:mt-48:first-child{
    margin-top: 12rem;
  }

  .s1440\:first\:mr-48:first-child{
    margin-right: 12rem;
  }

  .s1440\:first\:mb-48:first-child{
    margin-bottom: 12rem;
  }

  .s1440\:first\:ml-48:first-child{
    margin-left: 12rem;
  }

  .s1440\:first\:mt-56:first-child{
    margin-top: 14rem;
  }

  .s1440\:first\:mr-56:first-child{
    margin-right: 14rem;
  }

  .s1440\:first\:mb-56:first-child{
    margin-bottom: 14rem;
  }

  .s1440\:first\:ml-56:first-child{
    margin-left: 14rem;
  }

  .s1440\:first\:mt-64:first-child{
    margin-top: 16rem;
  }

  .s1440\:first\:mr-64:first-child{
    margin-right: 16rem;
  }

  .s1440\:first\:mb-64:first-child{
    margin-bottom: 16rem;
  }

  .s1440\:first\:ml-64:first-child{
    margin-left: 16rem;
  }

  .s1440\:first\:mt-auto:first-child{
    margin-top: auto;
  }

  .s1440\:first\:mr-auto:first-child{
    margin-right: auto;
  }

  .s1440\:first\:mb-auto:first-child{
    margin-bottom: auto;
  }

  .s1440\:first\:ml-auto:first-child{
    margin-left: auto;
  }

  .s1440\:first\:mt-px:first-child{
    margin-top: 1px;
  }

  .s1440\:first\:mr-px:first-child{
    margin-right: 1px;
  }

  .s1440\:first\:mb-px:first-child{
    margin-bottom: 1px;
  }

  .s1440\:first\:ml-px:first-child{
    margin-left: 1px;
  }

  .s1440\:first\:-mt-1:first-child{
    margin-top: -0.25rem;
  }

  .s1440\:first\:-mr-1:first-child{
    margin-right: -0.25rem;
  }

  .s1440\:first\:-mb-1:first-child{
    margin-bottom: -0.25rem;
  }

  .s1440\:first\:-ml-1:first-child{
    margin-left: -0.25rem;
  }

  .s1440\:first\:-mt-2:first-child{
    margin-top: -0.5rem;
  }

  .s1440\:first\:-mr-2:first-child{
    margin-right: -0.5rem;
  }

  .s1440\:first\:-mb-2:first-child{
    margin-bottom: -0.5rem;
  }

  .s1440\:first\:-ml-2:first-child{
    margin-left: -0.5rem;
  }

  .s1440\:first\:-mt-3:first-child{
    margin-top: -0.75rem;
  }

  .s1440\:first\:-mr-3:first-child{
    margin-right: -0.75rem;
  }

  .s1440\:first\:-mb-3:first-child{
    margin-bottom: -0.75rem;
  }

  .s1440\:first\:-ml-3:first-child{
    margin-left: -0.75rem;
  }

  .s1440\:first\:-mt-4:first-child{
    margin-top: -1rem;
  }

  .s1440\:first\:-mr-4:first-child{
    margin-right: -1rem;
  }

  .s1440\:first\:-mb-4:first-child{
    margin-bottom: -1rem;
  }

  .s1440\:first\:-ml-4:first-child{
    margin-left: -1rem;
  }

  .s1440\:first\:-mt-5:first-child{
    margin-top: -1.25rem;
  }

  .s1440\:first\:-mr-5:first-child{
    margin-right: -1.25rem;
  }

  .s1440\:first\:-mb-5:first-child{
    margin-bottom: -1.25rem;
  }

  .s1440\:first\:-ml-5:first-child{
    margin-left: -1.25rem;
  }

  .s1440\:first\:-mt-6:first-child{
    margin-top: -1.5rem;
  }

  .s1440\:first\:-mr-6:first-child{
    margin-right: -1.5rem;
  }

  .s1440\:first\:-mb-6:first-child{
    margin-bottom: -1.5rem;
  }

  .s1440\:first\:-ml-6:first-child{
    margin-left: -1.5rem;
  }

  .s1440\:first\:-mt-8:first-child{
    margin-top: -2rem;
  }

  .s1440\:first\:-mr-8:first-child{
    margin-right: -2rem;
  }

  .s1440\:first\:-mb-8:first-child{
    margin-bottom: -2rem;
  }

  .s1440\:first\:-ml-8:first-child{
    margin-left: -2rem;
  }

  .s1440\:first\:-mt-10:first-child{
    margin-top: -2.5rem;
  }

  .s1440\:first\:-mr-10:first-child{
    margin-right: -2.5rem;
  }

  .s1440\:first\:-mb-10:first-child{
    margin-bottom: -2.5rem;
  }

  .s1440\:first\:-ml-10:first-child{
    margin-left: -2.5rem;
  }

  .s1440\:first\:-mt-12:first-child{
    margin-top: -3rem;
  }

  .s1440\:first\:-mr-12:first-child{
    margin-right: -3rem;
  }

  .s1440\:first\:-mb-12:first-child{
    margin-bottom: -3rem;
  }

  .s1440\:first\:-ml-12:first-child{
    margin-left: -3rem;
  }

  .s1440\:first\:-mt-14:first-child{
    margin-top: -3.5rem;
  }

  .s1440\:first\:-mr-14:first-child{
    margin-right: -3.5rem;
  }

  .s1440\:first\:-mb-14:first-child{
    margin-bottom: -3.5rem;
  }

  .s1440\:first\:-ml-14:first-child{
    margin-left: -3.5rem;
  }

  .s1440\:first\:-mt-16:first-child{
    margin-top: -4rem;
  }

  .s1440\:first\:-mr-16:first-child{
    margin-right: -4rem;
  }

  .s1440\:first\:-mb-16:first-child{
    margin-bottom: -4rem;
  }

  .s1440\:first\:-ml-16:first-child{
    margin-left: -4rem;
  }

  .s1440\:first\:-mt-20:first-child{
    margin-top: -5rem;
  }

  .s1440\:first\:-mr-20:first-child{
    margin-right: -5rem;
  }

  .s1440\:first\:-mb-20:first-child{
    margin-bottom: -5rem;
  }

  .s1440\:first\:-ml-20:first-child{
    margin-left: -5rem;
  }

  .s1440\:first\:-mt-24:first-child{
    margin-top: -6rem;
  }

  .s1440\:first\:-mr-24:first-child{
    margin-right: -6rem;
  }

  .s1440\:first\:-mb-24:first-child{
    margin-bottom: -6rem;
  }

  .s1440\:first\:-ml-24:first-child{
    margin-left: -6rem;
  }

  .s1440\:first\:-mt-32:first-child{
    margin-top: -8rem;
  }

  .s1440\:first\:-mr-32:first-child{
    margin-right: -8rem;
  }

  .s1440\:first\:-mb-32:first-child{
    margin-bottom: -8rem;
  }

  .s1440\:first\:-ml-32:first-child{
    margin-left: -8rem;
  }

  .s1440\:first\:-mt-40:first-child{
    margin-top: -10rem;
  }

  .s1440\:first\:-mr-40:first-child{
    margin-right: -10rem;
  }

  .s1440\:first\:-mb-40:first-child{
    margin-bottom: -10rem;
  }

  .s1440\:first\:-ml-40:first-child{
    margin-left: -10rem;
  }

  .s1440\:first\:-mt-48:first-child{
    margin-top: -12rem;
  }

  .s1440\:first\:-mr-48:first-child{
    margin-right: -12rem;
  }

  .s1440\:first\:-mb-48:first-child{
    margin-bottom: -12rem;
  }

  .s1440\:first\:-ml-48:first-child{
    margin-left: -12rem;
  }

  .s1440\:first\:-mt-56:first-child{
    margin-top: -14rem;
  }

  .s1440\:first\:-mr-56:first-child{
    margin-right: -14rem;
  }

  .s1440\:first\:-mb-56:first-child{
    margin-bottom: -14rem;
  }

  .s1440\:first\:-ml-56:first-child{
    margin-left: -14rem;
  }

  .s1440\:first\:-mt-64:first-child{
    margin-top: -16rem;
  }

  .s1440\:first\:-mr-64:first-child{
    margin-right: -16rem;
  }

  .s1440\:first\:-mb-64:first-child{
    margin-bottom: -16rem;
  }

  .s1440\:first\:-ml-64:first-child{
    margin-left: -16rem;
  }

  .s1440\:first\:-mt-px:first-child{
    margin-top: -1px;
  }

  .s1440\:first\:-mr-px:first-child{
    margin-right: -1px;
  }

  .s1440\:first\:-mb-px:first-child{
    margin-bottom: -1px;
  }

  .s1440\:first\:-ml-px:first-child{
    margin-left: -1px;
  }

  .s1440\:first\:mt-bin:first-child{
    margin-top: -0.313rem;
  }

  .s1440\:first\:mr-bin:first-child{
    margin-right: -0.313rem;
  }

  .s1440\:first\:mb-bin:first-child{
    margin-bottom: -0.313rem;
  }

  .s1440\:first\:ml-bin:first-child{
    margin-left: -0.313rem;
  }

  .s1440\:first\:-mt-0\.25:first-child{
    margin-top: -0.0625rem;
  }

  .s1440\:first\:-mr-0\.25:first-child{
    margin-right: -0.0625rem;
  }

  .s1440\:first\:-mb-0\.25:first-child{
    margin-bottom: -0.0625rem;
  }

  .s1440\:first\:-ml-0\.25:first-child{
    margin-left: -0.0625rem;
  }

  .s1440\:first\:mt-0\.25:first-child{
    margin-top: 0.0625rem;
  }

  .s1440\:first\:mr-0\.25:first-child{
    margin-right: 0.0625rem;
  }

  .s1440\:first\:mb-0\.25:first-child{
    margin-bottom: 0.0625rem;
  }

  .s1440\:first\:ml-0\.25:first-child{
    margin-left: 0.0625rem;
  }

  .s1440\:first\:mt-3\.125:first-child{
    margin-top: 3.125rem;
  }

  .s1440\:first\:mr-3\.125:first-child{
    margin-right: 3.125rem;
  }

  .s1440\:first\:mb-3\.125:first-child{
    margin-bottom: 3.125rem;
  }

  .s1440\:first\:ml-3\.125:first-child{
    margin-left: 3.125rem;
  }

  .s1440\:first\:mt-modal:first-child{
    margin-top: 6.25rem;
  }

  .s1440\:first\:mr-modal:first-child{
    margin-right: 6.25rem;
  }

  .s1440\:first\:mb-modal:first-child{
    margin-bottom: 6.25rem;
  }

  .s1440\:first\:ml-modal:first-child{
    margin-left: 6.25rem;
  }

  .s1440\:first\:mt-sidebar:first-child{
    margin-top: 25rem;
  }

  .s1440\:first\:mr-sidebar:first-child{
    margin-right: 25rem;
  }

  .s1440\:first\:mb-sidebar:first-child{
    margin-bottom: 25rem;
  }

  .s1440\:first\:ml-sidebar:first-child{
    margin-left: 25rem;
  }

  .s1440\:last\:m-0:last-child{
    margin: 0;
  }

  .s1440\:last\:m-1:last-child{
    margin: 0.25rem;
  }

  .s1440\:last\:m-2:last-child{
    margin: 0.5rem;
  }

  .s1440\:last\:m-3:last-child{
    margin: 0.75rem;
  }

  .s1440\:last\:m-4:last-child{
    margin: 1rem;
  }

  .s1440\:last\:m-5:last-child{
    margin: 1.25rem;
  }

  .s1440\:last\:m-6:last-child{
    margin: 1.5rem;
  }

  .s1440\:last\:m-7:last-child{
    margin: 1.75rem;
  }

  .s1440\:last\:m-8:last-child{
    margin: 2rem;
  }

  .s1440\:last\:m-10:last-child{
    margin: 2.5rem;
  }

  .s1440\:last\:m-12:last-child{
    margin: 3rem;
  }

  .s1440\:last\:m-14:last-child{
    margin: 3.5rem;
  }

  .s1440\:last\:m-16:last-child{
    margin: 4rem;
  }

  .s1440\:last\:m-18:last-child{
    margin: 4.5rem;
  }

  .s1440\:last\:m-20:last-child{
    margin: 5rem;
  }

  .s1440\:last\:m-24:last-child{
    margin: 6rem;
  }

  .s1440\:last\:m-32:last-child{
    margin: 8rem;
  }

  .s1440\:last\:m-40:last-child{
    margin: 10rem;
  }

  .s1440\:last\:m-48:last-child{
    margin: 12rem;
  }

  .s1440\:last\:m-56:last-child{
    margin: 14rem;
  }

  .s1440\:last\:m-64:last-child{
    margin: 16rem;
  }

  .s1440\:last\:m-auto:last-child{
    margin: auto;
  }

  .s1440\:last\:m-px:last-child{
    margin: 1px;
  }

  .s1440\:last\:-m-1:last-child{
    margin: -0.25rem;
  }

  .s1440\:last\:-m-2:last-child{
    margin: -0.5rem;
  }

  .s1440\:last\:-m-3:last-child{
    margin: -0.75rem;
  }

  .s1440\:last\:-m-4:last-child{
    margin: -1rem;
  }

  .s1440\:last\:-m-5:last-child{
    margin: -1.25rem;
  }

  .s1440\:last\:-m-6:last-child{
    margin: -1.5rem;
  }

  .s1440\:last\:-m-8:last-child{
    margin: -2rem;
  }

  .s1440\:last\:-m-10:last-child{
    margin: -2.5rem;
  }

  .s1440\:last\:-m-12:last-child{
    margin: -3rem;
  }

  .s1440\:last\:-m-14:last-child{
    margin: -3.5rem;
  }

  .s1440\:last\:-m-16:last-child{
    margin: -4rem;
  }

  .s1440\:last\:-m-20:last-child{
    margin: -5rem;
  }

  .s1440\:last\:-m-24:last-child{
    margin: -6rem;
  }

  .s1440\:last\:-m-32:last-child{
    margin: -8rem;
  }

  .s1440\:last\:-m-40:last-child{
    margin: -10rem;
  }

  .s1440\:last\:-m-48:last-child{
    margin: -12rem;
  }

  .s1440\:last\:-m-56:last-child{
    margin: -14rem;
  }

  .s1440\:last\:-m-64:last-child{
    margin: -16rem;
  }

  .s1440\:last\:-m-px:last-child{
    margin: -1px;
  }

  .s1440\:last\:m-bin:last-child{
    margin: -0.313rem;
  }

  .s1440\:last\:-m-0\.25:last-child{
    margin: -0.0625rem;
  }

  .s1440\:last\:m-0\.25:last-child{
    margin: 0.0625rem;
  }

  .s1440\:last\:m-3\.125:last-child{
    margin: 3.125rem;
  }

  .s1440\:last\:m-modal:last-child{
    margin: 6.25rem;
  }

  .s1440\:last\:m-sidebar:last-child{
    margin: 25rem;
  }

  .s1440\:last\:my-0:last-child{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1440\:last\:mx-0:last-child{
    margin-left: 0;
    margin-right: 0;
  }

  .s1440\:last\:my-1:last-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1440\:last\:mx-1:last-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1440\:last\:my-2:last-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1440\:last\:mx-2:last-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1440\:last\:my-3:last-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1440\:last\:mx-3:last-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1440\:last\:my-4:last-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1440\:last\:mx-4:last-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1440\:last\:my-5:last-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1440\:last\:mx-5:last-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1440\:last\:my-6:last-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1440\:last\:mx-6:last-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1440\:last\:my-7:last-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1440\:last\:mx-7:last-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1440\:last\:my-8:last-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1440\:last\:mx-8:last-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1440\:last\:my-10:last-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1440\:last\:mx-10:last-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1440\:last\:my-12:last-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1440\:last\:mx-12:last-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1440\:last\:my-14:last-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1440\:last\:mx-14:last-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1440\:last\:my-16:last-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1440\:last\:mx-16:last-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1440\:last\:my-18:last-child{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1440\:last\:mx-18:last-child{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1440\:last\:my-20:last-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1440\:last\:mx-20:last-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1440\:last\:my-24:last-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1440\:last\:mx-24:last-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1440\:last\:my-32:last-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1440\:last\:mx-32:last-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1440\:last\:my-40:last-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1440\:last\:mx-40:last-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1440\:last\:my-48:last-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1440\:last\:mx-48:last-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1440\:last\:my-56:last-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1440\:last\:mx-56:last-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1440\:last\:my-64:last-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1440\:last\:mx-64:last-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1440\:last\:my-auto:last-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1440\:last\:mx-auto:last-child{
    margin-left: auto;
    margin-right: auto;
  }

  .s1440\:last\:my-px:last-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1440\:last\:mx-px:last-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1440\:last\:-my-1:last-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1440\:last\:-mx-1:last-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1440\:last\:-my-2:last-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1440\:last\:-mx-2:last-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1440\:last\:-my-3:last-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1440\:last\:-mx-3:last-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1440\:last\:-my-4:last-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1440\:last\:-mx-4:last-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1440\:last\:-my-5:last-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1440\:last\:-mx-5:last-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1440\:last\:-my-6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1440\:last\:-mx-6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1440\:last\:-my-8:last-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1440\:last\:-mx-8:last-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1440\:last\:-my-10:last-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1440\:last\:-mx-10:last-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1440\:last\:-my-12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1440\:last\:-mx-12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1440\:last\:-my-14:last-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1440\:last\:-mx-14:last-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1440\:last\:-my-16:last-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1440\:last\:-mx-16:last-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1440\:last\:-my-20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1440\:last\:-mx-20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1440\:last\:-my-24:last-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1440\:last\:-mx-24:last-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1440\:last\:-my-32:last-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1440\:last\:-mx-32:last-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1440\:last\:-my-40:last-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1440\:last\:-mx-40:last-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1440\:last\:-my-48:last-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1440\:last\:-mx-48:last-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1440\:last\:-my-56:last-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1440\:last\:-mx-56:last-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1440\:last\:-my-64:last-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1440\:last\:-mx-64:last-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1440\:last\:-my-px:last-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1440\:last\:-mx-px:last-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1440\:last\:my-bin:last-child{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1440\:last\:mx-bin:last-child{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1440\:last\:-my-0\.25:last-child{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1440\:last\:-mx-0\.25:last-child{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1440\:last\:my-0\.25:last-child{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1440\:last\:mx-0\.25:last-child{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1440\:last\:my-3\.125:last-child{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1440\:last\:mx-3\.125:last-child{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1440\:last\:my-modal:last-child{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1440\:last\:mx-modal:last-child{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1440\:last\:my-sidebar:last-child{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1440\:last\:mx-sidebar:last-child{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1440\:last\:mt-0:last-child{
    margin-top: 0;
  }

  .s1440\:last\:mr-0:last-child{
    margin-right: 0;
  }

  .s1440\:last\:mb-0:last-child{
    margin-bottom: 0;
  }

  .s1440\:last\:ml-0:last-child{
    margin-left: 0;
  }

  .s1440\:last\:mt-1:last-child{
    margin-top: 0.25rem;
  }

  .s1440\:last\:mr-1:last-child{
    margin-right: 0.25rem;
  }

  .s1440\:last\:mb-1:last-child{
    margin-bottom: 0.25rem;
  }

  .s1440\:last\:ml-1:last-child{
    margin-left: 0.25rem;
  }

  .s1440\:last\:mt-2:last-child{
    margin-top: 0.5rem;
  }

  .s1440\:last\:mr-2:last-child{
    margin-right: 0.5rem;
  }

  .s1440\:last\:mb-2:last-child{
    margin-bottom: 0.5rem;
  }

  .s1440\:last\:ml-2:last-child{
    margin-left: 0.5rem;
  }

  .s1440\:last\:mt-3:last-child{
    margin-top: 0.75rem;
  }

  .s1440\:last\:mr-3:last-child{
    margin-right: 0.75rem;
  }

  .s1440\:last\:mb-3:last-child{
    margin-bottom: 0.75rem;
  }

  .s1440\:last\:ml-3:last-child{
    margin-left: 0.75rem;
  }

  .s1440\:last\:mt-4:last-child{
    margin-top: 1rem;
  }

  .s1440\:last\:mr-4:last-child{
    margin-right: 1rem;
  }

  .s1440\:last\:mb-4:last-child{
    margin-bottom: 1rem;
  }

  .s1440\:last\:ml-4:last-child{
    margin-left: 1rem;
  }

  .s1440\:last\:mt-5:last-child{
    margin-top: 1.25rem;
  }

  .s1440\:last\:mr-5:last-child{
    margin-right: 1.25rem;
  }

  .s1440\:last\:mb-5:last-child{
    margin-bottom: 1.25rem;
  }

  .s1440\:last\:ml-5:last-child{
    margin-left: 1.25rem;
  }

  .s1440\:last\:mt-6:last-child{
    margin-top: 1.5rem;
  }

  .s1440\:last\:mr-6:last-child{
    margin-right: 1.5rem;
  }

  .s1440\:last\:mb-6:last-child{
    margin-bottom: 1.5rem;
  }

  .s1440\:last\:ml-6:last-child{
    margin-left: 1.5rem;
  }

  .s1440\:last\:mt-7:last-child{
    margin-top: 1.75rem;
  }

  .s1440\:last\:mr-7:last-child{
    margin-right: 1.75rem;
  }

  .s1440\:last\:mb-7:last-child{
    margin-bottom: 1.75rem;
  }

  .s1440\:last\:ml-7:last-child{
    margin-left: 1.75rem;
  }

  .s1440\:last\:mt-8:last-child{
    margin-top: 2rem;
  }

  .s1440\:last\:mr-8:last-child{
    margin-right: 2rem;
  }

  .s1440\:last\:mb-8:last-child{
    margin-bottom: 2rem;
  }

  .s1440\:last\:ml-8:last-child{
    margin-left: 2rem;
  }

  .s1440\:last\:mt-10:last-child{
    margin-top: 2.5rem;
  }

  .s1440\:last\:mr-10:last-child{
    margin-right: 2.5rem;
  }

  .s1440\:last\:mb-10:last-child{
    margin-bottom: 2.5rem;
  }

  .s1440\:last\:ml-10:last-child{
    margin-left: 2.5rem;
  }

  .s1440\:last\:mt-12:last-child{
    margin-top: 3rem;
  }

  .s1440\:last\:mr-12:last-child{
    margin-right: 3rem;
  }

  .s1440\:last\:mb-12:last-child{
    margin-bottom: 3rem;
  }

  .s1440\:last\:ml-12:last-child{
    margin-left: 3rem;
  }

  .s1440\:last\:mt-14:last-child{
    margin-top: 3.5rem;
  }

  .s1440\:last\:mr-14:last-child{
    margin-right: 3.5rem;
  }

  .s1440\:last\:mb-14:last-child{
    margin-bottom: 3.5rem;
  }

  .s1440\:last\:ml-14:last-child{
    margin-left: 3.5rem;
  }

  .s1440\:last\:mt-16:last-child{
    margin-top: 4rem;
  }

  .s1440\:last\:mr-16:last-child{
    margin-right: 4rem;
  }

  .s1440\:last\:mb-16:last-child{
    margin-bottom: 4rem;
  }

  .s1440\:last\:ml-16:last-child{
    margin-left: 4rem;
  }

  .s1440\:last\:mt-18:last-child{
    margin-top: 4.5rem;
  }

  .s1440\:last\:mr-18:last-child{
    margin-right: 4.5rem;
  }

  .s1440\:last\:mb-18:last-child{
    margin-bottom: 4.5rem;
  }

  .s1440\:last\:ml-18:last-child{
    margin-left: 4.5rem;
  }

  .s1440\:last\:mt-20:last-child{
    margin-top: 5rem;
  }

  .s1440\:last\:mr-20:last-child{
    margin-right: 5rem;
  }

  .s1440\:last\:mb-20:last-child{
    margin-bottom: 5rem;
  }

  .s1440\:last\:ml-20:last-child{
    margin-left: 5rem;
  }

  .s1440\:last\:mt-24:last-child{
    margin-top: 6rem;
  }

  .s1440\:last\:mr-24:last-child{
    margin-right: 6rem;
  }

  .s1440\:last\:mb-24:last-child{
    margin-bottom: 6rem;
  }

  .s1440\:last\:ml-24:last-child{
    margin-left: 6rem;
  }

  .s1440\:last\:mt-32:last-child{
    margin-top: 8rem;
  }

  .s1440\:last\:mr-32:last-child{
    margin-right: 8rem;
  }

  .s1440\:last\:mb-32:last-child{
    margin-bottom: 8rem;
  }

  .s1440\:last\:ml-32:last-child{
    margin-left: 8rem;
  }

  .s1440\:last\:mt-40:last-child{
    margin-top: 10rem;
  }

  .s1440\:last\:mr-40:last-child{
    margin-right: 10rem;
  }

  .s1440\:last\:mb-40:last-child{
    margin-bottom: 10rem;
  }

  .s1440\:last\:ml-40:last-child{
    margin-left: 10rem;
  }

  .s1440\:last\:mt-48:last-child{
    margin-top: 12rem;
  }

  .s1440\:last\:mr-48:last-child{
    margin-right: 12rem;
  }

  .s1440\:last\:mb-48:last-child{
    margin-bottom: 12rem;
  }

  .s1440\:last\:ml-48:last-child{
    margin-left: 12rem;
  }

  .s1440\:last\:mt-56:last-child{
    margin-top: 14rem;
  }

  .s1440\:last\:mr-56:last-child{
    margin-right: 14rem;
  }

  .s1440\:last\:mb-56:last-child{
    margin-bottom: 14rem;
  }

  .s1440\:last\:ml-56:last-child{
    margin-left: 14rem;
  }

  .s1440\:last\:mt-64:last-child{
    margin-top: 16rem;
  }

  .s1440\:last\:mr-64:last-child{
    margin-right: 16rem;
  }

  .s1440\:last\:mb-64:last-child{
    margin-bottom: 16rem;
  }

  .s1440\:last\:ml-64:last-child{
    margin-left: 16rem;
  }

  .s1440\:last\:mt-auto:last-child{
    margin-top: auto;
  }

  .s1440\:last\:mr-auto:last-child{
    margin-right: auto;
  }

  .s1440\:last\:mb-auto:last-child{
    margin-bottom: auto;
  }

  .s1440\:last\:ml-auto:last-child{
    margin-left: auto;
  }

  .s1440\:last\:mt-px:last-child{
    margin-top: 1px;
  }

  .s1440\:last\:mr-px:last-child{
    margin-right: 1px;
  }

  .s1440\:last\:mb-px:last-child{
    margin-bottom: 1px;
  }

  .s1440\:last\:ml-px:last-child{
    margin-left: 1px;
  }

  .s1440\:last\:-mt-1:last-child{
    margin-top: -0.25rem;
  }

  .s1440\:last\:-mr-1:last-child{
    margin-right: -0.25rem;
  }

  .s1440\:last\:-mb-1:last-child{
    margin-bottom: -0.25rem;
  }

  .s1440\:last\:-ml-1:last-child{
    margin-left: -0.25rem;
  }

  .s1440\:last\:-mt-2:last-child{
    margin-top: -0.5rem;
  }

  .s1440\:last\:-mr-2:last-child{
    margin-right: -0.5rem;
  }

  .s1440\:last\:-mb-2:last-child{
    margin-bottom: -0.5rem;
  }

  .s1440\:last\:-ml-2:last-child{
    margin-left: -0.5rem;
  }

  .s1440\:last\:-mt-3:last-child{
    margin-top: -0.75rem;
  }

  .s1440\:last\:-mr-3:last-child{
    margin-right: -0.75rem;
  }

  .s1440\:last\:-mb-3:last-child{
    margin-bottom: -0.75rem;
  }

  .s1440\:last\:-ml-3:last-child{
    margin-left: -0.75rem;
  }

  .s1440\:last\:-mt-4:last-child{
    margin-top: -1rem;
  }

  .s1440\:last\:-mr-4:last-child{
    margin-right: -1rem;
  }

  .s1440\:last\:-mb-4:last-child{
    margin-bottom: -1rem;
  }

  .s1440\:last\:-ml-4:last-child{
    margin-left: -1rem;
  }

  .s1440\:last\:-mt-5:last-child{
    margin-top: -1.25rem;
  }

  .s1440\:last\:-mr-5:last-child{
    margin-right: -1.25rem;
  }

  .s1440\:last\:-mb-5:last-child{
    margin-bottom: -1.25rem;
  }

  .s1440\:last\:-ml-5:last-child{
    margin-left: -1.25rem;
  }

  .s1440\:last\:-mt-6:last-child{
    margin-top: -1.5rem;
  }

  .s1440\:last\:-mr-6:last-child{
    margin-right: -1.5rem;
  }

  .s1440\:last\:-mb-6:last-child{
    margin-bottom: -1.5rem;
  }

  .s1440\:last\:-ml-6:last-child{
    margin-left: -1.5rem;
  }

  .s1440\:last\:-mt-8:last-child{
    margin-top: -2rem;
  }

  .s1440\:last\:-mr-8:last-child{
    margin-right: -2rem;
  }

  .s1440\:last\:-mb-8:last-child{
    margin-bottom: -2rem;
  }

  .s1440\:last\:-ml-8:last-child{
    margin-left: -2rem;
  }

  .s1440\:last\:-mt-10:last-child{
    margin-top: -2.5rem;
  }

  .s1440\:last\:-mr-10:last-child{
    margin-right: -2.5rem;
  }

  .s1440\:last\:-mb-10:last-child{
    margin-bottom: -2.5rem;
  }

  .s1440\:last\:-ml-10:last-child{
    margin-left: -2.5rem;
  }

  .s1440\:last\:-mt-12:last-child{
    margin-top: -3rem;
  }

  .s1440\:last\:-mr-12:last-child{
    margin-right: -3rem;
  }

  .s1440\:last\:-mb-12:last-child{
    margin-bottom: -3rem;
  }

  .s1440\:last\:-ml-12:last-child{
    margin-left: -3rem;
  }

  .s1440\:last\:-mt-14:last-child{
    margin-top: -3.5rem;
  }

  .s1440\:last\:-mr-14:last-child{
    margin-right: -3.5rem;
  }

  .s1440\:last\:-mb-14:last-child{
    margin-bottom: -3.5rem;
  }

  .s1440\:last\:-ml-14:last-child{
    margin-left: -3.5rem;
  }

  .s1440\:last\:-mt-16:last-child{
    margin-top: -4rem;
  }

  .s1440\:last\:-mr-16:last-child{
    margin-right: -4rem;
  }

  .s1440\:last\:-mb-16:last-child{
    margin-bottom: -4rem;
  }

  .s1440\:last\:-ml-16:last-child{
    margin-left: -4rem;
  }

  .s1440\:last\:-mt-20:last-child{
    margin-top: -5rem;
  }

  .s1440\:last\:-mr-20:last-child{
    margin-right: -5rem;
  }

  .s1440\:last\:-mb-20:last-child{
    margin-bottom: -5rem;
  }

  .s1440\:last\:-ml-20:last-child{
    margin-left: -5rem;
  }

  .s1440\:last\:-mt-24:last-child{
    margin-top: -6rem;
  }

  .s1440\:last\:-mr-24:last-child{
    margin-right: -6rem;
  }

  .s1440\:last\:-mb-24:last-child{
    margin-bottom: -6rem;
  }

  .s1440\:last\:-ml-24:last-child{
    margin-left: -6rem;
  }

  .s1440\:last\:-mt-32:last-child{
    margin-top: -8rem;
  }

  .s1440\:last\:-mr-32:last-child{
    margin-right: -8rem;
  }

  .s1440\:last\:-mb-32:last-child{
    margin-bottom: -8rem;
  }

  .s1440\:last\:-ml-32:last-child{
    margin-left: -8rem;
  }

  .s1440\:last\:-mt-40:last-child{
    margin-top: -10rem;
  }

  .s1440\:last\:-mr-40:last-child{
    margin-right: -10rem;
  }

  .s1440\:last\:-mb-40:last-child{
    margin-bottom: -10rem;
  }

  .s1440\:last\:-ml-40:last-child{
    margin-left: -10rem;
  }

  .s1440\:last\:-mt-48:last-child{
    margin-top: -12rem;
  }

  .s1440\:last\:-mr-48:last-child{
    margin-right: -12rem;
  }

  .s1440\:last\:-mb-48:last-child{
    margin-bottom: -12rem;
  }

  .s1440\:last\:-ml-48:last-child{
    margin-left: -12rem;
  }

  .s1440\:last\:-mt-56:last-child{
    margin-top: -14rem;
  }

  .s1440\:last\:-mr-56:last-child{
    margin-right: -14rem;
  }

  .s1440\:last\:-mb-56:last-child{
    margin-bottom: -14rem;
  }

  .s1440\:last\:-ml-56:last-child{
    margin-left: -14rem;
  }

  .s1440\:last\:-mt-64:last-child{
    margin-top: -16rem;
  }

  .s1440\:last\:-mr-64:last-child{
    margin-right: -16rem;
  }

  .s1440\:last\:-mb-64:last-child{
    margin-bottom: -16rem;
  }

  .s1440\:last\:-ml-64:last-child{
    margin-left: -16rem;
  }

  .s1440\:last\:-mt-px:last-child{
    margin-top: -1px;
  }

  .s1440\:last\:-mr-px:last-child{
    margin-right: -1px;
  }

  .s1440\:last\:-mb-px:last-child{
    margin-bottom: -1px;
  }

  .s1440\:last\:-ml-px:last-child{
    margin-left: -1px;
  }

  .s1440\:last\:mt-bin:last-child{
    margin-top: -0.313rem;
  }

  .s1440\:last\:mr-bin:last-child{
    margin-right: -0.313rem;
  }

  .s1440\:last\:mb-bin:last-child{
    margin-bottom: -0.313rem;
  }

  .s1440\:last\:ml-bin:last-child{
    margin-left: -0.313rem;
  }

  .s1440\:last\:-mt-0\.25:last-child{
    margin-top: -0.0625rem;
  }

  .s1440\:last\:-mr-0\.25:last-child{
    margin-right: -0.0625rem;
  }

  .s1440\:last\:-mb-0\.25:last-child{
    margin-bottom: -0.0625rem;
  }

  .s1440\:last\:-ml-0\.25:last-child{
    margin-left: -0.0625rem;
  }

  .s1440\:last\:mt-0\.25:last-child{
    margin-top: 0.0625rem;
  }

  .s1440\:last\:mr-0\.25:last-child{
    margin-right: 0.0625rem;
  }

  .s1440\:last\:mb-0\.25:last-child{
    margin-bottom: 0.0625rem;
  }

  .s1440\:last\:ml-0\.25:last-child{
    margin-left: 0.0625rem;
  }

  .s1440\:last\:mt-3\.125:last-child{
    margin-top: 3.125rem;
  }

  .s1440\:last\:mr-3\.125:last-child{
    margin-right: 3.125rem;
  }

  .s1440\:last\:mb-3\.125:last-child{
    margin-bottom: 3.125rem;
  }

  .s1440\:last\:ml-3\.125:last-child{
    margin-left: 3.125rem;
  }

  .s1440\:last\:mt-modal:last-child{
    margin-top: 6.25rem;
  }

  .s1440\:last\:mr-modal:last-child{
    margin-right: 6.25rem;
  }

  .s1440\:last\:mb-modal:last-child{
    margin-bottom: 6.25rem;
  }

  .s1440\:last\:ml-modal:last-child{
    margin-left: 6.25rem;
  }

  .s1440\:last\:mt-sidebar:last-child{
    margin-top: 25rem;
  }

  .s1440\:last\:mr-sidebar:last-child{
    margin-right: 25rem;
  }

  .s1440\:last\:mb-sidebar:last-child{
    margin-bottom: 25rem;
  }

  .s1440\:last\:ml-sidebar:last-child{
    margin-left: 25rem;
  }

  .s1440\:max-h-full{
    max-height: 100%;
  }

  .s1440\:max-h-screen{
    max-height: 100vh;
  }

  .s1440\:hover\:max-h-full:hover{
    max-height: 100%;
  }

  .s1440\:hover\:max-h-screen:hover{
    max-height: 100vh;
  }

  .s1440\:focus\:max-h-full:focus{
    max-height: 100%;
  }

  .s1440\:focus\:max-h-screen:focus{
    max-height: 100vh;
  }

  .s1440\:active\:max-h-full:active{
    max-height: 100%;
  }

  .s1440\:active\:max-h-screen:active{
    max-height: 100vh;
  }

  .s1440\:first\:max-h-full:first-child{
    max-height: 100%;
  }

  .s1440\:first\:max-h-screen:first-child{
    max-height: 100vh;
  }

  .s1440\:last\:max-h-full:last-child{
    max-height: 100%;
  }

  .s1440\:last\:max-h-screen:last-child{
    max-height: 100vh;
  }

  .s1440\:max-w-none{
    max-width: none;
  }

  .s1440\:max-w-xs{
    max-width: 20rem;
  }

  .s1440\:max-w-sm{
    max-width: 24rem;
  }

  .s1440\:max-w-md{
    max-width: 28rem;
  }

  .s1440\:max-w-lg{
    max-width: 32rem;
  }

  .s1440\:max-w-xl{
    max-width: 36rem;
  }

  .s1440\:max-w-2xl{
    max-width: 42rem;
  }

  .s1440\:max-w-3xl{
    max-width: 48rem;
  }

  .s1440\:max-w-4xl{
    max-width: 56rem;
  }

  .s1440\:max-w-5xl{
    max-width: 64rem;
  }

  .s1440\:max-w-6xl{
    max-width: 72rem;
  }

  .s1440\:max-w-full{
    max-width: 100%;
  }

  .s1440\:max-w-screen-sm{
    max-width: 640px;
  }

  .s1440\:max-w-screen-s1440{
    max-width: 1430px;
  }

  .s1440\:max-w-screen-s1920{
    max-width: 1910px;
  }

  .s1440\:max-w-page{
    max-width: 80rem;
  }

  .s1440\:max-w-container{
    max-width: 77.25rem;
  }

  .s1440\:max-w-modalMd{
    max-width: 37.5rem;
  }

  .s1440\:max-w-modalMdXl{
    max-width: 52.5rem;
  }

  .s1440\:max-w-modalLg{
    max-width: 77.25rem;
  }

  .s1440\:max-w-input{
    max-width: 32.5rem;
  }

  .s1440\:max-w-halfInput{
    max-width: 16.25rem;
  }

  .s1440\:max-w-formContainer{
    max-width: 47.875rem;
  }

  .s1440\:max-w-sidebar{
    max-width: 27rem;
  }

  .s1440\:max-w-doubleSidebar{
    max-width: 475px;
  }

  .s1440\:max-w-practiceSidebarContent{
    max-width: 49.5rem;
  }

  .s1440\:max-w-doubleSidebarContent{
    max-width: 950px;
  }

  .s1440\:hover\:max-w-none:hover{
    max-width: none;
  }

  .s1440\:hover\:max-w-xs:hover{
    max-width: 20rem;
  }

  .s1440\:hover\:max-w-sm:hover{
    max-width: 24rem;
  }

  .s1440\:hover\:max-w-md:hover{
    max-width: 28rem;
  }

  .s1440\:hover\:max-w-lg:hover{
    max-width: 32rem;
  }

  .s1440\:hover\:max-w-xl:hover{
    max-width: 36rem;
  }

  .s1440\:hover\:max-w-2xl:hover{
    max-width: 42rem;
  }

  .s1440\:hover\:max-w-3xl:hover{
    max-width: 48rem;
  }

  .s1440\:hover\:max-w-4xl:hover{
    max-width: 56rem;
  }

  .s1440\:hover\:max-w-5xl:hover{
    max-width: 64rem;
  }

  .s1440\:hover\:max-w-6xl:hover{
    max-width: 72rem;
  }

  .s1440\:hover\:max-w-full:hover{
    max-width: 100%;
  }

  .s1440\:hover\:max-w-screen-sm:hover{
    max-width: 640px;
  }

  .s1440\:hover\:max-w-screen-s1440:hover{
    max-width: 1430px;
  }

  .s1440\:hover\:max-w-screen-s1920:hover{
    max-width: 1910px;
  }

  .s1440\:hover\:max-w-page:hover{
    max-width: 80rem;
  }

  .s1440\:hover\:max-w-container:hover{
    max-width: 77.25rem;
  }

  .s1440\:hover\:max-w-modalMd:hover{
    max-width: 37.5rem;
  }

  .s1440\:hover\:max-w-modalMdXl:hover{
    max-width: 52.5rem;
  }

  .s1440\:hover\:max-w-modalLg:hover{
    max-width: 77.25rem;
  }

  .s1440\:hover\:max-w-input:hover{
    max-width: 32.5rem;
  }

  .s1440\:hover\:max-w-halfInput:hover{
    max-width: 16.25rem;
  }

  .s1440\:hover\:max-w-formContainer:hover{
    max-width: 47.875rem;
  }

  .s1440\:hover\:max-w-sidebar:hover{
    max-width: 27rem;
  }

  .s1440\:hover\:max-w-doubleSidebar:hover{
    max-width: 475px;
  }

  .s1440\:hover\:max-w-practiceSidebarContent:hover{
    max-width: 49.5rem;
  }

  .s1440\:hover\:max-w-doubleSidebarContent:hover{
    max-width: 950px;
  }

  .s1440\:focus\:max-w-none:focus{
    max-width: none;
  }

  .s1440\:focus\:max-w-xs:focus{
    max-width: 20rem;
  }

  .s1440\:focus\:max-w-sm:focus{
    max-width: 24rem;
  }

  .s1440\:focus\:max-w-md:focus{
    max-width: 28rem;
  }

  .s1440\:focus\:max-w-lg:focus{
    max-width: 32rem;
  }

  .s1440\:focus\:max-w-xl:focus{
    max-width: 36rem;
  }

  .s1440\:focus\:max-w-2xl:focus{
    max-width: 42rem;
  }

  .s1440\:focus\:max-w-3xl:focus{
    max-width: 48rem;
  }

  .s1440\:focus\:max-w-4xl:focus{
    max-width: 56rem;
  }

  .s1440\:focus\:max-w-5xl:focus{
    max-width: 64rem;
  }

  .s1440\:focus\:max-w-6xl:focus{
    max-width: 72rem;
  }

  .s1440\:focus\:max-w-full:focus{
    max-width: 100%;
  }

  .s1440\:focus\:max-w-screen-sm:focus{
    max-width: 640px;
  }

  .s1440\:focus\:max-w-screen-s1440:focus{
    max-width: 1430px;
  }

  .s1440\:focus\:max-w-screen-s1920:focus{
    max-width: 1910px;
  }

  .s1440\:focus\:max-w-page:focus{
    max-width: 80rem;
  }

  .s1440\:focus\:max-w-container:focus{
    max-width: 77.25rem;
  }

  .s1440\:focus\:max-w-modalMd:focus{
    max-width: 37.5rem;
  }

  .s1440\:focus\:max-w-modalMdXl:focus{
    max-width: 52.5rem;
  }

  .s1440\:focus\:max-w-modalLg:focus{
    max-width: 77.25rem;
  }

  .s1440\:focus\:max-w-input:focus{
    max-width: 32.5rem;
  }

  .s1440\:focus\:max-w-halfInput:focus{
    max-width: 16.25rem;
  }

  .s1440\:focus\:max-w-formContainer:focus{
    max-width: 47.875rem;
  }

  .s1440\:focus\:max-w-sidebar:focus{
    max-width: 27rem;
  }

  .s1440\:focus\:max-w-doubleSidebar:focus{
    max-width: 475px;
  }

  .s1440\:focus\:max-w-practiceSidebarContent:focus{
    max-width: 49.5rem;
  }

  .s1440\:focus\:max-w-doubleSidebarContent:focus{
    max-width: 950px;
  }

  .s1440\:active\:max-w-none:active{
    max-width: none;
  }

  .s1440\:active\:max-w-xs:active{
    max-width: 20rem;
  }

  .s1440\:active\:max-w-sm:active{
    max-width: 24rem;
  }

  .s1440\:active\:max-w-md:active{
    max-width: 28rem;
  }

  .s1440\:active\:max-w-lg:active{
    max-width: 32rem;
  }

  .s1440\:active\:max-w-xl:active{
    max-width: 36rem;
  }

  .s1440\:active\:max-w-2xl:active{
    max-width: 42rem;
  }

  .s1440\:active\:max-w-3xl:active{
    max-width: 48rem;
  }

  .s1440\:active\:max-w-4xl:active{
    max-width: 56rem;
  }

  .s1440\:active\:max-w-5xl:active{
    max-width: 64rem;
  }

  .s1440\:active\:max-w-6xl:active{
    max-width: 72rem;
  }

  .s1440\:active\:max-w-full:active{
    max-width: 100%;
  }

  .s1440\:active\:max-w-screen-sm:active{
    max-width: 640px;
  }

  .s1440\:active\:max-w-screen-s1440:active{
    max-width: 1430px;
  }

  .s1440\:active\:max-w-screen-s1920:active{
    max-width: 1910px;
  }

  .s1440\:active\:max-w-page:active{
    max-width: 80rem;
  }

  .s1440\:active\:max-w-container:active{
    max-width: 77.25rem;
  }

  .s1440\:active\:max-w-modalMd:active{
    max-width: 37.5rem;
  }

  .s1440\:active\:max-w-modalMdXl:active{
    max-width: 52.5rem;
  }

  .s1440\:active\:max-w-modalLg:active{
    max-width: 77.25rem;
  }

  .s1440\:active\:max-w-input:active{
    max-width: 32.5rem;
  }

  .s1440\:active\:max-w-halfInput:active{
    max-width: 16.25rem;
  }

  .s1440\:active\:max-w-formContainer:active{
    max-width: 47.875rem;
  }

  .s1440\:active\:max-w-sidebar:active{
    max-width: 27rem;
  }

  .s1440\:active\:max-w-doubleSidebar:active{
    max-width: 475px;
  }

  .s1440\:active\:max-w-practiceSidebarContent:active{
    max-width: 49.5rem;
  }

  .s1440\:active\:max-w-doubleSidebarContent:active{
    max-width: 950px;
  }

  .s1440\:first\:max-w-none:first-child{
    max-width: none;
  }

  .s1440\:first\:max-w-xs:first-child{
    max-width: 20rem;
  }

  .s1440\:first\:max-w-sm:first-child{
    max-width: 24rem;
  }

  .s1440\:first\:max-w-md:first-child{
    max-width: 28rem;
  }

  .s1440\:first\:max-w-lg:first-child{
    max-width: 32rem;
  }

  .s1440\:first\:max-w-xl:first-child{
    max-width: 36rem;
  }

  .s1440\:first\:max-w-2xl:first-child{
    max-width: 42rem;
  }

  .s1440\:first\:max-w-3xl:first-child{
    max-width: 48rem;
  }

  .s1440\:first\:max-w-4xl:first-child{
    max-width: 56rem;
  }

  .s1440\:first\:max-w-5xl:first-child{
    max-width: 64rem;
  }

  .s1440\:first\:max-w-6xl:first-child{
    max-width: 72rem;
  }

  .s1440\:first\:max-w-full:first-child{
    max-width: 100%;
  }

  .s1440\:first\:max-w-screen-sm:first-child{
    max-width: 640px;
  }

  .s1440\:first\:max-w-screen-s1440:first-child{
    max-width: 1430px;
  }

  .s1440\:first\:max-w-screen-s1920:first-child{
    max-width: 1910px;
  }

  .s1440\:first\:max-w-page:first-child{
    max-width: 80rem;
  }

  .s1440\:first\:max-w-container:first-child{
    max-width: 77.25rem;
  }

  .s1440\:first\:max-w-modalMd:first-child{
    max-width: 37.5rem;
  }

  .s1440\:first\:max-w-modalMdXl:first-child{
    max-width: 52.5rem;
  }

  .s1440\:first\:max-w-modalLg:first-child{
    max-width: 77.25rem;
  }

  .s1440\:first\:max-w-input:first-child{
    max-width: 32.5rem;
  }

  .s1440\:first\:max-w-halfInput:first-child{
    max-width: 16.25rem;
  }

  .s1440\:first\:max-w-formContainer:first-child{
    max-width: 47.875rem;
  }

  .s1440\:first\:max-w-sidebar:first-child{
    max-width: 27rem;
  }

  .s1440\:first\:max-w-doubleSidebar:first-child{
    max-width: 475px;
  }

  .s1440\:first\:max-w-practiceSidebarContent:first-child{
    max-width: 49.5rem;
  }

  .s1440\:first\:max-w-doubleSidebarContent:first-child{
    max-width: 950px;
  }

  .s1440\:last\:max-w-none:last-child{
    max-width: none;
  }

  .s1440\:last\:max-w-xs:last-child{
    max-width: 20rem;
  }

  .s1440\:last\:max-w-sm:last-child{
    max-width: 24rem;
  }

  .s1440\:last\:max-w-md:last-child{
    max-width: 28rem;
  }

  .s1440\:last\:max-w-lg:last-child{
    max-width: 32rem;
  }

  .s1440\:last\:max-w-xl:last-child{
    max-width: 36rem;
  }

  .s1440\:last\:max-w-2xl:last-child{
    max-width: 42rem;
  }

  .s1440\:last\:max-w-3xl:last-child{
    max-width: 48rem;
  }

  .s1440\:last\:max-w-4xl:last-child{
    max-width: 56rem;
  }

  .s1440\:last\:max-w-5xl:last-child{
    max-width: 64rem;
  }

  .s1440\:last\:max-w-6xl:last-child{
    max-width: 72rem;
  }

  .s1440\:last\:max-w-full:last-child{
    max-width: 100%;
  }

  .s1440\:last\:max-w-screen-sm:last-child{
    max-width: 640px;
  }

  .s1440\:last\:max-w-screen-s1440:last-child{
    max-width: 1430px;
  }

  .s1440\:last\:max-w-screen-s1920:last-child{
    max-width: 1910px;
  }

  .s1440\:last\:max-w-page:last-child{
    max-width: 80rem;
  }

  .s1440\:last\:max-w-container:last-child{
    max-width: 77.25rem;
  }

  .s1440\:last\:max-w-modalMd:last-child{
    max-width: 37.5rem;
  }

  .s1440\:last\:max-w-modalMdXl:last-child{
    max-width: 52.5rem;
  }

  .s1440\:last\:max-w-modalLg:last-child{
    max-width: 77.25rem;
  }

  .s1440\:last\:max-w-input:last-child{
    max-width: 32.5rem;
  }

  .s1440\:last\:max-w-halfInput:last-child{
    max-width: 16.25rem;
  }

  .s1440\:last\:max-w-formContainer:last-child{
    max-width: 47.875rem;
  }

  .s1440\:last\:max-w-sidebar:last-child{
    max-width: 27rem;
  }

  .s1440\:last\:max-w-doubleSidebar:last-child{
    max-width: 475px;
  }

  .s1440\:last\:max-w-practiceSidebarContent:last-child{
    max-width: 49.5rem;
  }

  .s1440\:last\:max-w-doubleSidebarContent:last-child{
    max-width: 950px;
  }

  .s1440\:min-h-0{
    min-height: 0;
  }

  .s1440\:min-h-1{
    min-height: 0.25rem;
  }

  .s1440\:min-h-2{
    min-height: 0.5rem;
  }

  .s1440\:min-h-3{
    min-height: 0.75rem;
  }

  .s1440\:min-h-4{
    min-height: 1rem;
  }

  .s1440\:min-h-5{
    min-height: 1.25rem;
  }

  .s1440\:min-h-6{
    min-height: 1.5rem;
  }

  .s1440\:min-h-8{
    min-height: 2rem;
  }

  .s1440\:min-h-10{
    min-height: 2.5rem;
  }

  .s1440\:min-h-12{
    min-height: 3rem;
  }

  .s1440\:min-h-14{
    min-height: 3.5rem;
  }

  .s1440\:min-h-16{
    min-height: 4rem;
  }

  .s1440\:min-h-20{
    min-height: 5rem;
  }

  .s1440\:min-h-24{
    min-height: 6rem;
  }

  .s1440\:min-h-28{
    min-height: 7rem;
  }

  .s1440\:min-h-32{
    min-height: 8rem;
  }

  .s1440\:min-h-40{
    min-height: 10rem;
  }

  .s1440\:min-h-48{
    min-height: 12rem;
  }

  .s1440\:min-h-56{
    min-height: 14rem;
  }

  .s1440\:min-h-64{
    min-height: 16rem;
  }

  .s1440\:min-h-full{
    min-height: 100%;
  }

  .s1440\:min-h-screen{
    min-height: 100vh;
  }

  .s1440\:min-h-auto{
    min-height: auto;
  }

  .s1440\:min-h-px{
    min-height: 1px;
  }

  .s1440\:min-h-modal{
    min-height: 20rem;
  }

  .s1440\:hover\:min-h-0:hover{
    min-height: 0;
  }

  .s1440\:hover\:min-h-1:hover{
    min-height: 0.25rem;
  }

  .s1440\:hover\:min-h-2:hover{
    min-height: 0.5rem;
  }

  .s1440\:hover\:min-h-3:hover{
    min-height: 0.75rem;
  }

  .s1440\:hover\:min-h-4:hover{
    min-height: 1rem;
  }

  .s1440\:hover\:min-h-5:hover{
    min-height: 1.25rem;
  }

  .s1440\:hover\:min-h-6:hover{
    min-height: 1.5rem;
  }

  .s1440\:hover\:min-h-8:hover{
    min-height: 2rem;
  }

  .s1440\:hover\:min-h-10:hover{
    min-height: 2.5rem;
  }

  .s1440\:hover\:min-h-12:hover{
    min-height: 3rem;
  }

  .s1440\:hover\:min-h-14:hover{
    min-height: 3.5rem;
  }

  .s1440\:hover\:min-h-16:hover{
    min-height: 4rem;
  }

  .s1440\:hover\:min-h-20:hover{
    min-height: 5rem;
  }

  .s1440\:hover\:min-h-24:hover{
    min-height: 6rem;
  }

  .s1440\:hover\:min-h-28:hover{
    min-height: 7rem;
  }

  .s1440\:hover\:min-h-32:hover{
    min-height: 8rem;
  }

  .s1440\:hover\:min-h-40:hover{
    min-height: 10rem;
  }

  .s1440\:hover\:min-h-48:hover{
    min-height: 12rem;
  }

  .s1440\:hover\:min-h-56:hover{
    min-height: 14rem;
  }

  .s1440\:hover\:min-h-64:hover{
    min-height: 16rem;
  }

  .s1440\:hover\:min-h-full:hover{
    min-height: 100%;
  }

  .s1440\:hover\:min-h-screen:hover{
    min-height: 100vh;
  }

  .s1440\:hover\:min-h-auto:hover{
    min-height: auto;
  }

  .s1440\:hover\:min-h-px:hover{
    min-height: 1px;
  }

  .s1440\:hover\:min-h-modal:hover{
    min-height: 20rem;
  }

  .s1440\:focus\:min-h-0:focus{
    min-height: 0;
  }

  .s1440\:focus\:min-h-1:focus{
    min-height: 0.25rem;
  }

  .s1440\:focus\:min-h-2:focus{
    min-height: 0.5rem;
  }

  .s1440\:focus\:min-h-3:focus{
    min-height: 0.75rem;
  }

  .s1440\:focus\:min-h-4:focus{
    min-height: 1rem;
  }

  .s1440\:focus\:min-h-5:focus{
    min-height: 1.25rem;
  }

  .s1440\:focus\:min-h-6:focus{
    min-height: 1.5rem;
  }

  .s1440\:focus\:min-h-8:focus{
    min-height: 2rem;
  }

  .s1440\:focus\:min-h-10:focus{
    min-height: 2.5rem;
  }

  .s1440\:focus\:min-h-12:focus{
    min-height: 3rem;
  }

  .s1440\:focus\:min-h-14:focus{
    min-height: 3.5rem;
  }

  .s1440\:focus\:min-h-16:focus{
    min-height: 4rem;
  }

  .s1440\:focus\:min-h-20:focus{
    min-height: 5rem;
  }

  .s1440\:focus\:min-h-24:focus{
    min-height: 6rem;
  }

  .s1440\:focus\:min-h-28:focus{
    min-height: 7rem;
  }

  .s1440\:focus\:min-h-32:focus{
    min-height: 8rem;
  }

  .s1440\:focus\:min-h-40:focus{
    min-height: 10rem;
  }

  .s1440\:focus\:min-h-48:focus{
    min-height: 12rem;
  }

  .s1440\:focus\:min-h-56:focus{
    min-height: 14rem;
  }

  .s1440\:focus\:min-h-64:focus{
    min-height: 16rem;
  }

  .s1440\:focus\:min-h-full:focus{
    min-height: 100%;
  }

  .s1440\:focus\:min-h-screen:focus{
    min-height: 100vh;
  }

  .s1440\:focus\:min-h-auto:focus{
    min-height: auto;
  }

  .s1440\:focus\:min-h-px:focus{
    min-height: 1px;
  }

  .s1440\:focus\:min-h-modal:focus{
    min-height: 20rem;
  }

  .s1440\:active\:min-h-0:active{
    min-height: 0;
  }

  .s1440\:active\:min-h-1:active{
    min-height: 0.25rem;
  }

  .s1440\:active\:min-h-2:active{
    min-height: 0.5rem;
  }

  .s1440\:active\:min-h-3:active{
    min-height: 0.75rem;
  }

  .s1440\:active\:min-h-4:active{
    min-height: 1rem;
  }

  .s1440\:active\:min-h-5:active{
    min-height: 1.25rem;
  }

  .s1440\:active\:min-h-6:active{
    min-height: 1.5rem;
  }

  .s1440\:active\:min-h-8:active{
    min-height: 2rem;
  }

  .s1440\:active\:min-h-10:active{
    min-height: 2.5rem;
  }

  .s1440\:active\:min-h-12:active{
    min-height: 3rem;
  }

  .s1440\:active\:min-h-14:active{
    min-height: 3.5rem;
  }

  .s1440\:active\:min-h-16:active{
    min-height: 4rem;
  }

  .s1440\:active\:min-h-20:active{
    min-height: 5rem;
  }

  .s1440\:active\:min-h-24:active{
    min-height: 6rem;
  }

  .s1440\:active\:min-h-28:active{
    min-height: 7rem;
  }

  .s1440\:active\:min-h-32:active{
    min-height: 8rem;
  }

  .s1440\:active\:min-h-40:active{
    min-height: 10rem;
  }

  .s1440\:active\:min-h-48:active{
    min-height: 12rem;
  }

  .s1440\:active\:min-h-56:active{
    min-height: 14rem;
  }

  .s1440\:active\:min-h-64:active{
    min-height: 16rem;
  }

  .s1440\:active\:min-h-full:active{
    min-height: 100%;
  }

  .s1440\:active\:min-h-screen:active{
    min-height: 100vh;
  }

  .s1440\:active\:min-h-auto:active{
    min-height: auto;
  }

  .s1440\:active\:min-h-px:active{
    min-height: 1px;
  }

  .s1440\:active\:min-h-modal:active{
    min-height: 20rem;
  }

  .s1440\:first\:min-h-0:first-child{
    min-height: 0;
  }

  .s1440\:first\:min-h-1:first-child{
    min-height: 0.25rem;
  }

  .s1440\:first\:min-h-2:first-child{
    min-height: 0.5rem;
  }

  .s1440\:first\:min-h-3:first-child{
    min-height: 0.75rem;
  }

  .s1440\:first\:min-h-4:first-child{
    min-height: 1rem;
  }

  .s1440\:first\:min-h-5:first-child{
    min-height: 1.25rem;
  }

  .s1440\:first\:min-h-6:first-child{
    min-height: 1.5rem;
  }

  .s1440\:first\:min-h-8:first-child{
    min-height: 2rem;
  }

  .s1440\:first\:min-h-10:first-child{
    min-height: 2.5rem;
  }

  .s1440\:first\:min-h-12:first-child{
    min-height: 3rem;
  }

  .s1440\:first\:min-h-14:first-child{
    min-height: 3.5rem;
  }

  .s1440\:first\:min-h-16:first-child{
    min-height: 4rem;
  }

  .s1440\:first\:min-h-20:first-child{
    min-height: 5rem;
  }

  .s1440\:first\:min-h-24:first-child{
    min-height: 6rem;
  }

  .s1440\:first\:min-h-28:first-child{
    min-height: 7rem;
  }

  .s1440\:first\:min-h-32:first-child{
    min-height: 8rem;
  }

  .s1440\:first\:min-h-40:first-child{
    min-height: 10rem;
  }

  .s1440\:first\:min-h-48:first-child{
    min-height: 12rem;
  }

  .s1440\:first\:min-h-56:first-child{
    min-height: 14rem;
  }

  .s1440\:first\:min-h-64:first-child{
    min-height: 16rem;
  }

  .s1440\:first\:min-h-full:first-child{
    min-height: 100%;
  }

  .s1440\:first\:min-h-screen:first-child{
    min-height: 100vh;
  }

  .s1440\:first\:min-h-auto:first-child{
    min-height: auto;
  }

  .s1440\:first\:min-h-px:first-child{
    min-height: 1px;
  }

  .s1440\:first\:min-h-modal:first-child{
    min-height: 20rem;
  }

  .s1440\:last\:min-h-0:last-child{
    min-height: 0;
  }

  .s1440\:last\:min-h-1:last-child{
    min-height: 0.25rem;
  }

  .s1440\:last\:min-h-2:last-child{
    min-height: 0.5rem;
  }

  .s1440\:last\:min-h-3:last-child{
    min-height: 0.75rem;
  }

  .s1440\:last\:min-h-4:last-child{
    min-height: 1rem;
  }

  .s1440\:last\:min-h-5:last-child{
    min-height: 1.25rem;
  }

  .s1440\:last\:min-h-6:last-child{
    min-height: 1.5rem;
  }

  .s1440\:last\:min-h-8:last-child{
    min-height: 2rem;
  }

  .s1440\:last\:min-h-10:last-child{
    min-height: 2.5rem;
  }

  .s1440\:last\:min-h-12:last-child{
    min-height: 3rem;
  }

  .s1440\:last\:min-h-14:last-child{
    min-height: 3.5rem;
  }

  .s1440\:last\:min-h-16:last-child{
    min-height: 4rem;
  }

  .s1440\:last\:min-h-20:last-child{
    min-height: 5rem;
  }

  .s1440\:last\:min-h-24:last-child{
    min-height: 6rem;
  }

  .s1440\:last\:min-h-28:last-child{
    min-height: 7rem;
  }

  .s1440\:last\:min-h-32:last-child{
    min-height: 8rem;
  }

  .s1440\:last\:min-h-40:last-child{
    min-height: 10rem;
  }

  .s1440\:last\:min-h-48:last-child{
    min-height: 12rem;
  }

  .s1440\:last\:min-h-56:last-child{
    min-height: 14rem;
  }

  .s1440\:last\:min-h-64:last-child{
    min-height: 16rem;
  }

  .s1440\:last\:min-h-full:last-child{
    min-height: 100%;
  }

  .s1440\:last\:min-h-screen:last-child{
    min-height: 100vh;
  }

  .s1440\:last\:min-h-auto:last-child{
    min-height: auto;
  }

  .s1440\:last\:min-h-px:last-child{
    min-height: 1px;
  }

  .s1440\:last\:min-h-modal:last-child{
    min-height: 20rem;
  }

  .s1440\:min-w-0{
    min-width: 0;
  }

  .s1440\:min-w-1{
    min-width: 0.25rem;
  }

  .s1440\:min-w-2{
    min-width: 0.5rem;
  }

  .s1440\:min-w-3{
    min-width: 0.75rem;
  }

  .s1440\:min-w-4{
    min-width: 1rem;
  }

  .s1440\:min-w-5{
    min-width: 1.25rem;
  }

  .s1440\:min-w-6{
    min-width: 1.5rem;
  }

  .s1440\:min-w-8{
    min-width: 2rem;
  }

  .s1440\:min-w-10{
    min-width: 2.5rem;
  }

  .s1440\:min-w-12{
    min-width: 3rem;
  }

  .s1440\:min-w-14{
    min-width: 3.5rem;
  }

  .s1440\:min-w-16{
    min-width: 4rem;
  }

  .s1440\:min-w-20{
    min-width: 5rem;
  }

  .s1440\:min-w-24{
    min-width: 6rem;
  }

  .s1440\:min-w-32{
    min-width: 8rem;
  }

  .s1440\:min-w-36{
    min-width: 9rem;
  }

  .s1440\:min-w-40{
    min-width: 10rem;
  }

  .s1440\:min-w-48{
    min-width: 12rem;
  }

  .s1440\:min-w-56{
    min-width: 14rem;
  }

  .s1440\:min-w-64{
    min-width: 16rem;
  }

  .s1440\:min-w-full{
    min-width: 100%;
  }

  .s1440\:min-w-auto{
    min-width: auto;
  }

  .s1440\:min-w-px{
    min-width: 1px;
  }

  .s1440\:min-w-1\/2{
    min-width: 50%;
  }

  .s1440\:min-w-1\/3{
    min-width: 33.333333%;
  }

  .s1440\:min-w-2\/3{
    min-width: 66.666667%;
  }

  .s1440\:min-w-1\/4{
    min-width: 25%;
  }

  .s1440\:min-w-2\/4{
    min-width: 50%;
  }

  .s1440\:min-w-3\/4{
    min-width: 75%;
  }

  .s1440\:min-w-1\/5{
    min-width: 20%;
  }

  .s1440\:min-w-2\/5{
    min-width: 40%;
  }

  .s1440\:min-w-3\/5{
    min-width: 60%;
  }

  .s1440\:min-w-4\/5{
    min-width: 80%;
  }

  .s1440\:min-w-1\/6{
    min-width: 16.666667%;
  }

  .s1440\:min-w-2\/6{
    min-width: 33.333333%;
  }

  .s1440\:min-w-3\/6{
    min-width: 50%;
  }

  .s1440\:min-w-4\/6{
    min-width: 66.666667%;
  }

  .s1440\:min-w-5\/6{
    min-width: 83.333333%;
  }

  .s1440\:min-w-1\/12{
    min-width: 8.333333%;
  }

  .s1440\:min-w-2\/12{
    min-width: 16.666667%;
  }

  .s1440\:min-w-3\/12{
    min-width: 25%;
  }

  .s1440\:min-w-4\/12{
    min-width: 33.333333%;
  }

  .s1440\:min-w-5\/12{
    min-width: 41.666667%;
  }

  .s1440\:min-w-6\/12{
    min-width: 50%;
  }

  .s1440\:min-w-7\/12{
    min-width: 58.333333%;
  }

  .s1440\:min-w-8\/12{
    min-width: 66.666667%;
  }

  .s1440\:min-w-9\/12{
    min-width: 75%;
  }

  .s1440\:min-w-10\/12{
    min-width: 83.333333%;
  }

  .s1440\:min-w-11\/12{
    min-width: 91.666667%;
  }

  .s1440\:min-w-screen{
    min-width: 100vw;
  }

  .s1440\:min-w-widePage{
    min-width: 120rem;
  }

  .s1440\:min-w-page{
    min-width: 80rem;
  }

  .s1440\:min-w-container{
    min-width: 77.25rem;
  }

  .s1440\:min-w-tooltip{
    min-width: 25rem;
  }

  .s1440\:min-w-smallTooltip{
    min-width: 15rem;
  }

  .s1440\:min-w-xsmallTooltip{
    min-width: 6.0rem;
  }

  .s1440\:min-w-sidebar{
    min-width: 27rem;
  }

  .s1440\:min-w-doubleSidebar{
    min-width: 360px;
  }

  .s1440\:min-w-practiceSidebar{
    min-width: 22.5rem;
  }

  .s1440\:min-w-3\/8{
    min-width: 37.5%;
  }

  .s1440\:min-w-1\/10{
    min-width: 10%;
  }

  .s1440\:min-w-2\/10{
    min-width: 20%;
  }

  .s1440\:min-w-3\/10{
    min-width: 30%;
  }

  .s1440\:min-w-4\/10{
    min-width: 40%;
  }

  .s1440\:min-w-5\/10{
    min-width: 50%;
  }

  .s1440\:min-w-6\/10{
    min-width: 60%;
  }

  .s1440\:min-w-7\/10{
    min-width: 70%;
  }

  .s1440\:min-w-8\/10{
    min-width: 80%;
  }

  .s1440\:min-w-9\/10{
    min-width: 90%;
  }

  .s1440\:min-w-input{
    min-width: 15.75rem;
  }

  .s1440\:min-w-inherit{
    min-width: inherit;
  }

  .s1440\:min-w-modalMd{
    min-width: 37.5rem;
  }

  .s1440\:min-w-modalMdXl{
    min-width: 52.5rem;
  }

  .s1440\:min-w-modalLg{
    min-width: 77.25rem;
  }

  .s1440\:min-w-doubleSidebarContent{
    min-width: 720px;
  }

  .s1440\:hover\:min-w-0:hover{
    min-width: 0;
  }

  .s1440\:hover\:min-w-1:hover{
    min-width: 0.25rem;
  }

  .s1440\:hover\:min-w-2:hover{
    min-width: 0.5rem;
  }

  .s1440\:hover\:min-w-3:hover{
    min-width: 0.75rem;
  }

  .s1440\:hover\:min-w-4:hover{
    min-width: 1rem;
  }

  .s1440\:hover\:min-w-5:hover{
    min-width: 1.25rem;
  }

  .s1440\:hover\:min-w-6:hover{
    min-width: 1.5rem;
  }

  .s1440\:hover\:min-w-8:hover{
    min-width: 2rem;
  }

  .s1440\:hover\:min-w-10:hover{
    min-width: 2.5rem;
  }

  .s1440\:hover\:min-w-12:hover{
    min-width: 3rem;
  }

  .s1440\:hover\:min-w-14:hover{
    min-width: 3.5rem;
  }

  .s1440\:hover\:min-w-16:hover{
    min-width: 4rem;
  }

  .s1440\:hover\:min-w-20:hover{
    min-width: 5rem;
  }

  .s1440\:hover\:min-w-24:hover{
    min-width: 6rem;
  }

  .s1440\:hover\:min-w-32:hover{
    min-width: 8rem;
  }

  .s1440\:hover\:min-w-36:hover{
    min-width: 9rem;
  }

  .s1440\:hover\:min-w-40:hover{
    min-width: 10rem;
  }

  .s1440\:hover\:min-w-48:hover{
    min-width: 12rem;
  }

  .s1440\:hover\:min-w-56:hover{
    min-width: 14rem;
  }

  .s1440\:hover\:min-w-64:hover{
    min-width: 16rem;
  }

  .s1440\:hover\:min-w-full:hover{
    min-width: 100%;
  }

  .s1440\:hover\:min-w-auto:hover{
    min-width: auto;
  }

  .s1440\:hover\:min-w-px:hover{
    min-width: 1px;
  }

  .s1440\:hover\:min-w-1\/2:hover{
    min-width: 50%;
  }

  .s1440\:hover\:min-w-1\/3:hover{
    min-width: 33.333333%;
  }

  .s1440\:hover\:min-w-2\/3:hover{
    min-width: 66.666667%;
  }

  .s1440\:hover\:min-w-1\/4:hover{
    min-width: 25%;
  }

  .s1440\:hover\:min-w-2\/4:hover{
    min-width: 50%;
  }

  .s1440\:hover\:min-w-3\/4:hover{
    min-width: 75%;
  }

  .s1440\:hover\:min-w-1\/5:hover{
    min-width: 20%;
  }

  .s1440\:hover\:min-w-2\/5:hover{
    min-width: 40%;
  }

  .s1440\:hover\:min-w-3\/5:hover{
    min-width: 60%;
  }

  .s1440\:hover\:min-w-4\/5:hover{
    min-width: 80%;
  }

  .s1440\:hover\:min-w-1\/6:hover{
    min-width: 16.666667%;
  }

  .s1440\:hover\:min-w-2\/6:hover{
    min-width: 33.333333%;
  }

  .s1440\:hover\:min-w-3\/6:hover{
    min-width: 50%;
  }

  .s1440\:hover\:min-w-4\/6:hover{
    min-width: 66.666667%;
  }

  .s1440\:hover\:min-w-5\/6:hover{
    min-width: 83.333333%;
  }

  .s1440\:hover\:min-w-1\/12:hover{
    min-width: 8.333333%;
  }

  .s1440\:hover\:min-w-2\/12:hover{
    min-width: 16.666667%;
  }

  .s1440\:hover\:min-w-3\/12:hover{
    min-width: 25%;
  }

  .s1440\:hover\:min-w-4\/12:hover{
    min-width: 33.333333%;
  }

  .s1440\:hover\:min-w-5\/12:hover{
    min-width: 41.666667%;
  }

  .s1440\:hover\:min-w-6\/12:hover{
    min-width: 50%;
  }

  .s1440\:hover\:min-w-7\/12:hover{
    min-width: 58.333333%;
  }

  .s1440\:hover\:min-w-8\/12:hover{
    min-width: 66.666667%;
  }

  .s1440\:hover\:min-w-9\/12:hover{
    min-width: 75%;
  }

  .s1440\:hover\:min-w-10\/12:hover{
    min-width: 83.333333%;
  }

  .s1440\:hover\:min-w-11\/12:hover{
    min-width: 91.666667%;
  }

  .s1440\:hover\:min-w-screen:hover{
    min-width: 100vw;
  }

  .s1440\:hover\:min-w-widePage:hover{
    min-width: 120rem;
  }

  .s1440\:hover\:min-w-page:hover{
    min-width: 80rem;
  }

  .s1440\:hover\:min-w-container:hover{
    min-width: 77.25rem;
  }

  .s1440\:hover\:min-w-tooltip:hover{
    min-width: 25rem;
  }

  .s1440\:hover\:min-w-smallTooltip:hover{
    min-width: 15rem;
  }

  .s1440\:hover\:min-w-xsmallTooltip:hover{
    min-width: 6.0rem;
  }

  .s1440\:hover\:min-w-sidebar:hover{
    min-width: 27rem;
  }

  .s1440\:hover\:min-w-doubleSidebar:hover{
    min-width: 360px;
  }

  .s1440\:hover\:min-w-practiceSidebar:hover{
    min-width: 22.5rem;
  }

  .s1440\:hover\:min-w-3\/8:hover{
    min-width: 37.5%;
  }

  .s1440\:hover\:min-w-1\/10:hover{
    min-width: 10%;
  }

  .s1440\:hover\:min-w-2\/10:hover{
    min-width: 20%;
  }

  .s1440\:hover\:min-w-3\/10:hover{
    min-width: 30%;
  }

  .s1440\:hover\:min-w-4\/10:hover{
    min-width: 40%;
  }

  .s1440\:hover\:min-w-5\/10:hover{
    min-width: 50%;
  }

  .s1440\:hover\:min-w-6\/10:hover{
    min-width: 60%;
  }

  .s1440\:hover\:min-w-7\/10:hover{
    min-width: 70%;
  }

  .s1440\:hover\:min-w-8\/10:hover{
    min-width: 80%;
  }

  .s1440\:hover\:min-w-9\/10:hover{
    min-width: 90%;
  }

  .s1440\:hover\:min-w-input:hover{
    min-width: 15.75rem;
  }

  .s1440\:hover\:min-w-inherit:hover{
    min-width: inherit;
  }

  .s1440\:hover\:min-w-modalMd:hover{
    min-width: 37.5rem;
  }

  .s1440\:hover\:min-w-modalMdXl:hover{
    min-width: 52.5rem;
  }

  .s1440\:hover\:min-w-modalLg:hover{
    min-width: 77.25rem;
  }

  .s1440\:hover\:min-w-doubleSidebarContent:hover{
    min-width: 720px;
  }

  .s1440\:focus\:min-w-0:focus{
    min-width: 0;
  }

  .s1440\:focus\:min-w-1:focus{
    min-width: 0.25rem;
  }

  .s1440\:focus\:min-w-2:focus{
    min-width: 0.5rem;
  }

  .s1440\:focus\:min-w-3:focus{
    min-width: 0.75rem;
  }

  .s1440\:focus\:min-w-4:focus{
    min-width: 1rem;
  }

  .s1440\:focus\:min-w-5:focus{
    min-width: 1.25rem;
  }

  .s1440\:focus\:min-w-6:focus{
    min-width: 1.5rem;
  }

  .s1440\:focus\:min-w-8:focus{
    min-width: 2rem;
  }

  .s1440\:focus\:min-w-10:focus{
    min-width: 2.5rem;
  }

  .s1440\:focus\:min-w-12:focus{
    min-width: 3rem;
  }

  .s1440\:focus\:min-w-14:focus{
    min-width: 3.5rem;
  }

  .s1440\:focus\:min-w-16:focus{
    min-width: 4rem;
  }

  .s1440\:focus\:min-w-20:focus{
    min-width: 5rem;
  }

  .s1440\:focus\:min-w-24:focus{
    min-width: 6rem;
  }

  .s1440\:focus\:min-w-32:focus{
    min-width: 8rem;
  }

  .s1440\:focus\:min-w-36:focus{
    min-width: 9rem;
  }

  .s1440\:focus\:min-w-40:focus{
    min-width: 10rem;
  }

  .s1440\:focus\:min-w-48:focus{
    min-width: 12rem;
  }

  .s1440\:focus\:min-w-56:focus{
    min-width: 14rem;
  }

  .s1440\:focus\:min-w-64:focus{
    min-width: 16rem;
  }

  .s1440\:focus\:min-w-full:focus{
    min-width: 100%;
  }

  .s1440\:focus\:min-w-auto:focus{
    min-width: auto;
  }

  .s1440\:focus\:min-w-px:focus{
    min-width: 1px;
  }

  .s1440\:focus\:min-w-1\/2:focus{
    min-width: 50%;
  }

  .s1440\:focus\:min-w-1\/3:focus{
    min-width: 33.333333%;
  }

  .s1440\:focus\:min-w-2\/3:focus{
    min-width: 66.666667%;
  }

  .s1440\:focus\:min-w-1\/4:focus{
    min-width: 25%;
  }

  .s1440\:focus\:min-w-2\/4:focus{
    min-width: 50%;
  }

  .s1440\:focus\:min-w-3\/4:focus{
    min-width: 75%;
  }

  .s1440\:focus\:min-w-1\/5:focus{
    min-width: 20%;
  }

  .s1440\:focus\:min-w-2\/5:focus{
    min-width: 40%;
  }

  .s1440\:focus\:min-w-3\/5:focus{
    min-width: 60%;
  }

  .s1440\:focus\:min-w-4\/5:focus{
    min-width: 80%;
  }

  .s1440\:focus\:min-w-1\/6:focus{
    min-width: 16.666667%;
  }

  .s1440\:focus\:min-w-2\/6:focus{
    min-width: 33.333333%;
  }

  .s1440\:focus\:min-w-3\/6:focus{
    min-width: 50%;
  }

  .s1440\:focus\:min-w-4\/6:focus{
    min-width: 66.666667%;
  }

  .s1440\:focus\:min-w-5\/6:focus{
    min-width: 83.333333%;
  }

  .s1440\:focus\:min-w-1\/12:focus{
    min-width: 8.333333%;
  }

  .s1440\:focus\:min-w-2\/12:focus{
    min-width: 16.666667%;
  }

  .s1440\:focus\:min-w-3\/12:focus{
    min-width: 25%;
  }

  .s1440\:focus\:min-w-4\/12:focus{
    min-width: 33.333333%;
  }

  .s1440\:focus\:min-w-5\/12:focus{
    min-width: 41.666667%;
  }

  .s1440\:focus\:min-w-6\/12:focus{
    min-width: 50%;
  }

  .s1440\:focus\:min-w-7\/12:focus{
    min-width: 58.333333%;
  }

  .s1440\:focus\:min-w-8\/12:focus{
    min-width: 66.666667%;
  }

  .s1440\:focus\:min-w-9\/12:focus{
    min-width: 75%;
  }

  .s1440\:focus\:min-w-10\/12:focus{
    min-width: 83.333333%;
  }

  .s1440\:focus\:min-w-11\/12:focus{
    min-width: 91.666667%;
  }

  .s1440\:focus\:min-w-screen:focus{
    min-width: 100vw;
  }

  .s1440\:focus\:min-w-widePage:focus{
    min-width: 120rem;
  }

  .s1440\:focus\:min-w-page:focus{
    min-width: 80rem;
  }

  .s1440\:focus\:min-w-container:focus{
    min-width: 77.25rem;
  }

  .s1440\:focus\:min-w-tooltip:focus{
    min-width: 25rem;
  }

  .s1440\:focus\:min-w-smallTooltip:focus{
    min-width: 15rem;
  }

  .s1440\:focus\:min-w-xsmallTooltip:focus{
    min-width: 6.0rem;
  }

  .s1440\:focus\:min-w-sidebar:focus{
    min-width: 27rem;
  }

  .s1440\:focus\:min-w-doubleSidebar:focus{
    min-width: 360px;
  }

  .s1440\:focus\:min-w-practiceSidebar:focus{
    min-width: 22.5rem;
  }

  .s1440\:focus\:min-w-3\/8:focus{
    min-width: 37.5%;
  }

  .s1440\:focus\:min-w-1\/10:focus{
    min-width: 10%;
  }

  .s1440\:focus\:min-w-2\/10:focus{
    min-width: 20%;
  }

  .s1440\:focus\:min-w-3\/10:focus{
    min-width: 30%;
  }

  .s1440\:focus\:min-w-4\/10:focus{
    min-width: 40%;
  }

  .s1440\:focus\:min-w-5\/10:focus{
    min-width: 50%;
  }

  .s1440\:focus\:min-w-6\/10:focus{
    min-width: 60%;
  }

  .s1440\:focus\:min-w-7\/10:focus{
    min-width: 70%;
  }

  .s1440\:focus\:min-w-8\/10:focus{
    min-width: 80%;
  }

  .s1440\:focus\:min-w-9\/10:focus{
    min-width: 90%;
  }

  .s1440\:focus\:min-w-input:focus{
    min-width: 15.75rem;
  }

  .s1440\:focus\:min-w-inherit:focus{
    min-width: inherit;
  }

  .s1440\:focus\:min-w-modalMd:focus{
    min-width: 37.5rem;
  }

  .s1440\:focus\:min-w-modalMdXl:focus{
    min-width: 52.5rem;
  }

  .s1440\:focus\:min-w-modalLg:focus{
    min-width: 77.25rem;
  }

  .s1440\:focus\:min-w-doubleSidebarContent:focus{
    min-width: 720px;
  }

  .s1440\:active\:min-w-0:active{
    min-width: 0;
  }

  .s1440\:active\:min-w-1:active{
    min-width: 0.25rem;
  }

  .s1440\:active\:min-w-2:active{
    min-width: 0.5rem;
  }

  .s1440\:active\:min-w-3:active{
    min-width: 0.75rem;
  }

  .s1440\:active\:min-w-4:active{
    min-width: 1rem;
  }

  .s1440\:active\:min-w-5:active{
    min-width: 1.25rem;
  }

  .s1440\:active\:min-w-6:active{
    min-width: 1.5rem;
  }

  .s1440\:active\:min-w-8:active{
    min-width: 2rem;
  }

  .s1440\:active\:min-w-10:active{
    min-width: 2.5rem;
  }

  .s1440\:active\:min-w-12:active{
    min-width: 3rem;
  }

  .s1440\:active\:min-w-14:active{
    min-width: 3.5rem;
  }

  .s1440\:active\:min-w-16:active{
    min-width: 4rem;
  }

  .s1440\:active\:min-w-20:active{
    min-width: 5rem;
  }

  .s1440\:active\:min-w-24:active{
    min-width: 6rem;
  }

  .s1440\:active\:min-w-32:active{
    min-width: 8rem;
  }

  .s1440\:active\:min-w-36:active{
    min-width: 9rem;
  }

  .s1440\:active\:min-w-40:active{
    min-width: 10rem;
  }

  .s1440\:active\:min-w-48:active{
    min-width: 12rem;
  }

  .s1440\:active\:min-w-56:active{
    min-width: 14rem;
  }

  .s1440\:active\:min-w-64:active{
    min-width: 16rem;
  }

  .s1440\:active\:min-w-full:active{
    min-width: 100%;
  }

  .s1440\:active\:min-w-auto:active{
    min-width: auto;
  }

  .s1440\:active\:min-w-px:active{
    min-width: 1px;
  }

  .s1440\:active\:min-w-1\/2:active{
    min-width: 50%;
  }

  .s1440\:active\:min-w-1\/3:active{
    min-width: 33.333333%;
  }

  .s1440\:active\:min-w-2\/3:active{
    min-width: 66.666667%;
  }

  .s1440\:active\:min-w-1\/4:active{
    min-width: 25%;
  }

  .s1440\:active\:min-w-2\/4:active{
    min-width: 50%;
  }

  .s1440\:active\:min-w-3\/4:active{
    min-width: 75%;
  }

  .s1440\:active\:min-w-1\/5:active{
    min-width: 20%;
  }

  .s1440\:active\:min-w-2\/5:active{
    min-width: 40%;
  }

  .s1440\:active\:min-w-3\/5:active{
    min-width: 60%;
  }

  .s1440\:active\:min-w-4\/5:active{
    min-width: 80%;
  }

  .s1440\:active\:min-w-1\/6:active{
    min-width: 16.666667%;
  }

  .s1440\:active\:min-w-2\/6:active{
    min-width: 33.333333%;
  }

  .s1440\:active\:min-w-3\/6:active{
    min-width: 50%;
  }

  .s1440\:active\:min-w-4\/6:active{
    min-width: 66.666667%;
  }

  .s1440\:active\:min-w-5\/6:active{
    min-width: 83.333333%;
  }

  .s1440\:active\:min-w-1\/12:active{
    min-width: 8.333333%;
  }

  .s1440\:active\:min-w-2\/12:active{
    min-width: 16.666667%;
  }

  .s1440\:active\:min-w-3\/12:active{
    min-width: 25%;
  }

  .s1440\:active\:min-w-4\/12:active{
    min-width: 33.333333%;
  }

  .s1440\:active\:min-w-5\/12:active{
    min-width: 41.666667%;
  }

  .s1440\:active\:min-w-6\/12:active{
    min-width: 50%;
  }

  .s1440\:active\:min-w-7\/12:active{
    min-width: 58.333333%;
  }

  .s1440\:active\:min-w-8\/12:active{
    min-width: 66.666667%;
  }

  .s1440\:active\:min-w-9\/12:active{
    min-width: 75%;
  }

  .s1440\:active\:min-w-10\/12:active{
    min-width: 83.333333%;
  }

  .s1440\:active\:min-w-11\/12:active{
    min-width: 91.666667%;
  }

  .s1440\:active\:min-w-screen:active{
    min-width: 100vw;
  }

  .s1440\:active\:min-w-widePage:active{
    min-width: 120rem;
  }

  .s1440\:active\:min-w-page:active{
    min-width: 80rem;
  }

  .s1440\:active\:min-w-container:active{
    min-width: 77.25rem;
  }

  .s1440\:active\:min-w-tooltip:active{
    min-width: 25rem;
  }

  .s1440\:active\:min-w-smallTooltip:active{
    min-width: 15rem;
  }

  .s1440\:active\:min-w-xsmallTooltip:active{
    min-width: 6.0rem;
  }

  .s1440\:active\:min-w-sidebar:active{
    min-width: 27rem;
  }

  .s1440\:active\:min-w-doubleSidebar:active{
    min-width: 360px;
  }

  .s1440\:active\:min-w-practiceSidebar:active{
    min-width: 22.5rem;
  }

  .s1440\:active\:min-w-3\/8:active{
    min-width: 37.5%;
  }

  .s1440\:active\:min-w-1\/10:active{
    min-width: 10%;
  }

  .s1440\:active\:min-w-2\/10:active{
    min-width: 20%;
  }

  .s1440\:active\:min-w-3\/10:active{
    min-width: 30%;
  }

  .s1440\:active\:min-w-4\/10:active{
    min-width: 40%;
  }

  .s1440\:active\:min-w-5\/10:active{
    min-width: 50%;
  }

  .s1440\:active\:min-w-6\/10:active{
    min-width: 60%;
  }

  .s1440\:active\:min-w-7\/10:active{
    min-width: 70%;
  }

  .s1440\:active\:min-w-8\/10:active{
    min-width: 80%;
  }

  .s1440\:active\:min-w-9\/10:active{
    min-width: 90%;
  }

  .s1440\:active\:min-w-input:active{
    min-width: 15.75rem;
  }

  .s1440\:active\:min-w-inherit:active{
    min-width: inherit;
  }

  .s1440\:active\:min-w-modalMd:active{
    min-width: 37.5rem;
  }

  .s1440\:active\:min-w-modalMdXl:active{
    min-width: 52.5rem;
  }

  .s1440\:active\:min-w-modalLg:active{
    min-width: 77.25rem;
  }

  .s1440\:active\:min-w-doubleSidebarContent:active{
    min-width: 720px;
  }

  .s1440\:first\:min-w-0:first-child{
    min-width: 0;
  }

  .s1440\:first\:min-w-1:first-child{
    min-width: 0.25rem;
  }

  .s1440\:first\:min-w-2:first-child{
    min-width: 0.5rem;
  }

  .s1440\:first\:min-w-3:first-child{
    min-width: 0.75rem;
  }

  .s1440\:first\:min-w-4:first-child{
    min-width: 1rem;
  }

  .s1440\:first\:min-w-5:first-child{
    min-width: 1.25rem;
  }

  .s1440\:first\:min-w-6:first-child{
    min-width: 1.5rem;
  }

  .s1440\:first\:min-w-8:first-child{
    min-width: 2rem;
  }

  .s1440\:first\:min-w-10:first-child{
    min-width: 2.5rem;
  }

  .s1440\:first\:min-w-12:first-child{
    min-width: 3rem;
  }

  .s1440\:first\:min-w-14:first-child{
    min-width: 3.5rem;
  }

  .s1440\:first\:min-w-16:first-child{
    min-width: 4rem;
  }

  .s1440\:first\:min-w-20:first-child{
    min-width: 5rem;
  }

  .s1440\:first\:min-w-24:first-child{
    min-width: 6rem;
  }

  .s1440\:first\:min-w-32:first-child{
    min-width: 8rem;
  }

  .s1440\:first\:min-w-36:first-child{
    min-width: 9rem;
  }

  .s1440\:first\:min-w-40:first-child{
    min-width: 10rem;
  }

  .s1440\:first\:min-w-48:first-child{
    min-width: 12rem;
  }

  .s1440\:first\:min-w-56:first-child{
    min-width: 14rem;
  }

  .s1440\:first\:min-w-64:first-child{
    min-width: 16rem;
  }

  .s1440\:first\:min-w-full:first-child{
    min-width: 100%;
  }

  .s1440\:first\:min-w-auto:first-child{
    min-width: auto;
  }

  .s1440\:first\:min-w-px:first-child{
    min-width: 1px;
  }

  .s1440\:first\:min-w-1\/2:first-child{
    min-width: 50%;
  }

  .s1440\:first\:min-w-1\/3:first-child{
    min-width: 33.333333%;
  }

  .s1440\:first\:min-w-2\/3:first-child{
    min-width: 66.666667%;
  }

  .s1440\:first\:min-w-1\/4:first-child{
    min-width: 25%;
  }

  .s1440\:first\:min-w-2\/4:first-child{
    min-width: 50%;
  }

  .s1440\:first\:min-w-3\/4:first-child{
    min-width: 75%;
  }

  .s1440\:first\:min-w-1\/5:first-child{
    min-width: 20%;
  }

  .s1440\:first\:min-w-2\/5:first-child{
    min-width: 40%;
  }

  .s1440\:first\:min-w-3\/5:first-child{
    min-width: 60%;
  }

  .s1440\:first\:min-w-4\/5:first-child{
    min-width: 80%;
  }

  .s1440\:first\:min-w-1\/6:first-child{
    min-width: 16.666667%;
  }

  .s1440\:first\:min-w-2\/6:first-child{
    min-width: 33.333333%;
  }

  .s1440\:first\:min-w-3\/6:first-child{
    min-width: 50%;
  }

  .s1440\:first\:min-w-4\/6:first-child{
    min-width: 66.666667%;
  }

  .s1440\:first\:min-w-5\/6:first-child{
    min-width: 83.333333%;
  }

  .s1440\:first\:min-w-1\/12:first-child{
    min-width: 8.333333%;
  }

  .s1440\:first\:min-w-2\/12:first-child{
    min-width: 16.666667%;
  }

  .s1440\:first\:min-w-3\/12:first-child{
    min-width: 25%;
  }

  .s1440\:first\:min-w-4\/12:first-child{
    min-width: 33.333333%;
  }

  .s1440\:first\:min-w-5\/12:first-child{
    min-width: 41.666667%;
  }

  .s1440\:first\:min-w-6\/12:first-child{
    min-width: 50%;
  }

  .s1440\:first\:min-w-7\/12:first-child{
    min-width: 58.333333%;
  }

  .s1440\:first\:min-w-8\/12:first-child{
    min-width: 66.666667%;
  }

  .s1440\:first\:min-w-9\/12:first-child{
    min-width: 75%;
  }

  .s1440\:first\:min-w-10\/12:first-child{
    min-width: 83.333333%;
  }

  .s1440\:first\:min-w-11\/12:first-child{
    min-width: 91.666667%;
  }

  .s1440\:first\:min-w-screen:first-child{
    min-width: 100vw;
  }

  .s1440\:first\:min-w-widePage:first-child{
    min-width: 120rem;
  }

  .s1440\:first\:min-w-page:first-child{
    min-width: 80rem;
  }

  .s1440\:first\:min-w-container:first-child{
    min-width: 77.25rem;
  }

  .s1440\:first\:min-w-tooltip:first-child{
    min-width: 25rem;
  }

  .s1440\:first\:min-w-smallTooltip:first-child{
    min-width: 15rem;
  }

  .s1440\:first\:min-w-xsmallTooltip:first-child{
    min-width: 6.0rem;
  }

  .s1440\:first\:min-w-sidebar:first-child{
    min-width: 27rem;
  }

  .s1440\:first\:min-w-doubleSidebar:first-child{
    min-width: 360px;
  }

  .s1440\:first\:min-w-practiceSidebar:first-child{
    min-width: 22.5rem;
  }

  .s1440\:first\:min-w-3\/8:first-child{
    min-width: 37.5%;
  }

  .s1440\:first\:min-w-1\/10:first-child{
    min-width: 10%;
  }

  .s1440\:first\:min-w-2\/10:first-child{
    min-width: 20%;
  }

  .s1440\:first\:min-w-3\/10:first-child{
    min-width: 30%;
  }

  .s1440\:first\:min-w-4\/10:first-child{
    min-width: 40%;
  }

  .s1440\:first\:min-w-5\/10:first-child{
    min-width: 50%;
  }

  .s1440\:first\:min-w-6\/10:first-child{
    min-width: 60%;
  }

  .s1440\:first\:min-w-7\/10:first-child{
    min-width: 70%;
  }

  .s1440\:first\:min-w-8\/10:first-child{
    min-width: 80%;
  }

  .s1440\:first\:min-w-9\/10:first-child{
    min-width: 90%;
  }

  .s1440\:first\:min-w-input:first-child{
    min-width: 15.75rem;
  }

  .s1440\:first\:min-w-inherit:first-child{
    min-width: inherit;
  }

  .s1440\:first\:min-w-modalMd:first-child{
    min-width: 37.5rem;
  }

  .s1440\:first\:min-w-modalMdXl:first-child{
    min-width: 52.5rem;
  }

  .s1440\:first\:min-w-modalLg:first-child{
    min-width: 77.25rem;
  }

  .s1440\:first\:min-w-doubleSidebarContent:first-child{
    min-width: 720px;
  }

  .s1440\:last\:min-w-0:last-child{
    min-width: 0;
  }

  .s1440\:last\:min-w-1:last-child{
    min-width: 0.25rem;
  }

  .s1440\:last\:min-w-2:last-child{
    min-width: 0.5rem;
  }

  .s1440\:last\:min-w-3:last-child{
    min-width: 0.75rem;
  }

  .s1440\:last\:min-w-4:last-child{
    min-width: 1rem;
  }

  .s1440\:last\:min-w-5:last-child{
    min-width: 1.25rem;
  }

  .s1440\:last\:min-w-6:last-child{
    min-width: 1.5rem;
  }

  .s1440\:last\:min-w-8:last-child{
    min-width: 2rem;
  }

  .s1440\:last\:min-w-10:last-child{
    min-width: 2.5rem;
  }

  .s1440\:last\:min-w-12:last-child{
    min-width: 3rem;
  }

  .s1440\:last\:min-w-14:last-child{
    min-width: 3.5rem;
  }

  .s1440\:last\:min-w-16:last-child{
    min-width: 4rem;
  }

  .s1440\:last\:min-w-20:last-child{
    min-width: 5rem;
  }

  .s1440\:last\:min-w-24:last-child{
    min-width: 6rem;
  }

  .s1440\:last\:min-w-32:last-child{
    min-width: 8rem;
  }

  .s1440\:last\:min-w-36:last-child{
    min-width: 9rem;
  }

  .s1440\:last\:min-w-40:last-child{
    min-width: 10rem;
  }

  .s1440\:last\:min-w-48:last-child{
    min-width: 12rem;
  }

  .s1440\:last\:min-w-56:last-child{
    min-width: 14rem;
  }

  .s1440\:last\:min-w-64:last-child{
    min-width: 16rem;
  }

  .s1440\:last\:min-w-full:last-child{
    min-width: 100%;
  }

  .s1440\:last\:min-w-auto:last-child{
    min-width: auto;
  }

  .s1440\:last\:min-w-px:last-child{
    min-width: 1px;
  }

  .s1440\:last\:min-w-1\/2:last-child{
    min-width: 50%;
  }

  .s1440\:last\:min-w-1\/3:last-child{
    min-width: 33.333333%;
  }

  .s1440\:last\:min-w-2\/3:last-child{
    min-width: 66.666667%;
  }

  .s1440\:last\:min-w-1\/4:last-child{
    min-width: 25%;
  }

  .s1440\:last\:min-w-2\/4:last-child{
    min-width: 50%;
  }

  .s1440\:last\:min-w-3\/4:last-child{
    min-width: 75%;
  }

  .s1440\:last\:min-w-1\/5:last-child{
    min-width: 20%;
  }

  .s1440\:last\:min-w-2\/5:last-child{
    min-width: 40%;
  }

  .s1440\:last\:min-w-3\/5:last-child{
    min-width: 60%;
  }

  .s1440\:last\:min-w-4\/5:last-child{
    min-width: 80%;
  }

  .s1440\:last\:min-w-1\/6:last-child{
    min-width: 16.666667%;
  }

  .s1440\:last\:min-w-2\/6:last-child{
    min-width: 33.333333%;
  }

  .s1440\:last\:min-w-3\/6:last-child{
    min-width: 50%;
  }

  .s1440\:last\:min-w-4\/6:last-child{
    min-width: 66.666667%;
  }

  .s1440\:last\:min-w-5\/6:last-child{
    min-width: 83.333333%;
  }

  .s1440\:last\:min-w-1\/12:last-child{
    min-width: 8.333333%;
  }

  .s1440\:last\:min-w-2\/12:last-child{
    min-width: 16.666667%;
  }

  .s1440\:last\:min-w-3\/12:last-child{
    min-width: 25%;
  }

  .s1440\:last\:min-w-4\/12:last-child{
    min-width: 33.333333%;
  }

  .s1440\:last\:min-w-5\/12:last-child{
    min-width: 41.666667%;
  }

  .s1440\:last\:min-w-6\/12:last-child{
    min-width: 50%;
  }

  .s1440\:last\:min-w-7\/12:last-child{
    min-width: 58.333333%;
  }

  .s1440\:last\:min-w-8\/12:last-child{
    min-width: 66.666667%;
  }

  .s1440\:last\:min-w-9\/12:last-child{
    min-width: 75%;
  }

  .s1440\:last\:min-w-10\/12:last-child{
    min-width: 83.333333%;
  }

  .s1440\:last\:min-w-11\/12:last-child{
    min-width: 91.666667%;
  }

  .s1440\:last\:min-w-screen:last-child{
    min-width: 100vw;
  }

  .s1440\:last\:min-w-widePage:last-child{
    min-width: 120rem;
  }

  .s1440\:last\:min-w-page:last-child{
    min-width: 80rem;
  }

  .s1440\:last\:min-w-container:last-child{
    min-width: 77.25rem;
  }

  .s1440\:last\:min-w-tooltip:last-child{
    min-width: 25rem;
  }

  .s1440\:last\:min-w-smallTooltip:last-child{
    min-width: 15rem;
  }

  .s1440\:last\:min-w-xsmallTooltip:last-child{
    min-width: 6.0rem;
  }

  .s1440\:last\:min-w-sidebar:last-child{
    min-width: 27rem;
  }

  .s1440\:last\:min-w-doubleSidebar:last-child{
    min-width: 360px;
  }

  .s1440\:last\:min-w-practiceSidebar:last-child{
    min-width: 22.5rem;
  }

  .s1440\:last\:min-w-3\/8:last-child{
    min-width: 37.5%;
  }

  .s1440\:last\:min-w-1\/10:last-child{
    min-width: 10%;
  }

  .s1440\:last\:min-w-2\/10:last-child{
    min-width: 20%;
  }

  .s1440\:last\:min-w-3\/10:last-child{
    min-width: 30%;
  }

  .s1440\:last\:min-w-4\/10:last-child{
    min-width: 40%;
  }

  .s1440\:last\:min-w-5\/10:last-child{
    min-width: 50%;
  }

  .s1440\:last\:min-w-6\/10:last-child{
    min-width: 60%;
  }

  .s1440\:last\:min-w-7\/10:last-child{
    min-width: 70%;
  }

  .s1440\:last\:min-w-8\/10:last-child{
    min-width: 80%;
  }

  .s1440\:last\:min-w-9\/10:last-child{
    min-width: 90%;
  }

  .s1440\:last\:min-w-input:last-child{
    min-width: 15.75rem;
  }

  .s1440\:last\:min-w-inherit:last-child{
    min-width: inherit;
  }

  .s1440\:last\:min-w-modalMd:last-child{
    min-width: 37.5rem;
  }

  .s1440\:last\:min-w-modalMdXl:last-child{
    min-width: 52.5rem;
  }

  .s1440\:last\:min-w-modalLg:last-child{
    min-width: 77.25rem;
  }

  .s1440\:last\:min-w-doubleSidebarContent:last-child{
    min-width: 720px;
  }

  .s1440\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1440\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1440\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1440\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1440\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1440\:hover\:object-contain:hover{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1440\:hover\:object-cover:hover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1440\:hover\:object-fill:hover{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1440\:hover\:object-none:hover{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1440\:hover\:object-scale-down:hover{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1440\:focus\:object-contain:focus{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1440\:focus\:object-cover:focus{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1440\:focus\:object-fill:focus{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1440\:focus\:object-none:focus{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1440\:focus\:object-scale-down:focus{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1440\:active\:object-contain:active{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1440\:active\:object-cover:active{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1440\:active\:object-fill:active{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1440\:active\:object-none:active{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1440\:active\:object-scale-down:active{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1440\:first\:object-contain:first-child{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1440\:first\:object-cover:first-child{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1440\:first\:object-fill:first-child{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1440\:first\:object-none:first-child{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1440\:first\:object-scale-down:first-child{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1440\:last\:object-contain:last-child{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1440\:last\:object-cover:last-child{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1440\:last\:object-fill:last-child{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1440\:last\:object-none:last-child{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1440\:last\:object-scale-down:last-child{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1440\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1440\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .s1440\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .s1440\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1440\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1440\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .s1440\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1440\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1440\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .s1440\:hover\:object-bottom:hover{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1440\:hover\:object-center:hover{
    -o-object-position: center;
       object-position: center;
  }

  .s1440\:hover\:object-left:hover{
    -o-object-position: left;
       object-position: left;
  }

  .s1440\:hover\:object-left-bottom:hover{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1440\:hover\:object-left-top:hover{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1440\:hover\:object-right:hover{
    -o-object-position: right;
       object-position: right;
  }

  .s1440\:hover\:object-right-bottom:hover{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1440\:hover\:object-right-top:hover{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1440\:hover\:object-top:hover{
    -o-object-position: top;
       object-position: top;
  }

  .s1440\:focus\:object-bottom:focus{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1440\:focus\:object-center:focus{
    -o-object-position: center;
       object-position: center;
  }

  .s1440\:focus\:object-left:focus{
    -o-object-position: left;
       object-position: left;
  }

  .s1440\:focus\:object-left-bottom:focus{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1440\:focus\:object-left-top:focus{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1440\:focus\:object-right:focus{
    -o-object-position: right;
       object-position: right;
  }

  .s1440\:focus\:object-right-bottom:focus{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1440\:focus\:object-right-top:focus{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1440\:focus\:object-top:focus{
    -o-object-position: top;
       object-position: top;
  }

  .s1440\:active\:object-bottom:active{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1440\:active\:object-center:active{
    -o-object-position: center;
       object-position: center;
  }

  .s1440\:active\:object-left:active{
    -o-object-position: left;
       object-position: left;
  }

  .s1440\:active\:object-left-bottom:active{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1440\:active\:object-left-top:active{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1440\:active\:object-right:active{
    -o-object-position: right;
       object-position: right;
  }

  .s1440\:active\:object-right-bottom:active{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1440\:active\:object-right-top:active{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1440\:active\:object-top:active{
    -o-object-position: top;
       object-position: top;
  }

  .s1440\:first\:object-bottom:first-child{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1440\:first\:object-center:first-child{
    -o-object-position: center;
       object-position: center;
  }

  .s1440\:first\:object-left:first-child{
    -o-object-position: left;
       object-position: left;
  }

  .s1440\:first\:object-left-bottom:first-child{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1440\:first\:object-left-top:first-child{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1440\:first\:object-right:first-child{
    -o-object-position: right;
       object-position: right;
  }

  .s1440\:first\:object-right-bottom:first-child{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1440\:first\:object-right-top:first-child{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1440\:first\:object-top:first-child{
    -o-object-position: top;
       object-position: top;
  }

  .s1440\:last\:object-bottom:last-child{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1440\:last\:object-center:last-child{
    -o-object-position: center;
       object-position: center;
  }

  .s1440\:last\:object-left:last-child{
    -o-object-position: left;
       object-position: left;
  }

  .s1440\:last\:object-left-bottom:last-child{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1440\:last\:object-left-top:last-child{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1440\:last\:object-right:last-child{
    -o-object-position: right;
       object-position: right;
  }

  .s1440\:last\:object-right-bottom:last-child{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1440\:last\:object-right-top:last-child{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1440\:last\:object-top:last-child{
    -o-object-position: top;
       object-position: top;
  }

  .s1440\:opacity-0{
    opacity: 0;
  }

  .s1440\:opacity-25{
    opacity: 0.25;
  }

  .s1440\:opacity-50{
    opacity: .5;
  }

  .s1440\:opacity-75{
    opacity: 0.75;
  }

  .s1440\:opacity-80{
    opacity: .8;
  }

  .s1440\:opacity-100{
    opacity: 1;
  }

  .s1440\:hover\:opacity-0:hover{
    opacity: 0;
  }

  .s1440\:hover\:opacity-25:hover{
    opacity: 0.25;
  }

  .s1440\:hover\:opacity-50:hover{
    opacity: .5;
  }

  .s1440\:hover\:opacity-75:hover{
    opacity: 0.75;
  }

  .s1440\:hover\:opacity-80:hover{
    opacity: .8;
  }

  .s1440\:hover\:opacity-100:hover{
    opacity: 1;
  }

  .s1440\:focus\:opacity-0:focus{
    opacity: 0;
  }

  .s1440\:focus\:opacity-25:focus{
    opacity: 0.25;
  }

  .s1440\:focus\:opacity-50:focus{
    opacity: .5;
  }

  .s1440\:focus\:opacity-75:focus{
    opacity: 0.75;
  }

  .s1440\:focus\:opacity-80:focus{
    opacity: .8;
  }

  .s1440\:focus\:opacity-100:focus{
    opacity: 1;
  }

  .s1440\:active\:opacity-0:active{
    opacity: 0;
  }

  .s1440\:active\:opacity-25:active{
    opacity: 0.25;
  }

  .s1440\:active\:opacity-50:active{
    opacity: .5;
  }

  .s1440\:active\:opacity-75:active{
    opacity: 0.75;
  }

  .s1440\:active\:opacity-80:active{
    opacity: .8;
  }

  .s1440\:active\:opacity-100:active{
    opacity: 1;
  }

  .s1440\:first\:opacity-0:first-child{
    opacity: 0;
  }

  .s1440\:first\:opacity-25:first-child{
    opacity: 0.25;
  }

  .s1440\:first\:opacity-50:first-child{
    opacity: .5;
  }

  .s1440\:first\:opacity-75:first-child{
    opacity: 0.75;
  }

  .s1440\:first\:opacity-80:first-child{
    opacity: .8;
  }

  .s1440\:first\:opacity-100:first-child{
    opacity: 1;
  }

  .s1440\:last\:opacity-0:last-child{
    opacity: 0;
  }

  .s1440\:last\:opacity-25:last-child{
    opacity: 0.25;
  }

  .s1440\:last\:opacity-50:last-child{
    opacity: .5;
  }

  .s1440\:last\:opacity-75:last-child{
    opacity: 0.75;
  }

  .s1440\:last\:opacity-80:last-child{
    opacity: .8;
  }

  .s1440\:last\:opacity-100:last-child{
    opacity: 1;
  }

  .s1440\:outline-none{
    outline: 0;
  }

  .s1440\:hover\:outline-none:hover{
    outline: 0;
  }

  .s1440\:focus\:outline-none:focus{
    outline: 0;
  }

  .s1440\:active\:outline-none:active{
    outline: 0;
  }

  .s1440\:first\:outline-none:first-child{
    outline: 0;
  }

  .s1440\:last\:outline-none:last-child{
    outline: 0;
  }

  .s1440\:overflow-auto{
    overflow: auto;
  }

  .s1440\:overflow-hidden{
    overflow: hidden;
  }

  .s1440\:overflow-visible{
    overflow: visible;
  }

  .s1440\:overflow-scroll{
    overflow: scroll;
  }

  .s1440\:overflow-x-auto{
    overflow-x: auto;
  }

  .s1440\:overflow-y-auto{
    overflow-y: auto;
  }

  .s1440\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .s1440\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .s1440\:overflow-x-visible{
    overflow-x: visible;
  }

  .s1440\:overflow-y-visible{
    overflow-y: visible;
  }

  .s1440\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .s1440\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .s1440\:scrolling-touch{
    -webkit-overflow-scrolling: touch;
  }

  .s1440\:scrolling-auto{
    -webkit-overflow-scrolling: auto;
  }

  .s1440\:hover\:overflow-auto:hover{
    overflow: auto;
  }

  .s1440\:hover\:overflow-hidden:hover{
    overflow: hidden;
  }

  .s1440\:hover\:overflow-visible:hover{
    overflow: visible;
  }

  .s1440\:hover\:overflow-scroll:hover{
    overflow: scroll;
  }

  .s1440\:hover\:overflow-x-auto:hover{
    overflow-x: auto;
  }

  .s1440\:hover\:overflow-y-auto:hover{
    overflow-y: auto;
  }

  .s1440\:hover\:overflow-x-hidden:hover{
    overflow-x: hidden;
  }

  .s1440\:hover\:overflow-y-hidden:hover{
    overflow-y: hidden;
  }

  .s1440\:hover\:overflow-x-visible:hover{
    overflow-x: visible;
  }

  .s1440\:hover\:overflow-y-visible:hover{
    overflow-y: visible;
  }

  .s1440\:hover\:overflow-x-scroll:hover{
    overflow-x: scroll;
  }

  .s1440\:hover\:overflow-y-scroll:hover{
    overflow-y: scroll;
  }

  .s1440\:hover\:scrolling-touch:hover{
    -webkit-overflow-scrolling: touch;
  }

  .s1440\:hover\:scrolling-auto:hover{
    -webkit-overflow-scrolling: auto;
  }

  .s1440\:focus\:overflow-auto:focus{
    overflow: auto;
  }

  .s1440\:focus\:overflow-hidden:focus{
    overflow: hidden;
  }

  .s1440\:focus\:overflow-visible:focus{
    overflow: visible;
  }

  .s1440\:focus\:overflow-scroll:focus{
    overflow: scroll;
  }

  .s1440\:focus\:overflow-x-auto:focus{
    overflow-x: auto;
  }

  .s1440\:focus\:overflow-y-auto:focus{
    overflow-y: auto;
  }

  .s1440\:focus\:overflow-x-hidden:focus{
    overflow-x: hidden;
  }

  .s1440\:focus\:overflow-y-hidden:focus{
    overflow-y: hidden;
  }

  .s1440\:focus\:overflow-x-visible:focus{
    overflow-x: visible;
  }

  .s1440\:focus\:overflow-y-visible:focus{
    overflow-y: visible;
  }

  .s1440\:focus\:overflow-x-scroll:focus{
    overflow-x: scroll;
  }

  .s1440\:focus\:overflow-y-scroll:focus{
    overflow-y: scroll;
  }

  .s1440\:focus\:scrolling-touch:focus{
    -webkit-overflow-scrolling: touch;
  }

  .s1440\:focus\:scrolling-auto:focus{
    -webkit-overflow-scrolling: auto;
  }

  .s1440\:active\:overflow-auto:active{
    overflow: auto;
  }

  .s1440\:active\:overflow-hidden:active{
    overflow: hidden;
  }

  .s1440\:active\:overflow-visible:active{
    overflow: visible;
  }

  .s1440\:active\:overflow-scroll:active{
    overflow: scroll;
  }

  .s1440\:active\:overflow-x-auto:active{
    overflow-x: auto;
  }

  .s1440\:active\:overflow-y-auto:active{
    overflow-y: auto;
  }

  .s1440\:active\:overflow-x-hidden:active{
    overflow-x: hidden;
  }

  .s1440\:active\:overflow-y-hidden:active{
    overflow-y: hidden;
  }

  .s1440\:active\:overflow-x-visible:active{
    overflow-x: visible;
  }

  .s1440\:active\:overflow-y-visible:active{
    overflow-y: visible;
  }

  .s1440\:active\:overflow-x-scroll:active{
    overflow-x: scroll;
  }

  .s1440\:active\:overflow-y-scroll:active{
    overflow-y: scroll;
  }

  .s1440\:active\:scrolling-touch:active{
    -webkit-overflow-scrolling: touch;
  }

  .s1440\:active\:scrolling-auto:active{
    -webkit-overflow-scrolling: auto;
  }

  .s1440\:first\:overflow-auto:first-child{
    overflow: auto;
  }

  .s1440\:first\:overflow-hidden:first-child{
    overflow: hidden;
  }

  .s1440\:first\:overflow-visible:first-child{
    overflow: visible;
  }

  .s1440\:first\:overflow-scroll:first-child{
    overflow: scroll;
  }

  .s1440\:first\:overflow-x-auto:first-child{
    overflow-x: auto;
  }

  .s1440\:first\:overflow-y-auto:first-child{
    overflow-y: auto;
  }

  .s1440\:first\:overflow-x-hidden:first-child{
    overflow-x: hidden;
  }

  .s1440\:first\:overflow-y-hidden:first-child{
    overflow-y: hidden;
  }

  .s1440\:first\:overflow-x-visible:first-child{
    overflow-x: visible;
  }

  .s1440\:first\:overflow-y-visible:first-child{
    overflow-y: visible;
  }

  .s1440\:first\:overflow-x-scroll:first-child{
    overflow-x: scroll;
  }

  .s1440\:first\:overflow-y-scroll:first-child{
    overflow-y: scroll;
  }

  .s1440\:first\:scrolling-touch:first-child{
    -webkit-overflow-scrolling: touch;
  }

  .s1440\:first\:scrolling-auto:first-child{
    -webkit-overflow-scrolling: auto;
  }

  .s1440\:last\:overflow-auto:last-child{
    overflow: auto;
  }

  .s1440\:last\:overflow-hidden:last-child{
    overflow: hidden;
  }

  .s1440\:last\:overflow-visible:last-child{
    overflow: visible;
  }

  .s1440\:last\:overflow-scroll:last-child{
    overflow: scroll;
  }

  .s1440\:last\:overflow-x-auto:last-child{
    overflow-x: auto;
  }

  .s1440\:last\:overflow-y-auto:last-child{
    overflow-y: auto;
  }

  .s1440\:last\:overflow-x-hidden:last-child{
    overflow-x: hidden;
  }

  .s1440\:last\:overflow-y-hidden:last-child{
    overflow-y: hidden;
  }

  .s1440\:last\:overflow-x-visible:last-child{
    overflow-x: visible;
  }

  .s1440\:last\:overflow-y-visible:last-child{
    overflow-y: visible;
  }

  .s1440\:last\:overflow-x-scroll:last-child{
    overflow-x: scroll;
  }

  .s1440\:last\:overflow-y-scroll:last-child{
    overflow-y: scroll;
  }

  .s1440\:last\:scrolling-touch:last-child{
    -webkit-overflow-scrolling: touch;
  }

  .s1440\:last\:scrolling-auto:last-child{
    -webkit-overflow-scrolling: auto;
  }

  .s1440\:overscroll-auto{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1440\:overscroll-contain{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1440\:overscroll-none{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1440\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .s1440\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .s1440\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .s1440\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .s1440\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .s1440\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .s1440\:hover\:overscroll-auto:hover{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1440\:hover\:overscroll-contain:hover{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1440\:hover\:overscroll-none:hover{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1440\:hover\:overscroll-y-auto:hover{
    overscroll-behavior-y: auto;
  }

  .s1440\:hover\:overscroll-y-contain:hover{
    overscroll-behavior-y: contain;
  }

  .s1440\:hover\:overscroll-y-none:hover{
    overscroll-behavior-y: none;
  }

  .s1440\:hover\:overscroll-x-auto:hover{
    overscroll-behavior-x: auto;
  }

  .s1440\:hover\:overscroll-x-contain:hover{
    overscroll-behavior-x: contain;
  }

  .s1440\:hover\:overscroll-x-none:hover{
    overscroll-behavior-x: none;
  }

  .s1440\:focus\:overscroll-auto:focus{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1440\:focus\:overscroll-contain:focus{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1440\:focus\:overscroll-none:focus{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1440\:focus\:overscroll-y-auto:focus{
    overscroll-behavior-y: auto;
  }

  .s1440\:focus\:overscroll-y-contain:focus{
    overscroll-behavior-y: contain;
  }

  .s1440\:focus\:overscroll-y-none:focus{
    overscroll-behavior-y: none;
  }

  .s1440\:focus\:overscroll-x-auto:focus{
    overscroll-behavior-x: auto;
  }

  .s1440\:focus\:overscroll-x-contain:focus{
    overscroll-behavior-x: contain;
  }

  .s1440\:focus\:overscroll-x-none:focus{
    overscroll-behavior-x: none;
  }

  .s1440\:active\:overscroll-auto:active{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1440\:active\:overscroll-contain:active{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1440\:active\:overscroll-none:active{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1440\:active\:overscroll-y-auto:active{
    overscroll-behavior-y: auto;
  }

  .s1440\:active\:overscroll-y-contain:active{
    overscroll-behavior-y: contain;
  }

  .s1440\:active\:overscroll-y-none:active{
    overscroll-behavior-y: none;
  }

  .s1440\:active\:overscroll-x-auto:active{
    overscroll-behavior-x: auto;
  }

  .s1440\:active\:overscroll-x-contain:active{
    overscroll-behavior-x: contain;
  }

  .s1440\:active\:overscroll-x-none:active{
    overscroll-behavior-x: none;
  }

  .s1440\:first\:overscroll-auto:first-child{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1440\:first\:overscroll-contain:first-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1440\:first\:overscroll-none:first-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1440\:first\:overscroll-y-auto:first-child{
    overscroll-behavior-y: auto;
  }

  .s1440\:first\:overscroll-y-contain:first-child{
    overscroll-behavior-y: contain;
  }

  .s1440\:first\:overscroll-y-none:first-child{
    overscroll-behavior-y: none;
  }

  .s1440\:first\:overscroll-x-auto:first-child{
    overscroll-behavior-x: auto;
  }

  .s1440\:first\:overscroll-x-contain:first-child{
    overscroll-behavior-x: contain;
  }

  .s1440\:first\:overscroll-x-none:first-child{
    overscroll-behavior-x: none;
  }

  .s1440\:last\:overscroll-auto:last-child{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1440\:last\:overscroll-contain:last-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1440\:last\:overscroll-none:last-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1440\:last\:overscroll-y-auto:last-child{
    overscroll-behavior-y: auto;
  }

  .s1440\:last\:overscroll-y-contain:last-child{
    overscroll-behavior-y: contain;
  }

  .s1440\:last\:overscroll-y-none:last-child{
    overscroll-behavior-y: none;
  }

  .s1440\:last\:overscroll-x-auto:last-child{
    overscroll-behavior-x: auto;
  }

  .s1440\:last\:overscroll-x-contain:last-child{
    overscroll-behavior-x: contain;
  }

  .s1440\:last\:overscroll-x-none:last-child{
    overscroll-behavior-x: none;
  }

  .s1440\:p-0{
    padding: 0;
  }

  .s1440\:p-1{
    padding: 0.25rem;
  }

  .s1440\:p-2{
    padding: 0.5rem;
  }

  .s1440\:p-3{
    padding: 0.75rem;
  }

  .s1440\:p-4{
    padding: 1rem;
  }

  .s1440\:p-5{
    padding: 1.25rem;
  }

  .s1440\:p-6{
    padding: 1.5rem;
  }

  .s1440\:p-8{
    padding: 2rem;
  }

  .s1440\:p-9{
    padding: 2.25rem;
  }

  .s1440\:p-10{
    padding: 2.5rem;
  }

  .s1440\:p-11{
    padding: 3rem;
  }

  .s1440\:p-12{
    padding: 3rem;
  }

  .s1440\:p-14{
    padding: 3.5rem;
  }

  .s1440\:p-16{
    padding: 4rem;
  }

  .s1440\:p-20{
    padding: 5rem;
  }

  .s1440\:p-24{
    padding: 6rem;
  }

  .s1440\:p-32{
    padding: 8rem;
  }

  .s1440\:p-40{
    padding: 10rem;
  }

  .s1440\:p-48{
    padding: 12rem;
  }

  .s1440\:p-56{
    padding: 14rem;
  }

  .s1440\:p-64{
    padding: 16rem;
  }

  .s1440\:p-px{
    padding: 1px;
  }

  .s1440\:p-0\.25{
    padding: 0.0625rem;
  }

  .s1440\:p-1\.5{
    padding: 0.375rem;
  }

  .s1440\:p-2\.5{
    padding: 0.625rem;
  }

  .s1440\:p-3\.25{
    padding: 0.8125rem;
  }

  .s1440\:p-3\.5{
    padding: 0.875rem;
  }

  .s1440\:p-5\.25{
    padding: 1.3125rem;
  }

  .s1440\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1440\:px-0{
    padding-left: 0;
    padding-right: 0;
  }

  .s1440\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1440\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1440\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1440\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1440\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1440\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1440\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1440\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1440\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1440\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1440\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1440\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1440\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1440\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1440\:py-9{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1440\:px-9{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1440\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1440\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1440\:py-11{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:px-11{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1440\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1440\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1440\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1440\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1440\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1440\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1440\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1440\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1440\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1440\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1440\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1440\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1440\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1440\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1440\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1440\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1440\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1440\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1440\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1440\:py-0\.25{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1440\:px-0\.25{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1440\:py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1440\:px-1\.5{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1440\:py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1440\:px-2\.5{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1440\:py-3\.25{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1440\:px-3\.25{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1440\:py-3\.5{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1440\:px-3\.5{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1440\:py-5\.25{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1440\:px-5\.25{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1440\:pt-0{
    padding-top: 0;
  }

  .s1440\:pr-0{
    padding-right: 0;
  }

  .s1440\:pb-0{
    padding-bottom: 0;
  }

  .s1440\:pl-0{
    padding-left: 0;
  }

  .s1440\:pt-1{
    padding-top: 0.25rem;
  }

  .s1440\:pr-1{
    padding-right: 0.25rem;
  }

  .s1440\:pb-1{
    padding-bottom: 0.25rem;
  }

  .s1440\:pl-1{
    padding-left: 0.25rem;
  }

  .s1440\:pt-2{
    padding-top: 0.5rem;
  }

  .s1440\:pr-2{
    padding-right: 0.5rem;
  }

  .s1440\:pb-2{
    padding-bottom: 0.5rem;
  }

  .s1440\:pl-2{
    padding-left: 0.5rem;
  }

  .s1440\:pt-3{
    padding-top: 0.75rem;
  }

  .s1440\:pr-3{
    padding-right: 0.75rem;
  }

  .s1440\:pb-3{
    padding-bottom: 0.75rem;
  }

  .s1440\:pl-3{
    padding-left: 0.75rem;
  }

  .s1440\:pt-4{
    padding-top: 1rem;
  }

  .s1440\:pr-4{
    padding-right: 1rem;
  }

  .s1440\:pb-4{
    padding-bottom: 1rem;
  }

  .s1440\:pl-4{
    padding-left: 1rem;
  }

  .s1440\:pt-5{
    padding-top: 1.25rem;
  }

  .s1440\:pr-5{
    padding-right: 1.25rem;
  }

  .s1440\:pb-5{
    padding-bottom: 1.25rem;
  }

  .s1440\:pl-5{
    padding-left: 1.25rem;
  }

  .s1440\:pt-6{
    padding-top: 1.5rem;
  }

  .s1440\:pr-6{
    padding-right: 1.5rem;
  }

  .s1440\:pb-6{
    padding-bottom: 1.5rem;
  }

  .s1440\:pl-6{
    padding-left: 1.5rem;
  }

  .s1440\:pt-8{
    padding-top: 2rem;
  }

  .s1440\:pr-8{
    padding-right: 2rem;
  }

  .s1440\:pb-8{
    padding-bottom: 2rem;
  }

  .s1440\:pl-8{
    padding-left: 2rem;
  }

  .s1440\:pt-9{
    padding-top: 2.25rem;
  }

  .s1440\:pr-9{
    padding-right: 2.25rem;
  }

  .s1440\:pb-9{
    padding-bottom: 2.25rem;
  }

  .s1440\:pl-9{
    padding-left: 2.25rem;
  }

  .s1440\:pt-10{
    padding-top: 2.5rem;
  }

  .s1440\:pr-10{
    padding-right: 2.5rem;
  }

  .s1440\:pb-10{
    padding-bottom: 2.5rem;
  }

  .s1440\:pl-10{
    padding-left: 2.5rem;
  }

  .s1440\:pt-11{
    padding-top: 3rem;
  }

  .s1440\:pr-11{
    padding-right: 3rem;
  }

  .s1440\:pb-11{
    padding-bottom: 3rem;
  }

  .s1440\:pl-11{
    padding-left: 3rem;
  }

  .s1440\:pt-12{
    padding-top: 3rem;
  }

  .s1440\:pr-12{
    padding-right: 3rem;
  }

  .s1440\:pb-12{
    padding-bottom: 3rem;
  }

  .s1440\:pl-12{
    padding-left: 3rem;
  }

  .s1440\:pt-14{
    padding-top: 3.5rem;
  }

  .s1440\:pr-14{
    padding-right: 3.5rem;
  }

  .s1440\:pb-14{
    padding-bottom: 3.5rem;
  }

  .s1440\:pl-14{
    padding-left: 3.5rem;
  }

  .s1440\:pt-16{
    padding-top: 4rem;
  }

  .s1440\:pr-16{
    padding-right: 4rem;
  }

  .s1440\:pb-16{
    padding-bottom: 4rem;
  }

  .s1440\:pl-16{
    padding-left: 4rem;
  }

  .s1440\:pt-20{
    padding-top: 5rem;
  }

  .s1440\:pr-20{
    padding-right: 5rem;
  }

  .s1440\:pb-20{
    padding-bottom: 5rem;
  }

  .s1440\:pl-20{
    padding-left: 5rem;
  }

  .s1440\:pt-24{
    padding-top: 6rem;
  }

  .s1440\:pr-24{
    padding-right: 6rem;
  }

  .s1440\:pb-24{
    padding-bottom: 6rem;
  }

  .s1440\:pl-24{
    padding-left: 6rem;
  }

  .s1440\:pt-32{
    padding-top: 8rem;
  }

  .s1440\:pr-32{
    padding-right: 8rem;
  }

  .s1440\:pb-32{
    padding-bottom: 8rem;
  }

  .s1440\:pl-32{
    padding-left: 8rem;
  }

  .s1440\:pt-40{
    padding-top: 10rem;
  }

  .s1440\:pr-40{
    padding-right: 10rem;
  }

  .s1440\:pb-40{
    padding-bottom: 10rem;
  }

  .s1440\:pl-40{
    padding-left: 10rem;
  }

  .s1440\:pt-48{
    padding-top: 12rem;
  }

  .s1440\:pr-48{
    padding-right: 12rem;
  }

  .s1440\:pb-48{
    padding-bottom: 12rem;
  }

  .s1440\:pl-48{
    padding-left: 12rem;
  }

  .s1440\:pt-56{
    padding-top: 14rem;
  }

  .s1440\:pr-56{
    padding-right: 14rem;
  }

  .s1440\:pb-56{
    padding-bottom: 14rem;
  }

  .s1440\:pl-56{
    padding-left: 14rem;
  }

  .s1440\:pt-64{
    padding-top: 16rem;
  }

  .s1440\:pr-64{
    padding-right: 16rem;
  }

  .s1440\:pb-64{
    padding-bottom: 16rem;
  }

  .s1440\:pl-64{
    padding-left: 16rem;
  }

  .s1440\:pt-px{
    padding-top: 1px;
  }

  .s1440\:pr-px{
    padding-right: 1px;
  }

  .s1440\:pb-px{
    padding-bottom: 1px;
  }

  .s1440\:pl-px{
    padding-left: 1px;
  }

  .s1440\:pt-0\.25{
    padding-top: 0.0625rem;
  }

  .s1440\:pr-0\.25{
    padding-right: 0.0625rem;
  }

  .s1440\:pb-0\.25{
    padding-bottom: 0.0625rem;
  }

  .s1440\:pl-0\.25{
    padding-left: 0.0625rem;
  }

  .s1440\:pt-1\.5{
    padding-top: 0.375rem;
  }

  .s1440\:pr-1\.5{
    padding-right: 0.375rem;
  }

  .s1440\:pb-1\.5{
    padding-bottom: 0.375rem;
  }

  .s1440\:pl-1\.5{
    padding-left: 0.375rem;
  }

  .s1440\:pt-2\.5{
    padding-top: 0.625rem;
  }

  .s1440\:pr-2\.5{
    padding-right: 0.625rem;
  }

  .s1440\:pb-2\.5{
    padding-bottom: 0.625rem;
  }

  .s1440\:pl-2\.5{
    padding-left: 0.625rem;
  }

  .s1440\:pt-3\.25{
    padding-top: 0.8125rem;
  }

  .s1440\:pr-3\.25{
    padding-right: 0.8125rem;
  }

  .s1440\:pb-3\.25{
    padding-bottom: 0.8125rem;
  }

  .s1440\:pl-3\.25{
    padding-left: 0.8125rem;
  }

  .s1440\:pt-3\.5{
    padding-top: 0.875rem;
  }

  .s1440\:pr-3\.5{
    padding-right: 0.875rem;
  }

  .s1440\:pb-3\.5{
    padding-bottom: 0.875rem;
  }

  .s1440\:pl-3\.5{
    padding-left: 0.875rem;
  }

  .s1440\:pt-5\.25{
    padding-top: 1.3125rem;
  }

  .s1440\:pr-5\.25{
    padding-right: 1.3125rem;
  }

  .s1440\:pb-5\.25{
    padding-bottom: 1.3125rem;
  }

  .s1440\:pl-5\.25{
    padding-left: 1.3125rem;
  }

  .s1440\:hover\:p-0:hover{
    padding: 0;
  }

  .s1440\:hover\:p-1:hover{
    padding: 0.25rem;
  }

  .s1440\:hover\:p-2:hover{
    padding: 0.5rem;
  }

  .s1440\:hover\:p-3:hover{
    padding: 0.75rem;
  }

  .s1440\:hover\:p-4:hover{
    padding: 1rem;
  }

  .s1440\:hover\:p-5:hover{
    padding: 1.25rem;
  }

  .s1440\:hover\:p-6:hover{
    padding: 1.5rem;
  }

  .s1440\:hover\:p-8:hover{
    padding: 2rem;
  }

  .s1440\:hover\:p-9:hover{
    padding: 2.25rem;
  }

  .s1440\:hover\:p-10:hover{
    padding: 2.5rem;
  }

  .s1440\:hover\:p-11:hover{
    padding: 3rem;
  }

  .s1440\:hover\:p-12:hover{
    padding: 3rem;
  }

  .s1440\:hover\:p-14:hover{
    padding: 3.5rem;
  }

  .s1440\:hover\:p-16:hover{
    padding: 4rem;
  }

  .s1440\:hover\:p-20:hover{
    padding: 5rem;
  }

  .s1440\:hover\:p-24:hover{
    padding: 6rem;
  }

  .s1440\:hover\:p-32:hover{
    padding: 8rem;
  }

  .s1440\:hover\:p-40:hover{
    padding: 10rem;
  }

  .s1440\:hover\:p-48:hover{
    padding: 12rem;
  }

  .s1440\:hover\:p-56:hover{
    padding: 14rem;
  }

  .s1440\:hover\:p-64:hover{
    padding: 16rem;
  }

  .s1440\:hover\:p-px:hover{
    padding: 1px;
  }

  .s1440\:hover\:p-0\.25:hover{
    padding: 0.0625rem;
  }

  .s1440\:hover\:p-1\.5:hover{
    padding: 0.375rem;
  }

  .s1440\:hover\:p-2\.5:hover{
    padding: 0.625rem;
  }

  .s1440\:hover\:p-3\.25:hover{
    padding: 0.8125rem;
  }

  .s1440\:hover\:p-3\.5:hover{
    padding: 0.875rem;
  }

  .s1440\:hover\:p-5\.25:hover{
    padding: 1.3125rem;
  }

  .s1440\:hover\:py-0:hover{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1440\:hover\:px-0:hover{
    padding-left: 0;
    padding-right: 0;
  }

  .s1440\:hover\:py-1:hover{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1440\:hover\:px-1:hover{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1440\:hover\:py-2:hover{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1440\:hover\:px-2:hover{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1440\:hover\:py-3:hover{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1440\:hover\:px-3:hover{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1440\:hover\:py-4:hover{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1440\:hover\:px-4:hover{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1440\:hover\:py-5:hover{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1440\:hover\:px-5:hover{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1440\:hover\:py-6:hover{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1440\:hover\:px-6:hover{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1440\:hover\:py-8:hover{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1440\:hover\:px-8:hover{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1440\:hover\:py-9:hover{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1440\:hover\:px-9:hover{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1440\:hover\:py-10:hover{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1440\:hover\:px-10:hover{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1440\:hover\:py-11:hover{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:hover\:px-11:hover{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:hover\:py-12:hover{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:hover\:px-12:hover{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:hover\:py-14:hover{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1440\:hover\:px-14:hover{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1440\:hover\:py-16:hover{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1440\:hover\:px-16:hover{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1440\:hover\:py-20:hover{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1440\:hover\:px-20:hover{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1440\:hover\:py-24:hover{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1440\:hover\:px-24:hover{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1440\:hover\:py-32:hover{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1440\:hover\:px-32:hover{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1440\:hover\:py-40:hover{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1440\:hover\:px-40:hover{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1440\:hover\:py-48:hover{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1440\:hover\:px-48:hover{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1440\:hover\:py-56:hover{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1440\:hover\:px-56:hover{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1440\:hover\:py-64:hover{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1440\:hover\:px-64:hover{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1440\:hover\:py-px:hover{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1440\:hover\:px-px:hover{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1440\:hover\:py-0\.25:hover{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1440\:hover\:px-0\.25:hover{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1440\:hover\:py-1\.5:hover{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1440\:hover\:px-1\.5:hover{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1440\:hover\:py-2\.5:hover{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1440\:hover\:px-2\.5:hover{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1440\:hover\:py-3\.25:hover{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1440\:hover\:px-3\.25:hover{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1440\:hover\:py-3\.5:hover{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1440\:hover\:px-3\.5:hover{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1440\:hover\:py-5\.25:hover{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1440\:hover\:px-5\.25:hover{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1440\:hover\:pt-0:hover{
    padding-top: 0;
  }

  .s1440\:hover\:pr-0:hover{
    padding-right: 0;
  }

  .s1440\:hover\:pb-0:hover{
    padding-bottom: 0;
  }

  .s1440\:hover\:pl-0:hover{
    padding-left: 0;
  }

  .s1440\:hover\:pt-1:hover{
    padding-top: 0.25rem;
  }

  .s1440\:hover\:pr-1:hover{
    padding-right: 0.25rem;
  }

  .s1440\:hover\:pb-1:hover{
    padding-bottom: 0.25rem;
  }

  .s1440\:hover\:pl-1:hover{
    padding-left: 0.25rem;
  }

  .s1440\:hover\:pt-2:hover{
    padding-top: 0.5rem;
  }

  .s1440\:hover\:pr-2:hover{
    padding-right: 0.5rem;
  }

  .s1440\:hover\:pb-2:hover{
    padding-bottom: 0.5rem;
  }

  .s1440\:hover\:pl-2:hover{
    padding-left: 0.5rem;
  }

  .s1440\:hover\:pt-3:hover{
    padding-top: 0.75rem;
  }

  .s1440\:hover\:pr-3:hover{
    padding-right: 0.75rem;
  }

  .s1440\:hover\:pb-3:hover{
    padding-bottom: 0.75rem;
  }

  .s1440\:hover\:pl-3:hover{
    padding-left: 0.75rem;
  }

  .s1440\:hover\:pt-4:hover{
    padding-top: 1rem;
  }

  .s1440\:hover\:pr-4:hover{
    padding-right: 1rem;
  }

  .s1440\:hover\:pb-4:hover{
    padding-bottom: 1rem;
  }

  .s1440\:hover\:pl-4:hover{
    padding-left: 1rem;
  }

  .s1440\:hover\:pt-5:hover{
    padding-top: 1.25rem;
  }

  .s1440\:hover\:pr-5:hover{
    padding-right: 1.25rem;
  }

  .s1440\:hover\:pb-5:hover{
    padding-bottom: 1.25rem;
  }

  .s1440\:hover\:pl-5:hover{
    padding-left: 1.25rem;
  }

  .s1440\:hover\:pt-6:hover{
    padding-top: 1.5rem;
  }

  .s1440\:hover\:pr-6:hover{
    padding-right: 1.5rem;
  }

  .s1440\:hover\:pb-6:hover{
    padding-bottom: 1.5rem;
  }

  .s1440\:hover\:pl-6:hover{
    padding-left: 1.5rem;
  }

  .s1440\:hover\:pt-8:hover{
    padding-top: 2rem;
  }

  .s1440\:hover\:pr-8:hover{
    padding-right: 2rem;
  }

  .s1440\:hover\:pb-8:hover{
    padding-bottom: 2rem;
  }

  .s1440\:hover\:pl-8:hover{
    padding-left: 2rem;
  }

  .s1440\:hover\:pt-9:hover{
    padding-top: 2.25rem;
  }

  .s1440\:hover\:pr-9:hover{
    padding-right: 2.25rem;
  }

  .s1440\:hover\:pb-9:hover{
    padding-bottom: 2.25rem;
  }

  .s1440\:hover\:pl-9:hover{
    padding-left: 2.25rem;
  }

  .s1440\:hover\:pt-10:hover{
    padding-top: 2.5rem;
  }

  .s1440\:hover\:pr-10:hover{
    padding-right: 2.5rem;
  }

  .s1440\:hover\:pb-10:hover{
    padding-bottom: 2.5rem;
  }

  .s1440\:hover\:pl-10:hover{
    padding-left: 2.5rem;
  }

  .s1440\:hover\:pt-11:hover{
    padding-top: 3rem;
  }

  .s1440\:hover\:pr-11:hover{
    padding-right: 3rem;
  }

  .s1440\:hover\:pb-11:hover{
    padding-bottom: 3rem;
  }

  .s1440\:hover\:pl-11:hover{
    padding-left: 3rem;
  }

  .s1440\:hover\:pt-12:hover{
    padding-top: 3rem;
  }

  .s1440\:hover\:pr-12:hover{
    padding-right: 3rem;
  }

  .s1440\:hover\:pb-12:hover{
    padding-bottom: 3rem;
  }

  .s1440\:hover\:pl-12:hover{
    padding-left: 3rem;
  }

  .s1440\:hover\:pt-14:hover{
    padding-top: 3.5rem;
  }

  .s1440\:hover\:pr-14:hover{
    padding-right: 3.5rem;
  }

  .s1440\:hover\:pb-14:hover{
    padding-bottom: 3.5rem;
  }

  .s1440\:hover\:pl-14:hover{
    padding-left: 3.5rem;
  }

  .s1440\:hover\:pt-16:hover{
    padding-top: 4rem;
  }

  .s1440\:hover\:pr-16:hover{
    padding-right: 4rem;
  }

  .s1440\:hover\:pb-16:hover{
    padding-bottom: 4rem;
  }

  .s1440\:hover\:pl-16:hover{
    padding-left: 4rem;
  }

  .s1440\:hover\:pt-20:hover{
    padding-top: 5rem;
  }

  .s1440\:hover\:pr-20:hover{
    padding-right: 5rem;
  }

  .s1440\:hover\:pb-20:hover{
    padding-bottom: 5rem;
  }

  .s1440\:hover\:pl-20:hover{
    padding-left: 5rem;
  }

  .s1440\:hover\:pt-24:hover{
    padding-top: 6rem;
  }

  .s1440\:hover\:pr-24:hover{
    padding-right: 6rem;
  }

  .s1440\:hover\:pb-24:hover{
    padding-bottom: 6rem;
  }

  .s1440\:hover\:pl-24:hover{
    padding-left: 6rem;
  }

  .s1440\:hover\:pt-32:hover{
    padding-top: 8rem;
  }

  .s1440\:hover\:pr-32:hover{
    padding-right: 8rem;
  }

  .s1440\:hover\:pb-32:hover{
    padding-bottom: 8rem;
  }

  .s1440\:hover\:pl-32:hover{
    padding-left: 8rem;
  }

  .s1440\:hover\:pt-40:hover{
    padding-top: 10rem;
  }

  .s1440\:hover\:pr-40:hover{
    padding-right: 10rem;
  }

  .s1440\:hover\:pb-40:hover{
    padding-bottom: 10rem;
  }

  .s1440\:hover\:pl-40:hover{
    padding-left: 10rem;
  }

  .s1440\:hover\:pt-48:hover{
    padding-top: 12rem;
  }

  .s1440\:hover\:pr-48:hover{
    padding-right: 12rem;
  }

  .s1440\:hover\:pb-48:hover{
    padding-bottom: 12rem;
  }

  .s1440\:hover\:pl-48:hover{
    padding-left: 12rem;
  }

  .s1440\:hover\:pt-56:hover{
    padding-top: 14rem;
  }

  .s1440\:hover\:pr-56:hover{
    padding-right: 14rem;
  }

  .s1440\:hover\:pb-56:hover{
    padding-bottom: 14rem;
  }

  .s1440\:hover\:pl-56:hover{
    padding-left: 14rem;
  }

  .s1440\:hover\:pt-64:hover{
    padding-top: 16rem;
  }

  .s1440\:hover\:pr-64:hover{
    padding-right: 16rem;
  }

  .s1440\:hover\:pb-64:hover{
    padding-bottom: 16rem;
  }

  .s1440\:hover\:pl-64:hover{
    padding-left: 16rem;
  }

  .s1440\:hover\:pt-px:hover{
    padding-top: 1px;
  }

  .s1440\:hover\:pr-px:hover{
    padding-right: 1px;
  }

  .s1440\:hover\:pb-px:hover{
    padding-bottom: 1px;
  }

  .s1440\:hover\:pl-px:hover{
    padding-left: 1px;
  }

  .s1440\:hover\:pt-0\.25:hover{
    padding-top: 0.0625rem;
  }

  .s1440\:hover\:pr-0\.25:hover{
    padding-right: 0.0625rem;
  }

  .s1440\:hover\:pb-0\.25:hover{
    padding-bottom: 0.0625rem;
  }

  .s1440\:hover\:pl-0\.25:hover{
    padding-left: 0.0625rem;
  }

  .s1440\:hover\:pt-1\.5:hover{
    padding-top: 0.375rem;
  }

  .s1440\:hover\:pr-1\.5:hover{
    padding-right: 0.375rem;
  }

  .s1440\:hover\:pb-1\.5:hover{
    padding-bottom: 0.375rem;
  }

  .s1440\:hover\:pl-1\.5:hover{
    padding-left: 0.375rem;
  }

  .s1440\:hover\:pt-2\.5:hover{
    padding-top: 0.625rem;
  }

  .s1440\:hover\:pr-2\.5:hover{
    padding-right: 0.625rem;
  }

  .s1440\:hover\:pb-2\.5:hover{
    padding-bottom: 0.625rem;
  }

  .s1440\:hover\:pl-2\.5:hover{
    padding-left: 0.625rem;
  }

  .s1440\:hover\:pt-3\.25:hover{
    padding-top: 0.8125rem;
  }

  .s1440\:hover\:pr-3\.25:hover{
    padding-right: 0.8125rem;
  }

  .s1440\:hover\:pb-3\.25:hover{
    padding-bottom: 0.8125rem;
  }

  .s1440\:hover\:pl-3\.25:hover{
    padding-left: 0.8125rem;
  }

  .s1440\:hover\:pt-3\.5:hover{
    padding-top: 0.875rem;
  }

  .s1440\:hover\:pr-3\.5:hover{
    padding-right: 0.875rem;
  }

  .s1440\:hover\:pb-3\.5:hover{
    padding-bottom: 0.875rem;
  }

  .s1440\:hover\:pl-3\.5:hover{
    padding-left: 0.875rem;
  }

  .s1440\:hover\:pt-5\.25:hover{
    padding-top: 1.3125rem;
  }

  .s1440\:hover\:pr-5\.25:hover{
    padding-right: 1.3125rem;
  }

  .s1440\:hover\:pb-5\.25:hover{
    padding-bottom: 1.3125rem;
  }

  .s1440\:hover\:pl-5\.25:hover{
    padding-left: 1.3125rem;
  }

  .s1440\:focus\:p-0:focus{
    padding: 0;
  }

  .s1440\:focus\:p-1:focus{
    padding: 0.25rem;
  }

  .s1440\:focus\:p-2:focus{
    padding: 0.5rem;
  }

  .s1440\:focus\:p-3:focus{
    padding: 0.75rem;
  }

  .s1440\:focus\:p-4:focus{
    padding: 1rem;
  }

  .s1440\:focus\:p-5:focus{
    padding: 1.25rem;
  }

  .s1440\:focus\:p-6:focus{
    padding: 1.5rem;
  }

  .s1440\:focus\:p-8:focus{
    padding: 2rem;
  }

  .s1440\:focus\:p-9:focus{
    padding: 2.25rem;
  }

  .s1440\:focus\:p-10:focus{
    padding: 2.5rem;
  }

  .s1440\:focus\:p-11:focus{
    padding: 3rem;
  }

  .s1440\:focus\:p-12:focus{
    padding: 3rem;
  }

  .s1440\:focus\:p-14:focus{
    padding: 3.5rem;
  }

  .s1440\:focus\:p-16:focus{
    padding: 4rem;
  }

  .s1440\:focus\:p-20:focus{
    padding: 5rem;
  }

  .s1440\:focus\:p-24:focus{
    padding: 6rem;
  }

  .s1440\:focus\:p-32:focus{
    padding: 8rem;
  }

  .s1440\:focus\:p-40:focus{
    padding: 10rem;
  }

  .s1440\:focus\:p-48:focus{
    padding: 12rem;
  }

  .s1440\:focus\:p-56:focus{
    padding: 14rem;
  }

  .s1440\:focus\:p-64:focus{
    padding: 16rem;
  }

  .s1440\:focus\:p-px:focus{
    padding: 1px;
  }

  .s1440\:focus\:p-0\.25:focus{
    padding: 0.0625rem;
  }

  .s1440\:focus\:p-1\.5:focus{
    padding: 0.375rem;
  }

  .s1440\:focus\:p-2\.5:focus{
    padding: 0.625rem;
  }

  .s1440\:focus\:p-3\.25:focus{
    padding: 0.8125rem;
  }

  .s1440\:focus\:p-3\.5:focus{
    padding: 0.875rem;
  }

  .s1440\:focus\:p-5\.25:focus{
    padding: 1.3125rem;
  }

  .s1440\:focus\:py-0:focus{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1440\:focus\:px-0:focus{
    padding-left: 0;
    padding-right: 0;
  }

  .s1440\:focus\:py-1:focus{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1440\:focus\:px-1:focus{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1440\:focus\:py-2:focus{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1440\:focus\:px-2:focus{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1440\:focus\:py-3:focus{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1440\:focus\:px-3:focus{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1440\:focus\:py-4:focus{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1440\:focus\:px-4:focus{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1440\:focus\:py-5:focus{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1440\:focus\:px-5:focus{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1440\:focus\:py-6:focus{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1440\:focus\:px-6:focus{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1440\:focus\:py-8:focus{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1440\:focus\:px-8:focus{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1440\:focus\:py-9:focus{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1440\:focus\:px-9:focus{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1440\:focus\:py-10:focus{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1440\:focus\:px-10:focus{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1440\:focus\:py-11:focus{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:focus\:px-11:focus{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:focus\:py-12:focus{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:focus\:px-12:focus{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:focus\:py-14:focus{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1440\:focus\:px-14:focus{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1440\:focus\:py-16:focus{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1440\:focus\:px-16:focus{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1440\:focus\:py-20:focus{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1440\:focus\:px-20:focus{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1440\:focus\:py-24:focus{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1440\:focus\:px-24:focus{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1440\:focus\:py-32:focus{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1440\:focus\:px-32:focus{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1440\:focus\:py-40:focus{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1440\:focus\:px-40:focus{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1440\:focus\:py-48:focus{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1440\:focus\:px-48:focus{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1440\:focus\:py-56:focus{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1440\:focus\:px-56:focus{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1440\:focus\:py-64:focus{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1440\:focus\:px-64:focus{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1440\:focus\:py-px:focus{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1440\:focus\:px-px:focus{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1440\:focus\:py-0\.25:focus{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1440\:focus\:px-0\.25:focus{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1440\:focus\:py-1\.5:focus{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1440\:focus\:px-1\.5:focus{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1440\:focus\:py-2\.5:focus{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1440\:focus\:px-2\.5:focus{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1440\:focus\:py-3\.25:focus{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1440\:focus\:px-3\.25:focus{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1440\:focus\:py-3\.5:focus{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1440\:focus\:px-3\.5:focus{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1440\:focus\:py-5\.25:focus{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1440\:focus\:px-5\.25:focus{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1440\:focus\:pt-0:focus{
    padding-top: 0;
  }

  .s1440\:focus\:pr-0:focus{
    padding-right: 0;
  }

  .s1440\:focus\:pb-0:focus{
    padding-bottom: 0;
  }

  .s1440\:focus\:pl-0:focus{
    padding-left: 0;
  }

  .s1440\:focus\:pt-1:focus{
    padding-top: 0.25rem;
  }

  .s1440\:focus\:pr-1:focus{
    padding-right: 0.25rem;
  }

  .s1440\:focus\:pb-1:focus{
    padding-bottom: 0.25rem;
  }

  .s1440\:focus\:pl-1:focus{
    padding-left: 0.25rem;
  }

  .s1440\:focus\:pt-2:focus{
    padding-top: 0.5rem;
  }

  .s1440\:focus\:pr-2:focus{
    padding-right: 0.5rem;
  }

  .s1440\:focus\:pb-2:focus{
    padding-bottom: 0.5rem;
  }

  .s1440\:focus\:pl-2:focus{
    padding-left: 0.5rem;
  }

  .s1440\:focus\:pt-3:focus{
    padding-top: 0.75rem;
  }

  .s1440\:focus\:pr-3:focus{
    padding-right: 0.75rem;
  }

  .s1440\:focus\:pb-3:focus{
    padding-bottom: 0.75rem;
  }

  .s1440\:focus\:pl-3:focus{
    padding-left: 0.75rem;
  }

  .s1440\:focus\:pt-4:focus{
    padding-top: 1rem;
  }

  .s1440\:focus\:pr-4:focus{
    padding-right: 1rem;
  }

  .s1440\:focus\:pb-4:focus{
    padding-bottom: 1rem;
  }

  .s1440\:focus\:pl-4:focus{
    padding-left: 1rem;
  }

  .s1440\:focus\:pt-5:focus{
    padding-top: 1.25rem;
  }

  .s1440\:focus\:pr-5:focus{
    padding-right: 1.25rem;
  }

  .s1440\:focus\:pb-5:focus{
    padding-bottom: 1.25rem;
  }

  .s1440\:focus\:pl-5:focus{
    padding-left: 1.25rem;
  }

  .s1440\:focus\:pt-6:focus{
    padding-top: 1.5rem;
  }

  .s1440\:focus\:pr-6:focus{
    padding-right: 1.5rem;
  }

  .s1440\:focus\:pb-6:focus{
    padding-bottom: 1.5rem;
  }

  .s1440\:focus\:pl-6:focus{
    padding-left: 1.5rem;
  }

  .s1440\:focus\:pt-8:focus{
    padding-top: 2rem;
  }

  .s1440\:focus\:pr-8:focus{
    padding-right: 2rem;
  }

  .s1440\:focus\:pb-8:focus{
    padding-bottom: 2rem;
  }

  .s1440\:focus\:pl-8:focus{
    padding-left: 2rem;
  }

  .s1440\:focus\:pt-9:focus{
    padding-top: 2.25rem;
  }

  .s1440\:focus\:pr-9:focus{
    padding-right: 2.25rem;
  }

  .s1440\:focus\:pb-9:focus{
    padding-bottom: 2.25rem;
  }

  .s1440\:focus\:pl-9:focus{
    padding-left: 2.25rem;
  }

  .s1440\:focus\:pt-10:focus{
    padding-top: 2.5rem;
  }

  .s1440\:focus\:pr-10:focus{
    padding-right: 2.5rem;
  }

  .s1440\:focus\:pb-10:focus{
    padding-bottom: 2.5rem;
  }

  .s1440\:focus\:pl-10:focus{
    padding-left: 2.5rem;
  }

  .s1440\:focus\:pt-11:focus{
    padding-top: 3rem;
  }

  .s1440\:focus\:pr-11:focus{
    padding-right: 3rem;
  }

  .s1440\:focus\:pb-11:focus{
    padding-bottom: 3rem;
  }

  .s1440\:focus\:pl-11:focus{
    padding-left: 3rem;
  }

  .s1440\:focus\:pt-12:focus{
    padding-top: 3rem;
  }

  .s1440\:focus\:pr-12:focus{
    padding-right: 3rem;
  }

  .s1440\:focus\:pb-12:focus{
    padding-bottom: 3rem;
  }

  .s1440\:focus\:pl-12:focus{
    padding-left: 3rem;
  }

  .s1440\:focus\:pt-14:focus{
    padding-top: 3.5rem;
  }

  .s1440\:focus\:pr-14:focus{
    padding-right: 3.5rem;
  }

  .s1440\:focus\:pb-14:focus{
    padding-bottom: 3.5rem;
  }

  .s1440\:focus\:pl-14:focus{
    padding-left: 3.5rem;
  }

  .s1440\:focus\:pt-16:focus{
    padding-top: 4rem;
  }

  .s1440\:focus\:pr-16:focus{
    padding-right: 4rem;
  }

  .s1440\:focus\:pb-16:focus{
    padding-bottom: 4rem;
  }

  .s1440\:focus\:pl-16:focus{
    padding-left: 4rem;
  }

  .s1440\:focus\:pt-20:focus{
    padding-top: 5rem;
  }

  .s1440\:focus\:pr-20:focus{
    padding-right: 5rem;
  }

  .s1440\:focus\:pb-20:focus{
    padding-bottom: 5rem;
  }

  .s1440\:focus\:pl-20:focus{
    padding-left: 5rem;
  }

  .s1440\:focus\:pt-24:focus{
    padding-top: 6rem;
  }

  .s1440\:focus\:pr-24:focus{
    padding-right: 6rem;
  }

  .s1440\:focus\:pb-24:focus{
    padding-bottom: 6rem;
  }

  .s1440\:focus\:pl-24:focus{
    padding-left: 6rem;
  }

  .s1440\:focus\:pt-32:focus{
    padding-top: 8rem;
  }

  .s1440\:focus\:pr-32:focus{
    padding-right: 8rem;
  }

  .s1440\:focus\:pb-32:focus{
    padding-bottom: 8rem;
  }

  .s1440\:focus\:pl-32:focus{
    padding-left: 8rem;
  }

  .s1440\:focus\:pt-40:focus{
    padding-top: 10rem;
  }

  .s1440\:focus\:pr-40:focus{
    padding-right: 10rem;
  }

  .s1440\:focus\:pb-40:focus{
    padding-bottom: 10rem;
  }

  .s1440\:focus\:pl-40:focus{
    padding-left: 10rem;
  }

  .s1440\:focus\:pt-48:focus{
    padding-top: 12rem;
  }

  .s1440\:focus\:pr-48:focus{
    padding-right: 12rem;
  }

  .s1440\:focus\:pb-48:focus{
    padding-bottom: 12rem;
  }

  .s1440\:focus\:pl-48:focus{
    padding-left: 12rem;
  }

  .s1440\:focus\:pt-56:focus{
    padding-top: 14rem;
  }

  .s1440\:focus\:pr-56:focus{
    padding-right: 14rem;
  }

  .s1440\:focus\:pb-56:focus{
    padding-bottom: 14rem;
  }

  .s1440\:focus\:pl-56:focus{
    padding-left: 14rem;
  }

  .s1440\:focus\:pt-64:focus{
    padding-top: 16rem;
  }

  .s1440\:focus\:pr-64:focus{
    padding-right: 16rem;
  }

  .s1440\:focus\:pb-64:focus{
    padding-bottom: 16rem;
  }

  .s1440\:focus\:pl-64:focus{
    padding-left: 16rem;
  }

  .s1440\:focus\:pt-px:focus{
    padding-top: 1px;
  }

  .s1440\:focus\:pr-px:focus{
    padding-right: 1px;
  }

  .s1440\:focus\:pb-px:focus{
    padding-bottom: 1px;
  }

  .s1440\:focus\:pl-px:focus{
    padding-left: 1px;
  }

  .s1440\:focus\:pt-0\.25:focus{
    padding-top: 0.0625rem;
  }

  .s1440\:focus\:pr-0\.25:focus{
    padding-right: 0.0625rem;
  }

  .s1440\:focus\:pb-0\.25:focus{
    padding-bottom: 0.0625rem;
  }

  .s1440\:focus\:pl-0\.25:focus{
    padding-left: 0.0625rem;
  }

  .s1440\:focus\:pt-1\.5:focus{
    padding-top: 0.375rem;
  }

  .s1440\:focus\:pr-1\.5:focus{
    padding-right: 0.375rem;
  }

  .s1440\:focus\:pb-1\.5:focus{
    padding-bottom: 0.375rem;
  }

  .s1440\:focus\:pl-1\.5:focus{
    padding-left: 0.375rem;
  }

  .s1440\:focus\:pt-2\.5:focus{
    padding-top: 0.625rem;
  }

  .s1440\:focus\:pr-2\.5:focus{
    padding-right: 0.625rem;
  }

  .s1440\:focus\:pb-2\.5:focus{
    padding-bottom: 0.625rem;
  }

  .s1440\:focus\:pl-2\.5:focus{
    padding-left: 0.625rem;
  }

  .s1440\:focus\:pt-3\.25:focus{
    padding-top: 0.8125rem;
  }

  .s1440\:focus\:pr-3\.25:focus{
    padding-right: 0.8125rem;
  }

  .s1440\:focus\:pb-3\.25:focus{
    padding-bottom: 0.8125rem;
  }

  .s1440\:focus\:pl-3\.25:focus{
    padding-left: 0.8125rem;
  }

  .s1440\:focus\:pt-3\.5:focus{
    padding-top: 0.875rem;
  }

  .s1440\:focus\:pr-3\.5:focus{
    padding-right: 0.875rem;
  }

  .s1440\:focus\:pb-3\.5:focus{
    padding-bottom: 0.875rem;
  }

  .s1440\:focus\:pl-3\.5:focus{
    padding-left: 0.875rem;
  }

  .s1440\:focus\:pt-5\.25:focus{
    padding-top: 1.3125rem;
  }

  .s1440\:focus\:pr-5\.25:focus{
    padding-right: 1.3125rem;
  }

  .s1440\:focus\:pb-5\.25:focus{
    padding-bottom: 1.3125rem;
  }

  .s1440\:focus\:pl-5\.25:focus{
    padding-left: 1.3125rem;
  }

  .s1440\:active\:p-0:active{
    padding: 0;
  }

  .s1440\:active\:p-1:active{
    padding: 0.25rem;
  }

  .s1440\:active\:p-2:active{
    padding: 0.5rem;
  }

  .s1440\:active\:p-3:active{
    padding: 0.75rem;
  }

  .s1440\:active\:p-4:active{
    padding: 1rem;
  }

  .s1440\:active\:p-5:active{
    padding: 1.25rem;
  }

  .s1440\:active\:p-6:active{
    padding: 1.5rem;
  }

  .s1440\:active\:p-8:active{
    padding: 2rem;
  }

  .s1440\:active\:p-9:active{
    padding: 2.25rem;
  }

  .s1440\:active\:p-10:active{
    padding: 2.5rem;
  }

  .s1440\:active\:p-11:active{
    padding: 3rem;
  }

  .s1440\:active\:p-12:active{
    padding: 3rem;
  }

  .s1440\:active\:p-14:active{
    padding: 3.5rem;
  }

  .s1440\:active\:p-16:active{
    padding: 4rem;
  }

  .s1440\:active\:p-20:active{
    padding: 5rem;
  }

  .s1440\:active\:p-24:active{
    padding: 6rem;
  }

  .s1440\:active\:p-32:active{
    padding: 8rem;
  }

  .s1440\:active\:p-40:active{
    padding: 10rem;
  }

  .s1440\:active\:p-48:active{
    padding: 12rem;
  }

  .s1440\:active\:p-56:active{
    padding: 14rem;
  }

  .s1440\:active\:p-64:active{
    padding: 16rem;
  }

  .s1440\:active\:p-px:active{
    padding: 1px;
  }

  .s1440\:active\:p-0\.25:active{
    padding: 0.0625rem;
  }

  .s1440\:active\:p-1\.5:active{
    padding: 0.375rem;
  }

  .s1440\:active\:p-2\.5:active{
    padding: 0.625rem;
  }

  .s1440\:active\:p-3\.25:active{
    padding: 0.8125rem;
  }

  .s1440\:active\:p-3\.5:active{
    padding: 0.875rem;
  }

  .s1440\:active\:p-5\.25:active{
    padding: 1.3125rem;
  }

  .s1440\:active\:py-0:active{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1440\:active\:px-0:active{
    padding-left: 0;
    padding-right: 0;
  }

  .s1440\:active\:py-1:active{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1440\:active\:px-1:active{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1440\:active\:py-2:active{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1440\:active\:px-2:active{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1440\:active\:py-3:active{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1440\:active\:px-3:active{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1440\:active\:py-4:active{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1440\:active\:px-4:active{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1440\:active\:py-5:active{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1440\:active\:px-5:active{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1440\:active\:py-6:active{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1440\:active\:px-6:active{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1440\:active\:py-8:active{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1440\:active\:px-8:active{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1440\:active\:py-9:active{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1440\:active\:px-9:active{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1440\:active\:py-10:active{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1440\:active\:px-10:active{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1440\:active\:py-11:active{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:active\:px-11:active{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:active\:py-12:active{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:active\:px-12:active{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:active\:py-14:active{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1440\:active\:px-14:active{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1440\:active\:py-16:active{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1440\:active\:px-16:active{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1440\:active\:py-20:active{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1440\:active\:px-20:active{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1440\:active\:py-24:active{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1440\:active\:px-24:active{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1440\:active\:py-32:active{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1440\:active\:px-32:active{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1440\:active\:py-40:active{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1440\:active\:px-40:active{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1440\:active\:py-48:active{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1440\:active\:px-48:active{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1440\:active\:py-56:active{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1440\:active\:px-56:active{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1440\:active\:py-64:active{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1440\:active\:px-64:active{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1440\:active\:py-px:active{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1440\:active\:px-px:active{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1440\:active\:py-0\.25:active{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1440\:active\:px-0\.25:active{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1440\:active\:py-1\.5:active{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1440\:active\:px-1\.5:active{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1440\:active\:py-2\.5:active{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1440\:active\:px-2\.5:active{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1440\:active\:py-3\.25:active{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1440\:active\:px-3\.25:active{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1440\:active\:py-3\.5:active{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1440\:active\:px-3\.5:active{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1440\:active\:py-5\.25:active{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1440\:active\:px-5\.25:active{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1440\:active\:pt-0:active{
    padding-top: 0;
  }

  .s1440\:active\:pr-0:active{
    padding-right: 0;
  }

  .s1440\:active\:pb-0:active{
    padding-bottom: 0;
  }

  .s1440\:active\:pl-0:active{
    padding-left: 0;
  }

  .s1440\:active\:pt-1:active{
    padding-top: 0.25rem;
  }

  .s1440\:active\:pr-1:active{
    padding-right: 0.25rem;
  }

  .s1440\:active\:pb-1:active{
    padding-bottom: 0.25rem;
  }

  .s1440\:active\:pl-1:active{
    padding-left: 0.25rem;
  }

  .s1440\:active\:pt-2:active{
    padding-top: 0.5rem;
  }

  .s1440\:active\:pr-2:active{
    padding-right: 0.5rem;
  }

  .s1440\:active\:pb-2:active{
    padding-bottom: 0.5rem;
  }

  .s1440\:active\:pl-2:active{
    padding-left: 0.5rem;
  }

  .s1440\:active\:pt-3:active{
    padding-top: 0.75rem;
  }

  .s1440\:active\:pr-3:active{
    padding-right: 0.75rem;
  }

  .s1440\:active\:pb-3:active{
    padding-bottom: 0.75rem;
  }

  .s1440\:active\:pl-3:active{
    padding-left: 0.75rem;
  }

  .s1440\:active\:pt-4:active{
    padding-top: 1rem;
  }

  .s1440\:active\:pr-4:active{
    padding-right: 1rem;
  }

  .s1440\:active\:pb-4:active{
    padding-bottom: 1rem;
  }

  .s1440\:active\:pl-4:active{
    padding-left: 1rem;
  }

  .s1440\:active\:pt-5:active{
    padding-top: 1.25rem;
  }

  .s1440\:active\:pr-5:active{
    padding-right: 1.25rem;
  }

  .s1440\:active\:pb-5:active{
    padding-bottom: 1.25rem;
  }

  .s1440\:active\:pl-5:active{
    padding-left: 1.25rem;
  }

  .s1440\:active\:pt-6:active{
    padding-top: 1.5rem;
  }

  .s1440\:active\:pr-6:active{
    padding-right: 1.5rem;
  }

  .s1440\:active\:pb-6:active{
    padding-bottom: 1.5rem;
  }

  .s1440\:active\:pl-6:active{
    padding-left: 1.5rem;
  }

  .s1440\:active\:pt-8:active{
    padding-top: 2rem;
  }

  .s1440\:active\:pr-8:active{
    padding-right: 2rem;
  }

  .s1440\:active\:pb-8:active{
    padding-bottom: 2rem;
  }

  .s1440\:active\:pl-8:active{
    padding-left: 2rem;
  }

  .s1440\:active\:pt-9:active{
    padding-top: 2.25rem;
  }

  .s1440\:active\:pr-9:active{
    padding-right: 2.25rem;
  }

  .s1440\:active\:pb-9:active{
    padding-bottom: 2.25rem;
  }

  .s1440\:active\:pl-9:active{
    padding-left: 2.25rem;
  }

  .s1440\:active\:pt-10:active{
    padding-top: 2.5rem;
  }

  .s1440\:active\:pr-10:active{
    padding-right: 2.5rem;
  }

  .s1440\:active\:pb-10:active{
    padding-bottom: 2.5rem;
  }

  .s1440\:active\:pl-10:active{
    padding-left: 2.5rem;
  }

  .s1440\:active\:pt-11:active{
    padding-top: 3rem;
  }

  .s1440\:active\:pr-11:active{
    padding-right: 3rem;
  }

  .s1440\:active\:pb-11:active{
    padding-bottom: 3rem;
  }

  .s1440\:active\:pl-11:active{
    padding-left: 3rem;
  }

  .s1440\:active\:pt-12:active{
    padding-top: 3rem;
  }

  .s1440\:active\:pr-12:active{
    padding-right: 3rem;
  }

  .s1440\:active\:pb-12:active{
    padding-bottom: 3rem;
  }

  .s1440\:active\:pl-12:active{
    padding-left: 3rem;
  }

  .s1440\:active\:pt-14:active{
    padding-top: 3.5rem;
  }

  .s1440\:active\:pr-14:active{
    padding-right: 3.5rem;
  }

  .s1440\:active\:pb-14:active{
    padding-bottom: 3.5rem;
  }

  .s1440\:active\:pl-14:active{
    padding-left: 3.5rem;
  }

  .s1440\:active\:pt-16:active{
    padding-top: 4rem;
  }

  .s1440\:active\:pr-16:active{
    padding-right: 4rem;
  }

  .s1440\:active\:pb-16:active{
    padding-bottom: 4rem;
  }

  .s1440\:active\:pl-16:active{
    padding-left: 4rem;
  }

  .s1440\:active\:pt-20:active{
    padding-top: 5rem;
  }

  .s1440\:active\:pr-20:active{
    padding-right: 5rem;
  }

  .s1440\:active\:pb-20:active{
    padding-bottom: 5rem;
  }

  .s1440\:active\:pl-20:active{
    padding-left: 5rem;
  }

  .s1440\:active\:pt-24:active{
    padding-top: 6rem;
  }

  .s1440\:active\:pr-24:active{
    padding-right: 6rem;
  }

  .s1440\:active\:pb-24:active{
    padding-bottom: 6rem;
  }

  .s1440\:active\:pl-24:active{
    padding-left: 6rem;
  }

  .s1440\:active\:pt-32:active{
    padding-top: 8rem;
  }

  .s1440\:active\:pr-32:active{
    padding-right: 8rem;
  }

  .s1440\:active\:pb-32:active{
    padding-bottom: 8rem;
  }

  .s1440\:active\:pl-32:active{
    padding-left: 8rem;
  }

  .s1440\:active\:pt-40:active{
    padding-top: 10rem;
  }

  .s1440\:active\:pr-40:active{
    padding-right: 10rem;
  }

  .s1440\:active\:pb-40:active{
    padding-bottom: 10rem;
  }

  .s1440\:active\:pl-40:active{
    padding-left: 10rem;
  }

  .s1440\:active\:pt-48:active{
    padding-top: 12rem;
  }

  .s1440\:active\:pr-48:active{
    padding-right: 12rem;
  }

  .s1440\:active\:pb-48:active{
    padding-bottom: 12rem;
  }

  .s1440\:active\:pl-48:active{
    padding-left: 12rem;
  }

  .s1440\:active\:pt-56:active{
    padding-top: 14rem;
  }

  .s1440\:active\:pr-56:active{
    padding-right: 14rem;
  }

  .s1440\:active\:pb-56:active{
    padding-bottom: 14rem;
  }

  .s1440\:active\:pl-56:active{
    padding-left: 14rem;
  }

  .s1440\:active\:pt-64:active{
    padding-top: 16rem;
  }

  .s1440\:active\:pr-64:active{
    padding-right: 16rem;
  }

  .s1440\:active\:pb-64:active{
    padding-bottom: 16rem;
  }

  .s1440\:active\:pl-64:active{
    padding-left: 16rem;
  }

  .s1440\:active\:pt-px:active{
    padding-top: 1px;
  }

  .s1440\:active\:pr-px:active{
    padding-right: 1px;
  }

  .s1440\:active\:pb-px:active{
    padding-bottom: 1px;
  }

  .s1440\:active\:pl-px:active{
    padding-left: 1px;
  }

  .s1440\:active\:pt-0\.25:active{
    padding-top: 0.0625rem;
  }

  .s1440\:active\:pr-0\.25:active{
    padding-right: 0.0625rem;
  }

  .s1440\:active\:pb-0\.25:active{
    padding-bottom: 0.0625rem;
  }

  .s1440\:active\:pl-0\.25:active{
    padding-left: 0.0625rem;
  }

  .s1440\:active\:pt-1\.5:active{
    padding-top: 0.375rem;
  }

  .s1440\:active\:pr-1\.5:active{
    padding-right: 0.375rem;
  }

  .s1440\:active\:pb-1\.5:active{
    padding-bottom: 0.375rem;
  }

  .s1440\:active\:pl-1\.5:active{
    padding-left: 0.375rem;
  }

  .s1440\:active\:pt-2\.5:active{
    padding-top: 0.625rem;
  }

  .s1440\:active\:pr-2\.5:active{
    padding-right: 0.625rem;
  }

  .s1440\:active\:pb-2\.5:active{
    padding-bottom: 0.625rem;
  }

  .s1440\:active\:pl-2\.5:active{
    padding-left: 0.625rem;
  }

  .s1440\:active\:pt-3\.25:active{
    padding-top: 0.8125rem;
  }

  .s1440\:active\:pr-3\.25:active{
    padding-right: 0.8125rem;
  }

  .s1440\:active\:pb-3\.25:active{
    padding-bottom: 0.8125rem;
  }

  .s1440\:active\:pl-3\.25:active{
    padding-left: 0.8125rem;
  }

  .s1440\:active\:pt-3\.5:active{
    padding-top: 0.875rem;
  }

  .s1440\:active\:pr-3\.5:active{
    padding-right: 0.875rem;
  }

  .s1440\:active\:pb-3\.5:active{
    padding-bottom: 0.875rem;
  }

  .s1440\:active\:pl-3\.5:active{
    padding-left: 0.875rem;
  }

  .s1440\:active\:pt-5\.25:active{
    padding-top: 1.3125rem;
  }

  .s1440\:active\:pr-5\.25:active{
    padding-right: 1.3125rem;
  }

  .s1440\:active\:pb-5\.25:active{
    padding-bottom: 1.3125rem;
  }

  .s1440\:active\:pl-5\.25:active{
    padding-left: 1.3125rem;
  }

  .s1440\:first\:p-0:first-child{
    padding: 0;
  }

  .s1440\:first\:p-1:first-child{
    padding: 0.25rem;
  }

  .s1440\:first\:p-2:first-child{
    padding: 0.5rem;
  }

  .s1440\:first\:p-3:first-child{
    padding: 0.75rem;
  }

  .s1440\:first\:p-4:first-child{
    padding: 1rem;
  }

  .s1440\:first\:p-5:first-child{
    padding: 1.25rem;
  }

  .s1440\:first\:p-6:first-child{
    padding: 1.5rem;
  }

  .s1440\:first\:p-8:first-child{
    padding: 2rem;
  }

  .s1440\:first\:p-9:first-child{
    padding: 2.25rem;
  }

  .s1440\:first\:p-10:first-child{
    padding: 2.5rem;
  }

  .s1440\:first\:p-11:first-child{
    padding: 3rem;
  }

  .s1440\:first\:p-12:first-child{
    padding: 3rem;
  }

  .s1440\:first\:p-14:first-child{
    padding: 3.5rem;
  }

  .s1440\:first\:p-16:first-child{
    padding: 4rem;
  }

  .s1440\:first\:p-20:first-child{
    padding: 5rem;
  }

  .s1440\:first\:p-24:first-child{
    padding: 6rem;
  }

  .s1440\:first\:p-32:first-child{
    padding: 8rem;
  }

  .s1440\:first\:p-40:first-child{
    padding: 10rem;
  }

  .s1440\:first\:p-48:first-child{
    padding: 12rem;
  }

  .s1440\:first\:p-56:first-child{
    padding: 14rem;
  }

  .s1440\:first\:p-64:first-child{
    padding: 16rem;
  }

  .s1440\:first\:p-px:first-child{
    padding: 1px;
  }

  .s1440\:first\:p-0\.25:first-child{
    padding: 0.0625rem;
  }

  .s1440\:first\:p-1\.5:first-child{
    padding: 0.375rem;
  }

  .s1440\:first\:p-2\.5:first-child{
    padding: 0.625rem;
  }

  .s1440\:first\:p-3\.25:first-child{
    padding: 0.8125rem;
  }

  .s1440\:first\:p-3\.5:first-child{
    padding: 0.875rem;
  }

  .s1440\:first\:p-5\.25:first-child{
    padding: 1.3125rem;
  }

  .s1440\:first\:py-0:first-child{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1440\:first\:px-0:first-child{
    padding-left: 0;
    padding-right: 0;
  }

  .s1440\:first\:py-1:first-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1440\:first\:px-1:first-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1440\:first\:py-2:first-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1440\:first\:px-2:first-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1440\:first\:py-3:first-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1440\:first\:px-3:first-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1440\:first\:py-4:first-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1440\:first\:px-4:first-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1440\:first\:py-5:first-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1440\:first\:px-5:first-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1440\:first\:py-6:first-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1440\:first\:px-6:first-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1440\:first\:py-8:first-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1440\:first\:px-8:first-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1440\:first\:py-9:first-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1440\:first\:px-9:first-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1440\:first\:py-10:first-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1440\:first\:px-10:first-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1440\:first\:py-11:first-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:first\:px-11:first-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:first\:py-12:first-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:first\:px-12:first-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:first\:py-14:first-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1440\:first\:px-14:first-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1440\:first\:py-16:first-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1440\:first\:px-16:first-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1440\:first\:py-20:first-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1440\:first\:px-20:first-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1440\:first\:py-24:first-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1440\:first\:px-24:first-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1440\:first\:py-32:first-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1440\:first\:px-32:first-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1440\:first\:py-40:first-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1440\:first\:px-40:first-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1440\:first\:py-48:first-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1440\:first\:px-48:first-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1440\:first\:py-56:first-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1440\:first\:px-56:first-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1440\:first\:py-64:first-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1440\:first\:px-64:first-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1440\:first\:py-px:first-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1440\:first\:px-px:first-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1440\:first\:py-0\.25:first-child{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1440\:first\:px-0\.25:first-child{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1440\:first\:py-1\.5:first-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1440\:first\:px-1\.5:first-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1440\:first\:py-2\.5:first-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1440\:first\:px-2\.5:first-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1440\:first\:py-3\.25:first-child{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1440\:first\:px-3\.25:first-child{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1440\:first\:py-3\.5:first-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1440\:first\:px-3\.5:first-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1440\:first\:py-5\.25:first-child{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1440\:first\:px-5\.25:first-child{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1440\:first\:pt-0:first-child{
    padding-top: 0;
  }

  .s1440\:first\:pr-0:first-child{
    padding-right: 0;
  }

  .s1440\:first\:pb-0:first-child{
    padding-bottom: 0;
  }

  .s1440\:first\:pl-0:first-child{
    padding-left: 0;
  }

  .s1440\:first\:pt-1:first-child{
    padding-top: 0.25rem;
  }

  .s1440\:first\:pr-1:first-child{
    padding-right: 0.25rem;
  }

  .s1440\:first\:pb-1:first-child{
    padding-bottom: 0.25rem;
  }

  .s1440\:first\:pl-1:first-child{
    padding-left: 0.25rem;
  }

  .s1440\:first\:pt-2:first-child{
    padding-top: 0.5rem;
  }

  .s1440\:first\:pr-2:first-child{
    padding-right: 0.5rem;
  }

  .s1440\:first\:pb-2:first-child{
    padding-bottom: 0.5rem;
  }

  .s1440\:first\:pl-2:first-child{
    padding-left: 0.5rem;
  }

  .s1440\:first\:pt-3:first-child{
    padding-top: 0.75rem;
  }

  .s1440\:first\:pr-3:first-child{
    padding-right: 0.75rem;
  }

  .s1440\:first\:pb-3:first-child{
    padding-bottom: 0.75rem;
  }

  .s1440\:first\:pl-3:first-child{
    padding-left: 0.75rem;
  }

  .s1440\:first\:pt-4:first-child{
    padding-top: 1rem;
  }

  .s1440\:first\:pr-4:first-child{
    padding-right: 1rem;
  }

  .s1440\:first\:pb-4:first-child{
    padding-bottom: 1rem;
  }

  .s1440\:first\:pl-4:first-child{
    padding-left: 1rem;
  }

  .s1440\:first\:pt-5:first-child{
    padding-top: 1.25rem;
  }

  .s1440\:first\:pr-5:first-child{
    padding-right: 1.25rem;
  }

  .s1440\:first\:pb-5:first-child{
    padding-bottom: 1.25rem;
  }

  .s1440\:first\:pl-5:first-child{
    padding-left: 1.25rem;
  }

  .s1440\:first\:pt-6:first-child{
    padding-top: 1.5rem;
  }

  .s1440\:first\:pr-6:first-child{
    padding-right: 1.5rem;
  }

  .s1440\:first\:pb-6:first-child{
    padding-bottom: 1.5rem;
  }

  .s1440\:first\:pl-6:first-child{
    padding-left: 1.5rem;
  }

  .s1440\:first\:pt-8:first-child{
    padding-top: 2rem;
  }

  .s1440\:first\:pr-8:first-child{
    padding-right: 2rem;
  }

  .s1440\:first\:pb-8:first-child{
    padding-bottom: 2rem;
  }

  .s1440\:first\:pl-8:first-child{
    padding-left: 2rem;
  }

  .s1440\:first\:pt-9:first-child{
    padding-top: 2.25rem;
  }

  .s1440\:first\:pr-9:first-child{
    padding-right: 2.25rem;
  }

  .s1440\:first\:pb-9:first-child{
    padding-bottom: 2.25rem;
  }

  .s1440\:first\:pl-9:first-child{
    padding-left: 2.25rem;
  }

  .s1440\:first\:pt-10:first-child{
    padding-top: 2.5rem;
  }

  .s1440\:first\:pr-10:first-child{
    padding-right: 2.5rem;
  }

  .s1440\:first\:pb-10:first-child{
    padding-bottom: 2.5rem;
  }

  .s1440\:first\:pl-10:first-child{
    padding-left: 2.5rem;
  }

  .s1440\:first\:pt-11:first-child{
    padding-top: 3rem;
  }

  .s1440\:first\:pr-11:first-child{
    padding-right: 3rem;
  }

  .s1440\:first\:pb-11:first-child{
    padding-bottom: 3rem;
  }

  .s1440\:first\:pl-11:first-child{
    padding-left: 3rem;
  }

  .s1440\:first\:pt-12:first-child{
    padding-top: 3rem;
  }

  .s1440\:first\:pr-12:first-child{
    padding-right: 3rem;
  }

  .s1440\:first\:pb-12:first-child{
    padding-bottom: 3rem;
  }

  .s1440\:first\:pl-12:first-child{
    padding-left: 3rem;
  }

  .s1440\:first\:pt-14:first-child{
    padding-top: 3.5rem;
  }

  .s1440\:first\:pr-14:first-child{
    padding-right: 3.5rem;
  }

  .s1440\:first\:pb-14:first-child{
    padding-bottom: 3.5rem;
  }

  .s1440\:first\:pl-14:first-child{
    padding-left: 3.5rem;
  }

  .s1440\:first\:pt-16:first-child{
    padding-top: 4rem;
  }

  .s1440\:first\:pr-16:first-child{
    padding-right: 4rem;
  }

  .s1440\:first\:pb-16:first-child{
    padding-bottom: 4rem;
  }

  .s1440\:first\:pl-16:first-child{
    padding-left: 4rem;
  }

  .s1440\:first\:pt-20:first-child{
    padding-top: 5rem;
  }

  .s1440\:first\:pr-20:first-child{
    padding-right: 5rem;
  }

  .s1440\:first\:pb-20:first-child{
    padding-bottom: 5rem;
  }

  .s1440\:first\:pl-20:first-child{
    padding-left: 5rem;
  }

  .s1440\:first\:pt-24:first-child{
    padding-top: 6rem;
  }

  .s1440\:first\:pr-24:first-child{
    padding-right: 6rem;
  }

  .s1440\:first\:pb-24:first-child{
    padding-bottom: 6rem;
  }

  .s1440\:first\:pl-24:first-child{
    padding-left: 6rem;
  }

  .s1440\:first\:pt-32:first-child{
    padding-top: 8rem;
  }

  .s1440\:first\:pr-32:first-child{
    padding-right: 8rem;
  }

  .s1440\:first\:pb-32:first-child{
    padding-bottom: 8rem;
  }

  .s1440\:first\:pl-32:first-child{
    padding-left: 8rem;
  }

  .s1440\:first\:pt-40:first-child{
    padding-top: 10rem;
  }

  .s1440\:first\:pr-40:first-child{
    padding-right: 10rem;
  }

  .s1440\:first\:pb-40:first-child{
    padding-bottom: 10rem;
  }

  .s1440\:first\:pl-40:first-child{
    padding-left: 10rem;
  }

  .s1440\:first\:pt-48:first-child{
    padding-top: 12rem;
  }

  .s1440\:first\:pr-48:first-child{
    padding-right: 12rem;
  }

  .s1440\:first\:pb-48:first-child{
    padding-bottom: 12rem;
  }

  .s1440\:first\:pl-48:first-child{
    padding-left: 12rem;
  }

  .s1440\:first\:pt-56:first-child{
    padding-top: 14rem;
  }

  .s1440\:first\:pr-56:first-child{
    padding-right: 14rem;
  }

  .s1440\:first\:pb-56:first-child{
    padding-bottom: 14rem;
  }

  .s1440\:first\:pl-56:first-child{
    padding-left: 14rem;
  }

  .s1440\:first\:pt-64:first-child{
    padding-top: 16rem;
  }

  .s1440\:first\:pr-64:first-child{
    padding-right: 16rem;
  }

  .s1440\:first\:pb-64:first-child{
    padding-bottom: 16rem;
  }

  .s1440\:first\:pl-64:first-child{
    padding-left: 16rem;
  }

  .s1440\:first\:pt-px:first-child{
    padding-top: 1px;
  }

  .s1440\:first\:pr-px:first-child{
    padding-right: 1px;
  }

  .s1440\:first\:pb-px:first-child{
    padding-bottom: 1px;
  }

  .s1440\:first\:pl-px:first-child{
    padding-left: 1px;
  }

  .s1440\:first\:pt-0\.25:first-child{
    padding-top: 0.0625rem;
  }

  .s1440\:first\:pr-0\.25:first-child{
    padding-right: 0.0625rem;
  }

  .s1440\:first\:pb-0\.25:first-child{
    padding-bottom: 0.0625rem;
  }

  .s1440\:first\:pl-0\.25:first-child{
    padding-left: 0.0625rem;
  }

  .s1440\:first\:pt-1\.5:first-child{
    padding-top: 0.375rem;
  }

  .s1440\:first\:pr-1\.5:first-child{
    padding-right: 0.375rem;
  }

  .s1440\:first\:pb-1\.5:first-child{
    padding-bottom: 0.375rem;
  }

  .s1440\:first\:pl-1\.5:first-child{
    padding-left: 0.375rem;
  }

  .s1440\:first\:pt-2\.5:first-child{
    padding-top: 0.625rem;
  }

  .s1440\:first\:pr-2\.5:first-child{
    padding-right: 0.625rem;
  }

  .s1440\:first\:pb-2\.5:first-child{
    padding-bottom: 0.625rem;
  }

  .s1440\:first\:pl-2\.5:first-child{
    padding-left: 0.625rem;
  }

  .s1440\:first\:pt-3\.25:first-child{
    padding-top: 0.8125rem;
  }

  .s1440\:first\:pr-3\.25:first-child{
    padding-right: 0.8125rem;
  }

  .s1440\:first\:pb-3\.25:first-child{
    padding-bottom: 0.8125rem;
  }

  .s1440\:first\:pl-3\.25:first-child{
    padding-left: 0.8125rem;
  }

  .s1440\:first\:pt-3\.5:first-child{
    padding-top: 0.875rem;
  }

  .s1440\:first\:pr-3\.5:first-child{
    padding-right: 0.875rem;
  }

  .s1440\:first\:pb-3\.5:first-child{
    padding-bottom: 0.875rem;
  }

  .s1440\:first\:pl-3\.5:first-child{
    padding-left: 0.875rem;
  }

  .s1440\:first\:pt-5\.25:first-child{
    padding-top: 1.3125rem;
  }

  .s1440\:first\:pr-5\.25:first-child{
    padding-right: 1.3125rem;
  }

  .s1440\:first\:pb-5\.25:first-child{
    padding-bottom: 1.3125rem;
  }

  .s1440\:first\:pl-5\.25:first-child{
    padding-left: 1.3125rem;
  }

  .s1440\:last\:p-0:last-child{
    padding: 0;
  }

  .s1440\:last\:p-1:last-child{
    padding: 0.25rem;
  }

  .s1440\:last\:p-2:last-child{
    padding: 0.5rem;
  }

  .s1440\:last\:p-3:last-child{
    padding: 0.75rem;
  }

  .s1440\:last\:p-4:last-child{
    padding: 1rem;
  }

  .s1440\:last\:p-5:last-child{
    padding: 1.25rem;
  }

  .s1440\:last\:p-6:last-child{
    padding: 1.5rem;
  }

  .s1440\:last\:p-8:last-child{
    padding: 2rem;
  }

  .s1440\:last\:p-9:last-child{
    padding: 2.25rem;
  }

  .s1440\:last\:p-10:last-child{
    padding: 2.5rem;
  }

  .s1440\:last\:p-11:last-child{
    padding: 3rem;
  }

  .s1440\:last\:p-12:last-child{
    padding: 3rem;
  }

  .s1440\:last\:p-14:last-child{
    padding: 3.5rem;
  }

  .s1440\:last\:p-16:last-child{
    padding: 4rem;
  }

  .s1440\:last\:p-20:last-child{
    padding: 5rem;
  }

  .s1440\:last\:p-24:last-child{
    padding: 6rem;
  }

  .s1440\:last\:p-32:last-child{
    padding: 8rem;
  }

  .s1440\:last\:p-40:last-child{
    padding: 10rem;
  }

  .s1440\:last\:p-48:last-child{
    padding: 12rem;
  }

  .s1440\:last\:p-56:last-child{
    padding: 14rem;
  }

  .s1440\:last\:p-64:last-child{
    padding: 16rem;
  }

  .s1440\:last\:p-px:last-child{
    padding: 1px;
  }

  .s1440\:last\:p-0\.25:last-child{
    padding: 0.0625rem;
  }

  .s1440\:last\:p-1\.5:last-child{
    padding: 0.375rem;
  }

  .s1440\:last\:p-2\.5:last-child{
    padding: 0.625rem;
  }

  .s1440\:last\:p-3\.25:last-child{
    padding: 0.8125rem;
  }

  .s1440\:last\:p-3\.5:last-child{
    padding: 0.875rem;
  }

  .s1440\:last\:p-5\.25:last-child{
    padding: 1.3125rem;
  }

  .s1440\:last\:py-0:last-child{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1440\:last\:px-0:last-child{
    padding-left: 0;
    padding-right: 0;
  }

  .s1440\:last\:py-1:last-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1440\:last\:px-1:last-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1440\:last\:py-2:last-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1440\:last\:px-2:last-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1440\:last\:py-3:last-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1440\:last\:px-3:last-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1440\:last\:py-4:last-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1440\:last\:px-4:last-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1440\:last\:py-5:last-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1440\:last\:px-5:last-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1440\:last\:py-6:last-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1440\:last\:px-6:last-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1440\:last\:py-8:last-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1440\:last\:px-8:last-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1440\:last\:py-9:last-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1440\:last\:px-9:last-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1440\:last\:py-10:last-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1440\:last\:px-10:last-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1440\:last\:py-11:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:last\:px-11:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:last\:py-12:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1440\:last\:px-12:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1440\:last\:py-14:last-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1440\:last\:px-14:last-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1440\:last\:py-16:last-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1440\:last\:px-16:last-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1440\:last\:py-20:last-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1440\:last\:px-20:last-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1440\:last\:py-24:last-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1440\:last\:px-24:last-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1440\:last\:py-32:last-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1440\:last\:px-32:last-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1440\:last\:py-40:last-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1440\:last\:px-40:last-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1440\:last\:py-48:last-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1440\:last\:px-48:last-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1440\:last\:py-56:last-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1440\:last\:px-56:last-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1440\:last\:py-64:last-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1440\:last\:px-64:last-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1440\:last\:py-px:last-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1440\:last\:px-px:last-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1440\:last\:py-0\.25:last-child{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1440\:last\:px-0\.25:last-child{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1440\:last\:py-1\.5:last-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1440\:last\:px-1\.5:last-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1440\:last\:py-2\.5:last-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1440\:last\:px-2\.5:last-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1440\:last\:py-3\.25:last-child{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1440\:last\:px-3\.25:last-child{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1440\:last\:py-3\.5:last-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1440\:last\:px-3\.5:last-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1440\:last\:py-5\.25:last-child{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1440\:last\:px-5\.25:last-child{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1440\:last\:pt-0:last-child{
    padding-top: 0;
  }

  .s1440\:last\:pr-0:last-child{
    padding-right: 0;
  }

  .s1440\:last\:pb-0:last-child{
    padding-bottom: 0;
  }

  .s1440\:last\:pl-0:last-child{
    padding-left: 0;
  }

  .s1440\:last\:pt-1:last-child{
    padding-top: 0.25rem;
  }

  .s1440\:last\:pr-1:last-child{
    padding-right: 0.25rem;
  }

  .s1440\:last\:pb-1:last-child{
    padding-bottom: 0.25rem;
  }

  .s1440\:last\:pl-1:last-child{
    padding-left: 0.25rem;
  }

  .s1440\:last\:pt-2:last-child{
    padding-top: 0.5rem;
  }

  .s1440\:last\:pr-2:last-child{
    padding-right: 0.5rem;
  }

  .s1440\:last\:pb-2:last-child{
    padding-bottom: 0.5rem;
  }

  .s1440\:last\:pl-2:last-child{
    padding-left: 0.5rem;
  }

  .s1440\:last\:pt-3:last-child{
    padding-top: 0.75rem;
  }

  .s1440\:last\:pr-3:last-child{
    padding-right: 0.75rem;
  }

  .s1440\:last\:pb-3:last-child{
    padding-bottom: 0.75rem;
  }

  .s1440\:last\:pl-3:last-child{
    padding-left: 0.75rem;
  }

  .s1440\:last\:pt-4:last-child{
    padding-top: 1rem;
  }

  .s1440\:last\:pr-4:last-child{
    padding-right: 1rem;
  }

  .s1440\:last\:pb-4:last-child{
    padding-bottom: 1rem;
  }

  .s1440\:last\:pl-4:last-child{
    padding-left: 1rem;
  }

  .s1440\:last\:pt-5:last-child{
    padding-top: 1.25rem;
  }

  .s1440\:last\:pr-5:last-child{
    padding-right: 1.25rem;
  }

  .s1440\:last\:pb-5:last-child{
    padding-bottom: 1.25rem;
  }

  .s1440\:last\:pl-5:last-child{
    padding-left: 1.25rem;
  }

  .s1440\:last\:pt-6:last-child{
    padding-top: 1.5rem;
  }

  .s1440\:last\:pr-6:last-child{
    padding-right: 1.5rem;
  }

  .s1440\:last\:pb-6:last-child{
    padding-bottom: 1.5rem;
  }

  .s1440\:last\:pl-6:last-child{
    padding-left: 1.5rem;
  }

  .s1440\:last\:pt-8:last-child{
    padding-top: 2rem;
  }

  .s1440\:last\:pr-8:last-child{
    padding-right: 2rem;
  }

  .s1440\:last\:pb-8:last-child{
    padding-bottom: 2rem;
  }

  .s1440\:last\:pl-8:last-child{
    padding-left: 2rem;
  }

  .s1440\:last\:pt-9:last-child{
    padding-top: 2.25rem;
  }

  .s1440\:last\:pr-9:last-child{
    padding-right: 2.25rem;
  }

  .s1440\:last\:pb-9:last-child{
    padding-bottom: 2.25rem;
  }

  .s1440\:last\:pl-9:last-child{
    padding-left: 2.25rem;
  }

  .s1440\:last\:pt-10:last-child{
    padding-top: 2.5rem;
  }

  .s1440\:last\:pr-10:last-child{
    padding-right: 2.5rem;
  }

  .s1440\:last\:pb-10:last-child{
    padding-bottom: 2.5rem;
  }

  .s1440\:last\:pl-10:last-child{
    padding-left: 2.5rem;
  }

  .s1440\:last\:pt-11:last-child{
    padding-top: 3rem;
  }

  .s1440\:last\:pr-11:last-child{
    padding-right: 3rem;
  }

  .s1440\:last\:pb-11:last-child{
    padding-bottom: 3rem;
  }

  .s1440\:last\:pl-11:last-child{
    padding-left: 3rem;
  }

  .s1440\:last\:pt-12:last-child{
    padding-top: 3rem;
  }

  .s1440\:last\:pr-12:last-child{
    padding-right: 3rem;
  }

  .s1440\:last\:pb-12:last-child{
    padding-bottom: 3rem;
  }

  .s1440\:last\:pl-12:last-child{
    padding-left: 3rem;
  }

  .s1440\:last\:pt-14:last-child{
    padding-top: 3.5rem;
  }

  .s1440\:last\:pr-14:last-child{
    padding-right: 3.5rem;
  }

  .s1440\:last\:pb-14:last-child{
    padding-bottom: 3.5rem;
  }

  .s1440\:last\:pl-14:last-child{
    padding-left: 3.5rem;
  }

  .s1440\:last\:pt-16:last-child{
    padding-top: 4rem;
  }

  .s1440\:last\:pr-16:last-child{
    padding-right: 4rem;
  }

  .s1440\:last\:pb-16:last-child{
    padding-bottom: 4rem;
  }

  .s1440\:last\:pl-16:last-child{
    padding-left: 4rem;
  }

  .s1440\:last\:pt-20:last-child{
    padding-top: 5rem;
  }

  .s1440\:last\:pr-20:last-child{
    padding-right: 5rem;
  }

  .s1440\:last\:pb-20:last-child{
    padding-bottom: 5rem;
  }

  .s1440\:last\:pl-20:last-child{
    padding-left: 5rem;
  }

  .s1440\:last\:pt-24:last-child{
    padding-top: 6rem;
  }

  .s1440\:last\:pr-24:last-child{
    padding-right: 6rem;
  }

  .s1440\:last\:pb-24:last-child{
    padding-bottom: 6rem;
  }

  .s1440\:last\:pl-24:last-child{
    padding-left: 6rem;
  }

  .s1440\:last\:pt-32:last-child{
    padding-top: 8rem;
  }

  .s1440\:last\:pr-32:last-child{
    padding-right: 8rem;
  }

  .s1440\:last\:pb-32:last-child{
    padding-bottom: 8rem;
  }

  .s1440\:last\:pl-32:last-child{
    padding-left: 8rem;
  }

  .s1440\:last\:pt-40:last-child{
    padding-top: 10rem;
  }

  .s1440\:last\:pr-40:last-child{
    padding-right: 10rem;
  }

  .s1440\:last\:pb-40:last-child{
    padding-bottom: 10rem;
  }

  .s1440\:last\:pl-40:last-child{
    padding-left: 10rem;
  }

  .s1440\:last\:pt-48:last-child{
    padding-top: 12rem;
  }

  .s1440\:last\:pr-48:last-child{
    padding-right: 12rem;
  }

  .s1440\:last\:pb-48:last-child{
    padding-bottom: 12rem;
  }

  .s1440\:last\:pl-48:last-child{
    padding-left: 12rem;
  }

  .s1440\:last\:pt-56:last-child{
    padding-top: 14rem;
  }

  .s1440\:last\:pr-56:last-child{
    padding-right: 14rem;
  }

  .s1440\:last\:pb-56:last-child{
    padding-bottom: 14rem;
  }

  .s1440\:last\:pl-56:last-child{
    padding-left: 14rem;
  }

  .s1440\:last\:pt-64:last-child{
    padding-top: 16rem;
  }

  .s1440\:last\:pr-64:last-child{
    padding-right: 16rem;
  }

  .s1440\:last\:pb-64:last-child{
    padding-bottom: 16rem;
  }

  .s1440\:last\:pl-64:last-child{
    padding-left: 16rem;
  }

  .s1440\:last\:pt-px:last-child{
    padding-top: 1px;
  }

  .s1440\:last\:pr-px:last-child{
    padding-right: 1px;
  }

  .s1440\:last\:pb-px:last-child{
    padding-bottom: 1px;
  }

  .s1440\:last\:pl-px:last-child{
    padding-left: 1px;
  }

  .s1440\:last\:pt-0\.25:last-child{
    padding-top: 0.0625rem;
  }

  .s1440\:last\:pr-0\.25:last-child{
    padding-right: 0.0625rem;
  }

  .s1440\:last\:pb-0\.25:last-child{
    padding-bottom: 0.0625rem;
  }

  .s1440\:last\:pl-0\.25:last-child{
    padding-left: 0.0625rem;
  }

  .s1440\:last\:pt-1\.5:last-child{
    padding-top: 0.375rem;
  }

  .s1440\:last\:pr-1\.5:last-child{
    padding-right: 0.375rem;
  }

  .s1440\:last\:pb-1\.5:last-child{
    padding-bottom: 0.375rem;
  }

  .s1440\:last\:pl-1\.5:last-child{
    padding-left: 0.375rem;
  }

  .s1440\:last\:pt-2\.5:last-child{
    padding-top: 0.625rem;
  }

  .s1440\:last\:pr-2\.5:last-child{
    padding-right: 0.625rem;
  }

  .s1440\:last\:pb-2\.5:last-child{
    padding-bottom: 0.625rem;
  }

  .s1440\:last\:pl-2\.5:last-child{
    padding-left: 0.625rem;
  }

  .s1440\:last\:pt-3\.25:last-child{
    padding-top: 0.8125rem;
  }

  .s1440\:last\:pr-3\.25:last-child{
    padding-right: 0.8125rem;
  }

  .s1440\:last\:pb-3\.25:last-child{
    padding-bottom: 0.8125rem;
  }

  .s1440\:last\:pl-3\.25:last-child{
    padding-left: 0.8125rem;
  }

  .s1440\:last\:pt-3\.5:last-child{
    padding-top: 0.875rem;
  }

  .s1440\:last\:pr-3\.5:last-child{
    padding-right: 0.875rem;
  }

  .s1440\:last\:pb-3\.5:last-child{
    padding-bottom: 0.875rem;
  }

  .s1440\:last\:pl-3\.5:last-child{
    padding-left: 0.875rem;
  }

  .s1440\:last\:pt-5\.25:last-child{
    padding-top: 1.3125rem;
  }

  .s1440\:last\:pr-5\.25:last-child{
    padding-right: 1.3125rem;
  }

  .s1440\:last\:pb-5\.25:last-child{
    padding-bottom: 1.3125rem;
  }

  .s1440\:last\:pl-5\.25:last-child{
    padding-left: 1.3125rem;
  }

  .s1440\:placeholder-black::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:placeholder-black::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .s1440\:placeholder-transparent:-ms-input-placeholder{
    color: transparent;
  }

  .s1440\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .s1440\:placeholder-error::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:placeholder-error:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:placeholder-error::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:placeholder-success::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:placeholder-success:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:placeholder-success::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:placeholder-white-10::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:placeholder-white-10:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:placeholder-white-10::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:placeholder-white-20::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:placeholder-white-20:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:placeholder-white-20::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:placeholder-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:placeholder-white::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-very-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-very-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-very-light::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-light::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-dark::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-hocus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-hocus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-hocus::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-active::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-ml-plus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-ml-plus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-ml-plus::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-banner::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-banner:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:placeholder-cheeto-banner::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-1::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-1:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-1::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-10::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-10:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-10::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-20::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-20:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-20::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-30::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-30:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-30::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-40::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-40:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-40::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-50::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-50:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-50::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-60::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-60:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-60::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-70::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-70:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-70::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-80::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-80:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-80::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-90::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-90:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-90::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-100::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-100:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-100::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:placeholder-gracy-overlay-90::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:placeholder-gracy-overlay-90:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:placeholder-gracy-overlay-90::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:placeholder-login::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:placeholder-login:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:placeholder-login::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:placeholder-olive-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:placeholder-olive-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:placeholder-olive-light::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:placeholder-olive-drab::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:placeholder-olive-drab:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:placeholder-olive-drab::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:placeholder-olive-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:placeholder-olive-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:placeholder-olive-dark::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:placeholder-daisy-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:placeholder-daisy-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:placeholder-daisy-light::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-gumby::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-gumby:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-gumby::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-daisy::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-daisy:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-daisy::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-pokey::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-pokey:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-pokey::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-aster::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-aster:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-aster::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-aster-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-aster-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-aster-dark::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-roxo::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-roxo:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-roxo::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-error::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-error:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-error::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-success::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-success:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:placeholder-feedback-success::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-dark::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-hocus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-hocus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-hocus::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-active::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-aoki-light::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-kermit::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-kermit:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:placeholder-functional-kermit::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:placeholder-mixlabPlus-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:placeholder-mixlabPlus-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:placeholder-mixlabPlus-light::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:placeholder-primary-orange-light::-moz-placeholder{
    color: ;
  }

  .s1440\:placeholder-primary-orange-light:-ms-input-placeholder{
    color: ;
  }

  .s1440\:placeholder-primary-orange-light::placeholder{
    color: ;
  }

  .s1440\:placeholder-off-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:placeholder-off-white:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:placeholder-off-white::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-black:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-black:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-black:hover::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-transparent:hover::-moz-placeholder{
    color: transparent;
  }

  .s1440\:hover\:placeholder-transparent:hover:-ms-input-placeholder{
    color: transparent;
  }

  .s1440\:hover\:placeholder-transparent:hover::placeholder{
    color: transparent;
  }

  .s1440\:hover\:placeholder-error:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-error:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-error:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-success:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-success:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-success:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-white-10:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-white-10:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-white-10:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-white-20:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-white-20:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-white-20:hover::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-white:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-white:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-white:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-very-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-very-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-very-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-hocus:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-hocus:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-hocus:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-active:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-active:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-active:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-ml-plus:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-ml-plus:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-ml-plus:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-banner:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-banner:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-cheeto-banner:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-1:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-1:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-1:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-10:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-10:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-10:hover::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-20:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-20:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-20:hover::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-30:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-30:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-30:hover::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-40:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-40:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-40:hover::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-50:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-50:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-50:hover::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-60:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-60:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-60:hover::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-70:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-70:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-70:hover::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-80:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-80:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-80:hover::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-90:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-90:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-90:hover::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-100:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-100:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-100:hover::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy:hover::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-gracy-overlay-90:hover::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:hover\:placeholder-gracy-overlay-90:hover:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:hover\:placeholder-gracy-overlay-90:hover::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:hover\:placeholder-login:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-login:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-login:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-olive-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-olive-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-olive-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-olive-drab:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-olive-drab:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-olive-drab:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-olive-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-olive-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-olive-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-daisy-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-daisy-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-daisy-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-gumby:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-gumby:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-gumby:hover::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-daisy:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-daisy:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-daisy:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-pokey:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-pokey:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-pokey:hover::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-aster:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-aster:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-aster:hover::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-aster-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-aster-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-aster-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-roxo:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-roxo:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-roxo:hover::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-error:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-error:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-error:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-success:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-success:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-feedback-success:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki:hover::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-hocus:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-hocus:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-hocus:hover::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-active:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-active:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-active:hover::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-aoki-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-kermit:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-kermit:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-functional-kermit:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-mixlabPlus-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-mixlabPlus-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-mixlabPlus-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-primary-orange-light:hover::-moz-placeholder{
    color: ;
  }

  .s1440\:hover\:placeholder-primary-orange-light:hover:-ms-input-placeholder{
    color: ;
  }

  .s1440\:hover\:placeholder-primary-orange-light:hover::placeholder{
    color: ;
  }

  .s1440\:hover\:placeholder-off-white:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-off-white:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:hover\:placeholder-off-white:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-black:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .s1440\:focus\:placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent;
  }

  .s1440\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .s1440\:focus\:placeholder-error:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-error:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-error:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-success:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-success:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-success:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-white-10:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-white-10:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-white-10:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-white-20:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-white-20:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-white-20:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-white:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-very-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-very-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-very-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-hocus:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-hocus:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-hocus:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-active:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-ml-plus:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-ml-plus:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-ml-plus:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-banner:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-banner:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-cheeto-banner:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-1:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-1:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-1:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-10:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-10:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-10:focus::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-20:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-20:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-20:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-30:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-30:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-30:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-40:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-40:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-40:focus::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-50:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-50:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-50:focus::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-60:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-60:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-60:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-70:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-70:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-70:focus::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-80:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-80:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-80:focus::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-90:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-90:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-90:focus::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-100:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-100:focus::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy:focus::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-gracy-overlay-90:focus::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:focus\:placeholder-gracy-overlay-90:focus:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:focus\:placeholder-gracy-overlay-90:focus::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:focus\:placeholder-login:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-login:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-login:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-olive-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-olive-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-olive-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-olive-drab:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-olive-drab:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-olive-drab:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-olive-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-olive-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-olive-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-daisy-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-daisy-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-daisy-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-gumby:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-gumby:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-gumby:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-daisy:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-daisy:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-daisy:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-pokey:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-pokey:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-pokey:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-aster:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-aster:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-aster:focus::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-aster-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-aster-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-aster-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-roxo:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-roxo:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-roxo:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-error:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-error:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-error:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-success:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-success:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-feedback-success:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki:focus::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-hocus:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-hocus:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-hocus:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-active:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-aoki-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-kermit:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-kermit:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-functional-kermit:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-mixlabPlus-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-mixlabPlus-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-mixlabPlus-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-primary-orange-light:focus::-moz-placeholder{
    color: ;
  }

  .s1440\:focus\:placeholder-primary-orange-light:focus:-ms-input-placeholder{
    color: ;
  }

  .s1440\:focus\:placeholder-primary-orange-light:focus::placeholder{
    color: ;
  }

  .s1440\:focus\:placeholder-off-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-off-white:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:focus\:placeholder-off-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-black:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-black:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-black:active::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-transparent:active::-moz-placeholder{
    color: transparent;
  }

  .s1440\:active\:placeholder-transparent:active:-ms-input-placeholder{
    color: transparent;
  }

  .s1440\:active\:placeholder-transparent:active::placeholder{
    color: transparent;
  }

  .s1440\:active\:placeholder-error:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-error:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-error:active::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-success:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-success:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-success:active::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-white-10:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-white-10:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-white-10:active::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-white-20:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-white-20:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-white-20:active::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-white:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-white:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-white:active::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto:active::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-very-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-very-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-very-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-hocus:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-hocus:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-hocus:active::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-active:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-active:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-active:active::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-ml-plus:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-ml-plus:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-ml-plus:active::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-banner:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-banner:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-cheeto-banner:active::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-1:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-1:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-1:active::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-10:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-10:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-10:active::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-20:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-20:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-20:active::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-30:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-30:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-30:active::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-40:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-40:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-40:active::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-50:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-50:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-50:active::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-60:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-60:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-60:active::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-70:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-70:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-70:active::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-80:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-80:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-80:active::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-90:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-90:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-90:active::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-100:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-100:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-100:active::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy:active::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-gracy-overlay-90:active::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:active\:placeholder-gracy-overlay-90:active:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:active\:placeholder-gracy-overlay-90:active::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:active\:placeholder-login:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-login:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-login:active::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-olive-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-olive-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-olive-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-olive-drab:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-olive-drab:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-olive-drab:active::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-olive-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-olive-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-olive-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-daisy-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-daisy-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-daisy-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-gumby:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-gumby:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-gumby:active::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-daisy:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-daisy:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-daisy:active::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-pokey:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-pokey:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-pokey:active::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-aster:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-aster:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-aster:active::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-aster-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-aster-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-aster-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-roxo:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-roxo:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-roxo:active::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-error:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-error:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-error:active::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-success:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-success:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-feedback-success:active::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki:active::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-hocus:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-hocus:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-hocus:active::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-active:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-active:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-active:active::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-aoki-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-kermit:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-kermit:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-functional-kermit:active::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-mixlabPlus-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-mixlabPlus-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-mixlabPlus-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-primary-orange-light:active::-moz-placeholder{
    color: ;
  }

  .s1440\:active\:placeholder-primary-orange-light:active:-ms-input-placeholder{
    color: ;
  }

  .s1440\:active\:placeholder-primary-orange-light:active::placeholder{
    color: ;
  }

  .s1440\:active\:placeholder-off-white:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-off-white:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:active\:placeholder-off-white:active::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-black:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-black:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-black:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-transparent:first-child::-moz-placeholder{
    color: transparent;
  }

  .s1440\:first\:placeholder-transparent:first-child:-ms-input-placeholder{
    color: transparent;
  }

  .s1440\:first\:placeholder-transparent:first-child::placeholder{
    color: transparent;
  }

  .s1440\:first\:placeholder-error:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-error:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-error:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-success:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-success:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-success:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-white-10:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-white-10:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-white-10:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-white-20:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-white-20:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-white-20:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-white:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-white:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-white:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-very-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-very-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-very-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-hocus:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-hocus:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-hocus:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-active:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-active:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-active:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-ml-plus:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-ml-plus:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-ml-plus:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-banner:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-banner:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-cheeto-banner:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-1:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-1:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-1:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-10:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-10:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-10:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-20:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-20:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-20:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-30:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-30:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-30:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-40:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-40:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-40:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-50:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-50:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-50:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-60:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-60:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-60:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-70:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-70:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-70:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-80:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-80:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-80:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-90:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-90:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-90:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-100:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-100:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-100:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-gracy-overlay-90:first-child::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:first\:placeholder-gracy-overlay-90:first-child:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:first\:placeholder-gracy-overlay-90:first-child::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:first\:placeholder-login:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-login:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-login:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-olive-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-olive-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-olive-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-olive-drab:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-olive-drab:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-olive-drab:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-olive-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-olive-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-olive-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-daisy-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-daisy-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-daisy-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-gumby:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-gumby:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-gumby:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-daisy:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-daisy:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-daisy:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-pokey:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-pokey:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-pokey:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-aster:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-aster:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-aster:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-aster-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-aster-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-aster-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-roxo:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-roxo:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-roxo:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-error:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-error:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-error:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-success:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-success:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-feedback-success:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-hocus:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-hocus:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-hocus:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-active:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-active:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-active:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-aoki-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-kermit:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-kermit:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-functional-kermit:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-mixlabPlus-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-mixlabPlus-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-mixlabPlus-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-primary-orange-light:first-child::-moz-placeholder{
    color: ;
  }

  .s1440\:first\:placeholder-primary-orange-light:first-child:-ms-input-placeholder{
    color: ;
  }

  .s1440\:first\:placeholder-primary-orange-light:first-child::placeholder{
    color: ;
  }

  .s1440\:first\:placeholder-off-white:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-off-white:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:first\:placeholder-off-white:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-black:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-black:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-black:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-transparent:last-child::-moz-placeholder{
    color: transparent;
  }

  .s1440\:last\:placeholder-transparent:last-child:-ms-input-placeholder{
    color: transparent;
  }

  .s1440\:last\:placeholder-transparent:last-child::placeholder{
    color: transparent;
  }

  .s1440\:last\:placeholder-error:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-error:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-error:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-success:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-success:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-success:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-white-10:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-white-10:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-white-10:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-white-20:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-white-20:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-white-20:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-white:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-white:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-white:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-very-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-very-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-very-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-hocus:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-hocus:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-hocus:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-active:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-active:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-active:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-ml-plus:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-ml-plus:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-ml-plus:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-banner:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-banner:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-cheeto-banner:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-1:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-1:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-1:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-10:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-10:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-10:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-20:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-20:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-20:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-30:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-30:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-30:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-40:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-40:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-40:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-50:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-50:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-50:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-60:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-60:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-60:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-70:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-70:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-70:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-80:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-80:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-80:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-90:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-90:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-90:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-100:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-100:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-100:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-gracy-overlay-90:last-child::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:last\:placeholder-gracy-overlay-90:last-child:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:last\:placeholder-gracy-overlay-90:last-child::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:last\:placeholder-login:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-login:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-login:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-olive-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-olive-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-olive-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-olive-drab:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-olive-drab:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-olive-drab:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-olive-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-olive-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-olive-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-daisy-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-daisy-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-daisy-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-gumby:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-gumby:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-gumby:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-daisy:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-daisy:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-daisy:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-pokey:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-pokey:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-pokey:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-aster:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-aster:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-aster:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-aster-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-aster-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-aster-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-roxo:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-roxo:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-roxo:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-error:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-error:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-error:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-success:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-success:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-feedback-success:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-hocus:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-hocus:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-hocus:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-active:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-active:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-active:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-aoki-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-kermit:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-kermit:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-functional-kermit:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-mixlabPlus-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-mixlabPlus-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-mixlabPlus-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-primary-orange-light:last-child::-moz-placeholder{
    color: ;
  }

  .s1440\:last\:placeholder-primary-orange-light:last-child:-ms-input-placeholder{
    color: ;
  }

  .s1440\:last\:placeholder-primary-orange-light:last-child::placeholder{
    color: ;
  }

  .s1440\:last\:placeholder-off-white:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-off-white:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:last\:placeholder-off-white:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1440\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:placeholder-opacity-0::placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:placeholder-opacity-25::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:placeholder-opacity-50::placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:placeholder-opacity-75::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:placeholder-opacity-80::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:placeholder-opacity-80:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:placeholder-opacity-80::placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:placeholder-opacity-100::placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:hover\:placeholder-opacity-0:hover::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:hover\:placeholder-opacity-0:hover:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:hover\:placeholder-opacity-0:hover::placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:hover\:placeholder-opacity-25:hover::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:hover\:placeholder-opacity-25:hover:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:hover\:placeholder-opacity-25:hover::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:hover\:placeholder-opacity-50:hover::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:hover\:placeholder-opacity-50:hover:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:hover\:placeholder-opacity-50:hover::placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:hover\:placeholder-opacity-75:hover::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:hover\:placeholder-opacity-75:hover:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:hover\:placeholder-opacity-75:hover::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:hover\:placeholder-opacity-80:hover::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:hover\:placeholder-opacity-80:hover:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:hover\:placeholder-opacity-80:hover::placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:hover\:placeholder-opacity-100:hover::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:hover\:placeholder-opacity-100:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:hover\:placeholder-opacity-100:hover::placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:focus\:placeholder-opacity-80:focus::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:focus\:placeholder-opacity-80:focus::placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:active\:placeholder-opacity-0:active::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:active\:placeholder-opacity-0:active:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:active\:placeholder-opacity-0:active::placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:active\:placeholder-opacity-25:active::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:active\:placeholder-opacity-25:active:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:active\:placeholder-opacity-25:active::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:active\:placeholder-opacity-50:active::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:active\:placeholder-opacity-50:active:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:active\:placeholder-opacity-50:active::placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:active\:placeholder-opacity-75:active::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:active\:placeholder-opacity-75:active:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:active\:placeholder-opacity-75:active::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:active\:placeholder-opacity-80:active::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:active\:placeholder-opacity-80:active:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:active\:placeholder-opacity-80:active::placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:active\:placeholder-opacity-100:active::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:active\:placeholder-opacity-100:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:active\:placeholder-opacity-100:active::placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:first\:placeholder-opacity-0:first-child::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:first\:placeholder-opacity-0:first-child:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:first\:placeholder-opacity-0:first-child::placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:first\:placeholder-opacity-25:first-child::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:first\:placeholder-opacity-25:first-child:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:first\:placeholder-opacity-25:first-child::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:first\:placeholder-opacity-50:first-child::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:first\:placeholder-opacity-50:first-child:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:first\:placeholder-opacity-50:first-child::placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:first\:placeholder-opacity-75:first-child::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:first\:placeholder-opacity-75:first-child:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:first\:placeholder-opacity-75:first-child::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:first\:placeholder-opacity-80:first-child::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:first\:placeholder-opacity-80:first-child:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:first\:placeholder-opacity-80:first-child::placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:first\:placeholder-opacity-100:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:first\:placeholder-opacity-100:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:first\:placeholder-opacity-100:first-child::placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:last\:placeholder-opacity-0:last-child::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:last\:placeholder-opacity-0:last-child:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:last\:placeholder-opacity-0:last-child::placeholder{
    --placeholder-opacity: 0;
  }

  .s1440\:last\:placeholder-opacity-25:last-child::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:last\:placeholder-opacity-25:last-child:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:last\:placeholder-opacity-25:last-child::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1440\:last\:placeholder-opacity-50:last-child::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:last\:placeholder-opacity-50:last-child:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:last\:placeholder-opacity-50:last-child::placeholder{
    --placeholder-opacity: .5;
  }

  .s1440\:last\:placeholder-opacity-75:last-child::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:last\:placeholder-opacity-75:last-child:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:last\:placeholder-opacity-75:last-child::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1440\:last\:placeholder-opacity-80:last-child::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:last\:placeholder-opacity-80:last-child:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:last\:placeholder-opacity-80:last-child::placeholder{
    --placeholder-opacity: .8;
  }

  .s1440\:last\:placeholder-opacity-100:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:last\:placeholder-opacity-100:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:last\:placeholder-opacity-100:last-child::placeholder{
    --placeholder-opacity: 1;
  }

  .s1440\:pointer-events-none{
    pointer-events: none;
  }

  .s1440\:pointer-events-auto{
    pointer-events: auto;
  }

  .s1440\:hover\:pointer-events-none:hover{
    pointer-events: none;
  }

  .s1440\:hover\:pointer-events-auto:hover{
    pointer-events: auto;
  }

  .s1440\:focus\:pointer-events-none:focus{
    pointer-events: none;
  }

  .s1440\:focus\:pointer-events-auto:focus{
    pointer-events: auto;
  }

  .s1440\:active\:pointer-events-none:active{
    pointer-events: none;
  }

  .s1440\:active\:pointer-events-auto:active{
    pointer-events: auto;
  }

  .s1440\:first\:pointer-events-none:first-child{
    pointer-events: none;
  }

  .s1440\:first\:pointer-events-auto:first-child{
    pointer-events: auto;
  }

  .s1440\:last\:pointer-events-none:last-child{
    pointer-events: none;
  }

  .s1440\:last\:pointer-events-auto:last-child{
    pointer-events: auto;
  }

  .s1440\:static{
    position: static;
  }

  .s1440\:fixed{
    position: fixed;
  }

  .s1440\:absolute{
    position: absolute;
  }

  .s1440\:relative{
    position: relative;
  }

  .s1440\:sticky{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1440\:hover\:static:hover{
    position: static;
  }

  .s1440\:hover\:fixed:hover{
    position: fixed;
  }

  .s1440\:hover\:absolute:hover{
    position: absolute;
  }

  .s1440\:hover\:relative:hover{
    position: relative;
  }

  .s1440\:hover\:sticky:hover{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1440\:focus\:static:focus{
    position: static;
  }

  .s1440\:focus\:fixed:focus{
    position: fixed;
  }

  .s1440\:focus\:absolute:focus{
    position: absolute;
  }

  .s1440\:focus\:relative:focus{
    position: relative;
  }

  .s1440\:focus\:sticky:focus{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1440\:active\:static:active{
    position: static;
  }

  .s1440\:active\:fixed:active{
    position: fixed;
  }

  .s1440\:active\:absolute:active{
    position: absolute;
  }

  .s1440\:active\:relative:active{
    position: relative;
  }

  .s1440\:active\:sticky:active{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1440\:first\:static:first-child{
    position: static;
  }

  .s1440\:first\:fixed:first-child{
    position: fixed;
  }

  .s1440\:first\:absolute:first-child{
    position: absolute;
  }

  .s1440\:first\:relative:first-child{
    position: relative;
  }

  .s1440\:first\:sticky:first-child{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1440\:last\:static:last-child{
    position: static;
  }

  .s1440\:last\:fixed:last-child{
    position: fixed;
  }

  .s1440\:last\:absolute:last-child{
    position: absolute;
  }

  .s1440\:last\:relative:last-child{
    position: relative;
  }

  .s1440\:last\:sticky:last-child{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1440\:inset-0{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1440\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1440\:inset-1\/2{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1440\:inset-header{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1440\:inset-y-0{
    top: 0;
    bottom: 0;
  }

  .s1440\:inset-x-0{
    right: 0;
    left: 0;
  }

  .s1440\:inset-y-auto{
    top: auto;
    bottom: auto;
  }

  .s1440\:inset-x-auto{
    right: auto;
    left: auto;
  }

  .s1440\:inset-y-1\/2{
    top: 50%;
    bottom: 50%;
  }

  .s1440\:inset-x-1\/2{
    right: 50%;
    left: 50%;
  }

  .s1440\:inset-y-header{
    top: 5rem;
    bottom: 5rem;
  }

  .s1440\:inset-x-header{
    right: 5rem;
    left: 5rem;
  }

  .s1440\:top-0{
    top: 0;
  }

  .s1440\:right-0{
    right: 0;
  }

  .s1440\:bottom-0{
    bottom: 0;
  }

  .s1440\:left-0{
    left: 0;
  }

  .s1440\:top-auto{
    top: auto;
  }

  .s1440\:right-auto{
    right: auto;
  }

  .s1440\:bottom-auto{
    bottom: auto;
  }

  .s1440\:left-auto{
    left: auto;
  }

  .s1440\:top-1\/2{
    top: 50%;
  }

  .s1440\:right-1\/2{
    right: 50%;
  }

  .s1440\:bottom-1\/2{
    bottom: 50%;
  }

  .s1440\:left-1\/2{
    left: 50%;
  }

  .s1440\:top-header{
    top: 5rem;
  }

  .s1440\:right-header{
    right: 5rem;
  }

  .s1440\:bottom-header{
    bottom: 5rem;
  }

  .s1440\:left-header{
    left: 5rem;
  }

  .s1440\:hover\:inset-0:hover{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1440\:hover\:inset-auto:hover{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1440\:hover\:inset-1\/2:hover{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1440\:hover\:inset-header:hover{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1440\:hover\:inset-y-0:hover{
    top: 0;
    bottom: 0;
  }

  .s1440\:hover\:inset-x-0:hover{
    right: 0;
    left: 0;
  }

  .s1440\:hover\:inset-y-auto:hover{
    top: auto;
    bottom: auto;
  }

  .s1440\:hover\:inset-x-auto:hover{
    right: auto;
    left: auto;
  }

  .s1440\:hover\:inset-y-1\/2:hover{
    top: 50%;
    bottom: 50%;
  }

  .s1440\:hover\:inset-x-1\/2:hover{
    right: 50%;
    left: 50%;
  }

  .s1440\:hover\:inset-y-header:hover{
    top: 5rem;
    bottom: 5rem;
  }

  .s1440\:hover\:inset-x-header:hover{
    right: 5rem;
    left: 5rem;
  }

  .s1440\:hover\:top-0:hover{
    top: 0;
  }

  .s1440\:hover\:right-0:hover{
    right: 0;
  }

  .s1440\:hover\:bottom-0:hover{
    bottom: 0;
  }

  .s1440\:hover\:left-0:hover{
    left: 0;
  }

  .s1440\:hover\:top-auto:hover{
    top: auto;
  }

  .s1440\:hover\:right-auto:hover{
    right: auto;
  }

  .s1440\:hover\:bottom-auto:hover{
    bottom: auto;
  }

  .s1440\:hover\:left-auto:hover{
    left: auto;
  }

  .s1440\:hover\:top-1\/2:hover{
    top: 50%;
  }

  .s1440\:hover\:right-1\/2:hover{
    right: 50%;
  }

  .s1440\:hover\:bottom-1\/2:hover{
    bottom: 50%;
  }

  .s1440\:hover\:left-1\/2:hover{
    left: 50%;
  }

  .s1440\:hover\:top-header:hover{
    top: 5rem;
  }

  .s1440\:hover\:right-header:hover{
    right: 5rem;
  }

  .s1440\:hover\:bottom-header:hover{
    bottom: 5rem;
  }

  .s1440\:hover\:left-header:hover{
    left: 5rem;
  }

  .s1440\:focus\:inset-0:focus{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1440\:focus\:inset-auto:focus{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1440\:focus\:inset-1\/2:focus{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1440\:focus\:inset-header:focus{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1440\:focus\:inset-y-0:focus{
    top: 0;
    bottom: 0;
  }

  .s1440\:focus\:inset-x-0:focus{
    right: 0;
    left: 0;
  }

  .s1440\:focus\:inset-y-auto:focus{
    top: auto;
    bottom: auto;
  }

  .s1440\:focus\:inset-x-auto:focus{
    right: auto;
    left: auto;
  }

  .s1440\:focus\:inset-y-1\/2:focus{
    top: 50%;
    bottom: 50%;
  }

  .s1440\:focus\:inset-x-1\/2:focus{
    right: 50%;
    left: 50%;
  }

  .s1440\:focus\:inset-y-header:focus{
    top: 5rem;
    bottom: 5rem;
  }

  .s1440\:focus\:inset-x-header:focus{
    right: 5rem;
    left: 5rem;
  }

  .s1440\:focus\:top-0:focus{
    top: 0;
  }

  .s1440\:focus\:right-0:focus{
    right: 0;
  }

  .s1440\:focus\:bottom-0:focus{
    bottom: 0;
  }

  .s1440\:focus\:left-0:focus{
    left: 0;
  }

  .s1440\:focus\:top-auto:focus{
    top: auto;
  }

  .s1440\:focus\:right-auto:focus{
    right: auto;
  }

  .s1440\:focus\:bottom-auto:focus{
    bottom: auto;
  }

  .s1440\:focus\:left-auto:focus{
    left: auto;
  }

  .s1440\:focus\:top-1\/2:focus{
    top: 50%;
  }

  .s1440\:focus\:right-1\/2:focus{
    right: 50%;
  }

  .s1440\:focus\:bottom-1\/2:focus{
    bottom: 50%;
  }

  .s1440\:focus\:left-1\/2:focus{
    left: 50%;
  }

  .s1440\:focus\:top-header:focus{
    top: 5rem;
  }

  .s1440\:focus\:right-header:focus{
    right: 5rem;
  }

  .s1440\:focus\:bottom-header:focus{
    bottom: 5rem;
  }

  .s1440\:focus\:left-header:focus{
    left: 5rem;
  }

  .s1440\:active\:inset-0:active{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1440\:active\:inset-auto:active{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1440\:active\:inset-1\/2:active{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1440\:active\:inset-header:active{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1440\:active\:inset-y-0:active{
    top: 0;
    bottom: 0;
  }

  .s1440\:active\:inset-x-0:active{
    right: 0;
    left: 0;
  }

  .s1440\:active\:inset-y-auto:active{
    top: auto;
    bottom: auto;
  }

  .s1440\:active\:inset-x-auto:active{
    right: auto;
    left: auto;
  }

  .s1440\:active\:inset-y-1\/2:active{
    top: 50%;
    bottom: 50%;
  }

  .s1440\:active\:inset-x-1\/2:active{
    right: 50%;
    left: 50%;
  }

  .s1440\:active\:inset-y-header:active{
    top: 5rem;
    bottom: 5rem;
  }

  .s1440\:active\:inset-x-header:active{
    right: 5rem;
    left: 5rem;
  }

  .s1440\:active\:top-0:active{
    top: 0;
  }

  .s1440\:active\:right-0:active{
    right: 0;
  }

  .s1440\:active\:bottom-0:active{
    bottom: 0;
  }

  .s1440\:active\:left-0:active{
    left: 0;
  }

  .s1440\:active\:top-auto:active{
    top: auto;
  }

  .s1440\:active\:right-auto:active{
    right: auto;
  }

  .s1440\:active\:bottom-auto:active{
    bottom: auto;
  }

  .s1440\:active\:left-auto:active{
    left: auto;
  }

  .s1440\:active\:top-1\/2:active{
    top: 50%;
  }

  .s1440\:active\:right-1\/2:active{
    right: 50%;
  }

  .s1440\:active\:bottom-1\/2:active{
    bottom: 50%;
  }

  .s1440\:active\:left-1\/2:active{
    left: 50%;
  }

  .s1440\:active\:top-header:active{
    top: 5rem;
  }

  .s1440\:active\:right-header:active{
    right: 5rem;
  }

  .s1440\:active\:bottom-header:active{
    bottom: 5rem;
  }

  .s1440\:active\:left-header:active{
    left: 5rem;
  }

  .s1440\:first\:inset-0:first-child{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1440\:first\:inset-auto:first-child{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1440\:first\:inset-1\/2:first-child{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1440\:first\:inset-header:first-child{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1440\:first\:inset-y-0:first-child{
    top: 0;
    bottom: 0;
  }

  .s1440\:first\:inset-x-0:first-child{
    right: 0;
    left: 0;
  }

  .s1440\:first\:inset-y-auto:first-child{
    top: auto;
    bottom: auto;
  }

  .s1440\:first\:inset-x-auto:first-child{
    right: auto;
    left: auto;
  }

  .s1440\:first\:inset-y-1\/2:first-child{
    top: 50%;
    bottom: 50%;
  }

  .s1440\:first\:inset-x-1\/2:first-child{
    right: 50%;
    left: 50%;
  }

  .s1440\:first\:inset-y-header:first-child{
    top: 5rem;
    bottom: 5rem;
  }

  .s1440\:first\:inset-x-header:first-child{
    right: 5rem;
    left: 5rem;
  }

  .s1440\:first\:top-0:first-child{
    top: 0;
  }

  .s1440\:first\:right-0:first-child{
    right: 0;
  }

  .s1440\:first\:bottom-0:first-child{
    bottom: 0;
  }

  .s1440\:first\:left-0:first-child{
    left: 0;
  }

  .s1440\:first\:top-auto:first-child{
    top: auto;
  }

  .s1440\:first\:right-auto:first-child{
    right: auto;
  }

  .s1440\:first\:bottom-auto:first-child{
    bottom: auto;
  }

  .s1440\:first\:left-auto:first-child{
    left: auto;
  }

  .s1440\:first\:top-1\/2:first-child{
    top: 50%;
  }

  .s1440\:first\:right-1\/2:first-child{
    right: 50%;
  }

  .s1440\:first\:bottom-1\/2:first-child{
    bottom: 50%;
  }

  .s1440\:first\:left-1\/2:first-child{
    left: 50%;
  }

  .s1440\:first\:top-header:first-child{
    top: 5rem;
  }

  .s1440\:first\:right-header:first-child{
    right: 5rem;
  }

  .s1440\:first\:bottom-header:first-child{
    bottom: 5rem;
  }

  .s1440\:first\:left-header:first-child{
    left: 5rem;
  }

  .s1440\:last\:inset-0:last-child{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1440\:last\:inset-auto:last-child{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1440\:last\:inset-1\/2:last-child{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1440\:last\:inset-header:last-child{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1440\:last\:inset-y-0:last-child{
    top: 0;
    bottom: 0;
  }

  .s1440\:last\:inset-x-0:last-child{
    right: 0;
    left: 0;
  }

  .s1440\:last\:inset-y-auto:last-child{
    top: auto;
    bottom: auto;
  }

  .s1440\:last\:inset-x-auto:last-child{
    right: auto;
    left: auto;
  }

  .s1440\:last\:inset-y-1\/2:last-child{
    top: 50%;
    bottom: 50%;
  }

  .s1440\:last\:inset-x-1\/2:last-child{
    right: 50%;
    left: 50%;
  }

  .s1440\:last\:inset-y-header:last-child{
    top: 5rem;
    bottom: 5rem;
  }

  .s1440\:last\:inset-x-header:last-child{
    right: 5rem;
    left: 5rem;
  }

  .s1440\:last\:top-0:last-child{
    top: 0;
  }

  .s1440\:last\:right-0:last-child{
    right: 0;
  }

  .s1440\:last\:bottom-0:last-child{
    bottom: 0;
  }

  .s1440\:last\:left-0:last-child{
    left: 0;
  }

  .s1440\:last\:top-auto:last-child{
    top: auto;
  }

  .s1440\:last\:right-auto:last-child{
    right: auto;
  }

  .s1440\:last\:bottom-auto:last-child{
    bottom: auto;
  }

  .s1440\:last\:left-auto:last-child{
    left: auto;
  }

  .s1440\:last\:top-1\/2:last-child{
    top: 50%;
  }

  .s1440\:last\:right-1\/2:last-child{
    right: 50%;
  }

  .s1440\:last\:bottom-1\/2:last-child{
    bottom: 50%;
  }

  .s1440\:last\:left-1\/2:last-child{
    left: 50%;
  }

  .s1440\:last\:top-header:last-child{
    top: 5rem;
  }

  .s1440\:last\:right-header:last-child{
    right: 5rem;
  }

  .s1440\:last\:bottom-header:last-child{
    bottom: 5rem;
  }

  .s1440\:last\:left-header:last-child{
    left: 5rem;
  }

  .s1440\:resize-none{
    resize: none;
  }

  .s1440\:resize-y{
    resize: vertical;
  }

  .s1440\:resize-x{
    resize: horizontal;
  }

  .s1440\:resize{
    resize: both;
  }

  .s1440\:hover\:resize-none:hover{
    resize: none;
  }

  .s1440\:hover\:resize-y:hover{
    resize: vertical;
  }

  .s1440\:hover\:resize-x:hover{
    resize: horizontal;
  }

  .s1440\:hover\:resize:hover{
    resize: both;
  }

  .s1440\:focus\:resize-none:focus{
    resize: none;
  }

  .s1440\:focus\:resize-y:focus{
    resize: vertical;
  }

  .s1440\:focus\:resize-x:focus{
    resize: horizontal;
  }

  .s1440\:focus\:resize:focus{
    resize: both;
  }

  .s1440\:active\:resize-none:active{
    resize: none;
  }

  .s1440\:active\:resize-y:active{
    resize: vertical;
  }

  .s1440\:active\:resize-x:active{
    resize: horizontal;
  }

  .s1440\:active\:resize:active{
    resize: both;
  }

  .s1440\:first\:resize-none:first-child{
    resize: none;
  }

  .s1440\:first\:resize-y:first-child{
    resize: vertical;
  }

  .s1440\:first\:resize-x:first-child{
    resize: horizontal;
  }

  .s1440\:first\:resize:first-child{
    resize: both;
  }

  .s1440\:last\:resize-none:last-child{
    resize: none;
  }

  .s1440\:last\:resize-y:last-child{
    resize: vertical;
  }

  .s1440\:last\:resize-x:last-child{
    resize: horizontal;
  }

  .s1440\:last\:resize:last-child{
    resize: both;
  }

  .s1440\:shadow-xs{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1440\:shadow-sm{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1440\:shadow{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:shadow-md{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1440\:shadow-lg{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1440\:shadow-xl{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1440\:shadow-2xl{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1440\:shadow-inner{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:shadow-outline{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1440\:shadow-none{
    box-shadow: none;
  }

  .s1440\:shadow-upper{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1440\:hover\:shadow-xs:hover{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1440\:hover\:shadow-sm:hover{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1440\:hover\:shadow:hover{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:hover\:shadow-md:hover{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1440\:hover\:shadow-lg:hover{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1440\:hover\:shadow-xl:hover{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1440\:hover\:shadow-2xl:hover{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1440\:hover\:shadow-inner:hover{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:hover\:shadow-outline:hover{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1440\:hover\:shadow-none:hover{
    box-shadow: none;
  }

  .s1440\:hover\:shadow-upper:hover{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1440\:focus\:shadow-xs:focus{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1440\:focus\:shadow-sm:focus{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1440\:focus\:shadow:focus{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:focus\:shadow-md:focus{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1440\:focus\:shadow-lg:focus{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1440\:focus\:shadow-xl:focus{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1440\:focus\:shadow-2xl:focus{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1440\:focus\:shadow-inner:focus{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:focus\:shadow-outline:focus{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1440\:focus\:shadow-none:focus{
    box-shadow: none;
  }

  .s1440\:focus\:shadow-upper:focus{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1440\:active\:shadow-xs:active{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1440\:active\:shadow-sm:active{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1440\:active\:shadow:active{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:active\:shadow-md:active{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1440\:active\:shadow-lg:active{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1440\:active\:shadow-xl:active{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1440\:active\:shadow-2xl:active{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1440\:active\:shadow-inner:active{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:active\:shadow-outline:active{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1440\:active\:shadow-none:active{
    box-shadow: none;
  }

  .s1440\:active\:shadow-upper:active{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1440\:first\:shadow-xs:first-child{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1440\:first\:shadow-sm:first-child{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1440\:first\:shadow:first-child{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:first\:shadow-md:first-child{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1440\:first\:shadow-lg:first-child{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1440\:first\:shadow-xl:first-child{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1440\:first\:shadow-2xl:first-child{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1440\:first\:shadow-inner:first-child{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:first\:shadow-outline:first-child{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1440\:first\:shadow-none:first-child{
    box-shadow: none;
  }

  .s1440\:first\:shadow-upper:first-child{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1440\:last\:shadow-xs:last-child{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1440\:last\:shadow-sm:last-child{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1440\:last\:shadow:last-child{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:last\:shadow-md:last-child{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1440\:last\:shadow-lg:last-child{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1440\:last\:shadow-xl:last-child{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1440\:last\:shadow-2xl:last-child{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1440\:last\:shadow-inner:last-child{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1440\:last\:shadow-outline:last-child{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1440\:last\:shadow-none:last-child{
    box-shadow: none;
  }

  .s1440\:last\:shadow-upper:last-child{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1440\:fill-current{
    fill: currentColor;
  }

  .s1440\:hover\:fill-current:hover{
    fill: currentColor;
  }

  .s1440\:focus\:fill-current:focus{
    fill: currentColor;
  }

  .s1440\:active\:fill-current:active{
    fill: currentColor;
  }

  .s1440\:first\:fill-current:first-child{
    fill: currentColor;
  }

  .s1440\:last\:fill-current:last-child{
    fill: currentColor;
  }

  .s1440\:stroke-current{
    stroke: currentColor;
  }

  .s1440\:hover\:stroke-current:hover{
    stroke: currentColor;
  }

  .s1440\:focus\:stroke-current:focus{
    stroke: currentColor;
  }

  .s1440\:active\:stroke-current:active{
    stroke: currentColor;
  }

  .s1440\:first\:stroke-current:first-child{
    stroke: currentColor;
  }

  .s1440\:last\:stroke-current:last-child{
    stroke: currentColor;
  }

  .s1440\:stroke-0{
    stroke-width: 0;
  }

  .s1440\:stroke-1{
    stroke-width: 1;
  }

  .s1440\:stroke-2{
    stroke-width: 2;
  }

  .s1440\:hover\:stroke-0:hover{
    stroke-width: 0;
  }

  .s1440\:hover\:stroke-1:hover{
    stroke-width: 1;
  }

  .s1440\:hover\:stroke-2:hover{
    stroke-width: 2;
  }

  .s1440\:focus\:stroke-0:focus{
    stroke-width: 0;
  }

  .s1440\:focus\:stroke-1:focus{
    stroke-width: 1;
  }

  .s1440\:focus\:stroke-2:focus{
    stroke-width: 2;
  }

  .s1440\:active\:stroke-0:active{
    stroke-width: 0;
  }

  .s1440\:active\:stroke-1:active{
    stroke-width: 1;
  }

  .s1440\:active\:stroke-2:active{
    stroke-width: 2;
  }

  .s1440\:first\:stroke-0:first-child{
    stroke-width: 0;
  }

  .s1440\:first\:stroke-1:first-child{
    stroke-width: 1;
  }

  .s1440\:first\:stroke-2:first-child{
    stroke-width: 2;
  }

  .s1440\:last\:stroke-0:last-child{
    stroke-width: 0;
  }

  .s1440\:last\:stroke-1:last-child{
    stroke-width: 1;
  }

  .s1440\:last\:stroke-2:last-child{
    stroke-width: 2;
  }

  .s1440\:table-auto{
    table-layout: auto;
  }

  .s1440\:table-fixed{
    table-layout: fixed;
  }

  .s1440\:hover\:table-auto:hover{
    table-layout: auto;
  }

  .s1440\:hover\:table-fixed:hover{
    table-layout: fixed;
  }

  .s1440\:focus\:table-auto:focus{
    table-layout: auto;
  }

  .s1440\:focus\:table-fixed:focus{
    table-layout: fixed;
  }

  .s1440\:active\:table-auto:active{
    table-layout: auto;
  }

  .s1440\:active\:table-fixed:active{
    table-layout: fixed;
  }

  .s1440\:first\:table-auto:first-child{
    table-layout: auto;
  }

  .s1440\:first\:table-fixed:first-child{
    table-layout: fixed;
  }

  .s1440\:last\:table-auto:last-child{
    table-layout: auto;
  }

  .s1440\:last\:table-fixed:last-child{
    table-layout: fixed;
  }

  .s1440\:text-left{
    text-align: left;
  }

  .s1440\:text-center{
    text-align: center;
  }

  .s1440\:text-right{
    text-align: right;
  }

  .s1440\:text-justify{
    text-align: justify;
  }

  .s1440\:hover\:text-left:hover{
    text-align: left;
  }

  .s1440\:hover\:text-center:hover{
    text-align: center;
  }

  .s1440\:hover\:text-right:hover{
    text-align: right;
  }

  .s1440\:hover\:text-justify:hover{
    text-align: justify;
  }

  .s1440\:focus\:text-left:focus{
    text-align: left;
  }

  .s1440\:focus\:text-center:focus{
    text-align: center;
  }

  .s1440\:focus\:text-right:focus{
    text-align: right;
  }

  .s1440\:focus\:text-justify:focus{
    text-align: justify;
  }

  .s1440\:active\:text-left:active{
    text-align: left;
  }

  .s1440\:active\:text-center:active{
    text-align: center;
  }

  .s1440\:active\:text-right:active{
    text-align: right;
  }

  .s1440\:active\:text-justify:active{
    text-align: justify;
  }

  .s1440\:first\:text-left:first-child{
    text-align: left;
  }

  .s1440\:first\:text-center:first-child{
    text-align: center;
  }

  .s1440\:first\:text-right:first-child{
    text-align: right;
  }

  .s1440\:first\:text-justify:first-child{
    text-align: justify;
  }

  .s1440\:last\:text-left:last-child{
    text-align: left;
  }

  .s1440\:last\:text-center:last-child{
    text-align: center;
  }

  .s1440\:last\:text-right:last-child{
    text-align: right;
  }

  .s1440\:last\:text-justify:last-child{
    text-align: justify;
  }

  .s1440\:text-black{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1440\:text-transparent{
    color: transparent;
  }

  .s1440\:text-error{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:text-success{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:text-white-10{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1440\:text-white-20{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1440\:text-white{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1440\:text-cheeto{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1440\:text-cheeto-very-light{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1440\:text-cheeto-light{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1440\:text-cheeto-dark{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1440\:text-cheeto-hocus{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1440\:text-cheeto-active{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1440\:text-cheeto-ml-plus{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1440\:text-cheeto-banner{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1440\:text-gracy-1{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1440\:text-gracy-10{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1440\:text-gracy-20{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1440\:text-gracy-30{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1440\:text-gracy-40{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1440\:text-gracy-50{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1440\:text-gracy-60{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1440\:text-gracy-70{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1440\:text-gracy-80{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1440\:text-gracy-90{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1440\:text-gracy-100{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1440\:text-gracy{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1440\:text-gracy-overlay-90{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:text-login{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1440\:text-olive-light{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1440\:text-olive-drab{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:text-olive-dark{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1440\:text-daisy-light{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1440\:text-feedback-gumby{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1440\:text-feedback-daisy{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1440\:text-feedback-pokey{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1440\:text-feedback-aster{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1440\:text-feedback-aster-dark{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1440\:text-feedback-roxo{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1440\:text-feedback-error{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:text-feedback-success{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:text-functional-aoki{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1440\:text-functional-aoki-dark{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1440\:text-functional-aoki-hocus{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1440\:text-functional-aoki-active{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1440\:text-functional-aoki-light{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1440\:text-functional-kermit{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1440\:text-mixlabPlus-light{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1440\:text-primary-orange-light{
    color: ;
  }

  .s1440\:text-off-white{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1440\:hover\:text-black:hover{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1440\:hover\:text-transparent:hover{
    color: transparent;
  }

  .s1440\:hover\:text-error:hover{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:hover\:text-success:hover{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:hover\:text-white-10:hover{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1440\:hover\:text-white-20:hover{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1440\:hover\:text-white:hover{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1440\:hover\:text-cheeto:hover{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1440\:hover\:text-cheeto-very-light:hover{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1440\:hover\:text-cheeto-light:hover{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1440\:hover\:text-cheeto-dark:hover{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1440\:hover\:text-cheeto-hocus:hover{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1440\:hover\:text-cheeto-active:hover{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1440\:hover\:text-cheeto-ml-plus:hover{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1440\:hover\:text-cheeto-banner:hover{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-1:hover{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-10:hover{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-20:hover{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-30:hover{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-40:hover{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-50:hover{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-60:hover{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-70:hover{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-80:hover{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-90:hover{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-100:hover{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy:hover{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1440\:hover\:text-gracy-overlay-90:hover{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:hover\:text-login:hover{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1440\:hover\:text-olive-light:hover{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1440\:hover\:text-olive-drab:hover{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:hover\:text-olive-dark:hover{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1440\:hover\:text-daisy-light:hover{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1440\:hover\:text-feedback-gumby:hover{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1440\:hover\:text-feedback-daisy:hover{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1440\:hover\:text-feedback-pokey:hover{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1440\:hover\:text-feedback-aster:hover{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1440\:hover\:text-feedback-aster-dark:hover{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1440\:hover\:text-feedback-roxo:hover{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1440\:hover\:text-feedback-error:hover{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:hover\:text-feedback-success:hover{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:hover\:text-functional-aoki:hover{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1440\:hover\:text-functional-aoki-dark:hover{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1440\:hover\:text-functional-aoki-hocus:hover{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1440\:hover\:text-functional-aoki-active:hover{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1440\:hover\:text-functional-aoki-light:hover{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1440\:hover\:text-functional-kermit:hover{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1440\:hover\:text-mixlabPlus-light:hover{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1440\:hover\:text-primary-orange-light:hover{
    color: ;
  }

  .s1440\:hover\:text-off-white:hover{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1440\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1440\:focus\:text-transparent:focus{
    color: transparent;
  }

  .s1440\:focus\:text-error:focus{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:focus\:text-success:focus{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:focus\:text-white-10:focus{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1440\:focus\:text-white-20:focus{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1440\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1440\:focus\:text-cheeto:focus{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1440\:focus\:text-cheeto-very-light:focus{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1440\:focus\:text-cheeto-light:focus{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1440\:focus\:text-cheeto-dark:focus{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1440\:focus\:text-cheeto-hocus:focus{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1440\:focus\:text-cheeto-active:focus{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1440\:focus\:text-cheeto-ml-plus:focus{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1440\:focus\:text-cheeto-banner:focus{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-1:focus{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-10:focus{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-20:focus{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-30:focus{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-40:focus{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-50:focus{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-60:focus{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-70:focus{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-80:focus{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-90:focus{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-100:focus{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy:focus{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1440\:focus\:text-gracy-overlay-90:focus{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:focus\:text-login:focus{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1440\:focus\:text-olive-light:focus{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1440\:focus\:text-olive-drab:focus{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:focus\:text-olive-dark:focus{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1440\:focus\:text-daisy-light:focus{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1440\:focus\:text-feedback-gumby:focus{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1440\:focus\:text-feedback-daisy:focus{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1440\:focus\:text-feedback-pokey:focus{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1440\:focus\:text-feedback-aster:focus{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1440\:focus\:text-feedback-aster-dark:focus{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1440\:focus\:text-feedback-roxo:focus{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1440\:focus\:text-feedback-error:focus{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:focus\:text-feedback-success:focus{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:focus\:text-functional-aoki:focus{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1440\:focus\:text-functional-aoki-dark:focus{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1440\:focus\:text-functional-aoki-hocus:focus{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1440\:focus\:text-functional-aoki-active:focus{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1440\:focus\:text-functional-aoki-light:focus{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1440\:focus\:text-functional-kermit:focus{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1440\:focus\:text-mixlabPlus-light:focus{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1440\:focus\:text-primary-orange-light:focus{
    color: ;
  }

  .s1440\:focus\:text-off-white:focus{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1440\:active\:text-black:active{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1440\:active\:text-transparent:active{
    color: transparent;
  }

  .s1440\:active\:text-error:active{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:active\:text-success:active{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:active\:text-white-10:active{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1440\:active\:text-white-20:active{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1440\:active\:text-white:active{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1440\:active\:text-cheeto:active{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1440\:active\:text-cheeto-very-light:active{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1440\:active\:text-cheeto-light:active{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1440\:active\:text-cheeto-dark:active{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1440\:active\:text-cheeto-hocus:active{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1440\:active\:text-cheeto-active:active{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1440\:active\:text-cheeto-ml-plus:active{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1440\:active\:text-cheeto-banner:active{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-1:active{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-10:active{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-20:active{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-30:active{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-40:active{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-50:active{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-60:active{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-70:active{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-80:active{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-90:active{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-100:active{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1440\:active\:text-gracy:active{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1440\:active\:text-gracy-overlay-90:active{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:active\:text-login:active{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1440\:active\:text-olive-light:active{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1440\:active\:text-olive-drab:active{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:active\:text-olive-dark:active{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1440\:active\:text-daisy-light:active{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1440\:active\:text-feedback-gumby:active{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1440\:active\:text-feedback-daisy:active{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1440\:active\:text-feedback-pokey:active{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1440\:active\:text-feedback-aster:active{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1440\:active\:text-feedback-aster-dark:active{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1440\:active\:text-feedback-roxo:active{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1440\:active\:text-feedback-error:active{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:active\:text-feedback-success:active{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:active\:text-functional-aoki:active{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1440\:active\:text-functional-aoki-dark:active{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1440\:active\:text-functional-aoki-hocus:active{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1440\:active\:text-functional-aoki-active:active{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1440\:active\:text-functional-aoki-light:active{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1440\:active\:text-functional-kermit:active{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1440\:active\:text-mixlabPlus-light:active{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1440\:active\:text-primary-orange-light:active{
    color: ;
  }

  .s1440\:active\:text-off-white:active{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1440\:first\:text-black:first-child{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1440\:first\:text-transparent:first-child{
    color: transparent;
  }

  .s1440\:first\:text-error:first-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:first\:text-success:first-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:first\:text-white-10:first-child{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1440\:first\:text-white-20:first-child{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1440\:first\:text-white:first-child{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1440\:first\:text-cheeto:first-child{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1440\:first\:text-cheeto-very-light:first-child{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1440\:first\:text-cheeto-light:first-child{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1440\:first\:text-cheeto-dark:first-child{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1440\:first\:text-cheeto-hocus:first-child{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1440\:first\:text-cheeto-active:first-child{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1440\:first\:text-cheeto-ml-plus:first-child{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1440\:first\:text-cheeto-banner:first-child{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-1:first-child{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-10:first-child{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-20:first-child{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-30:first-child{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-40:first-child{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-50:first-child{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-60:first-child{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-70:first-child{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-80:first-child{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-90:first-child{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-100:first-child{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1440\:first\:text-gracy:first-child{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1440\:first\:text-gracy-overlay-90:first-child{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:first\:text-login:first-child{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1440\:first\:text-olive-light:first-child{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1440\:first\:text-olive-drab:first-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:first\:text-olive-dark:first-child{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1440\:first\:text-daisy-light:first-child{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1440\:first\:text-feedback-gumby:first-child{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1440\:first\:text-feedback-daisy:first-child{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1440\:first\:text-feedback-pokey:first-child{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1440\:first\:text-feedback-aster:first-child{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1440\:first\:text-feedback-aster-dark:first-child{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1440\:first\:text-feedback-roxo:first-child{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1440\:first\:text-feedback-error:first-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:first\:text-feedback-success:first-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:first\:text-functional-aoki:first-child{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1440\:first\:text-functional-aoki-dark:first-child{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1440\:first\:text-functional-aoki-hocus:first-child{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1440\:first\:text-functional-aoki-active:first-child{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1440\:first\:text-functional-aoki-light:first-child{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1440\:first\:text-functional-kermit:first-child{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1440\:first\:text-mixlabPlus-light:first-child{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1440\:first\:text-primary-orange-light:first-child{
    color: ;
  }

  .s1440\:first\:text-off-white:first-child{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1440\:last\:text-black:last-child{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1440\:last\:text-transparent:last-child{
    color: transparent;
  }

  .s1440\:last\:text-error:last-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:last\:text-success:last-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:last\:text-white-10:last-child{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1440\:last\:text-white-20:last-child{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1440\:last\:text-white:last-child{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1440\:last\:text-cheeto:last-child{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1440\:last\:text-cheeto-very-light:last-child{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1440\:last\:text-cheeto-light:last-child{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1440\:last\:text-cheeto-dark:last-child{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1440\:last\:text-cheeto-hocus:last-child{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1440\:last\:text-cheeto-active:last-child{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1440\:last\:text-cheeto-ml-plus:last-child{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1440\:last\:text-cheeto-banner:last-child{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-1:last-child{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-10:last-child{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-20:last-child{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-30:last-child{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-40:last-child{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-50:last-child{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-60:last-child{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-70:last-child{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-80:last-child{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-90:last-child{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-100:last-child{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1440\:last\:text-gracy:last-child{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1440\:last\:text-gracy-overlay-90:last-child{
    color: rgba(50,49,50,0.5);
  }

  .s1440\:last\:text-login:last-child{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1440\:last\:text-olive-light:last-child{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1440\:last\:text-olive-drab:last-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:last\:text-olive-dark:last-child{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1440\:last\:text-daisy-light:last-child{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1440\:last\:text-feedback-gumby:last-child{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1440\:last\:text-feedback-daisy:last-child{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1440\:last\:text-feedback-pokey:last-child{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1440\:last\:text-feedback-aster:last-child{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1440\:last\:text-feedback-aster-dark:last-child{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1440\:last\:text-feedback-roxo:last-child{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1440\:last\:text-feedback-error:last-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1440\:last\:text-feedback-success:last-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1440\:last\:text-functional-aoki:last-child{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1440\:last\:text-functional-aoki-dark:last-child{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1440\:last\:text-functional-aoki-hocus:last-child{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1440\:last\:text-functional-aoki-active:last-child{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1440\:last\:text-functional-aoki-light:last-child{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1440\:last\:text-functional-kermit:last-child{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1440\:last\:text-mixlabPlus-light:last-child{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1440\:last\:text-primary-orange-light:last-child{
    color: ;
  }

  .s1440\:last\:text-off-white:last-child{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1440\:text-opacity-0{
    --text-opacity: 0;
  }

  .s1440\:text-opacity-25{
    --text-opacity: 0.25;
  }

  .s1440\:text-opacity-50{
    --text-opacity: .5;
  }

  .s1440\:text-opacity-75{
    --text-opacity: 0.75;
  }

  .s1440\:text-opacity-80{
    --text-opacity: .8;
  }

  .s1440\:text-opacity-100{
    --text-opacity: 1;
  }

  .s1440\:hover\:text-opacity-0:hover{
    --text-opacity: 0;
  }

  .s1440\:hover\:text-opacity-25:hover{
    --text-opacity: 0.25;
  }

  .s1440\:hover\:text-opacity-50:hover{
    --text-opacity: .5;
  }

  .s1440\:hover\:text-opacity-75:hover{
    --text-opacity: 0.75;
  }

  .s1440\:hover\:text-opacity-80:hover{
    --text-opacity: .8;
  }

  .s1440\:hover\:text-opacity-100:hover{
    --text-opacity: 1;
  }

  .s1440\:focus\:text-opacity-0:focus{
    --text-opacity: 0;
  }

  .s1440\:focus\:text-opacity-25:focus{
    --text-opacity: 0.25;
  }

  .s1440\:focus\:text-opacity-50:focus{
    --text-opacity: .5;
  }

  .s1440\:focus\:text-opacity-75:focus{
    --text-opacity: 0.75;
  }

  .s1440\:focus\:text-opacity-80:focus{
    --text-opacity: .8;
  }

  .s1440\:focus\:text-opacity-100:focus{
    --text-opacity: 1;
  }

  .s1440\:active\:text-opacity-0:active{
    --text-opacity: 0;
  }

  .s1440\:active\:text-opacity-25:active{
    --text-opacity: 0.25;
  }

  .s1440\:active\:text-opacity-50:active{
    --text-opacity: .5;
  }

  .s1440\:active\:text-opacity-75:active{
    --text-opacity: 0.75;
  }

  .s1440\:active\:text-opacity-80:active{
    --text-opacity: .8;
  }

  .s1440\:active\:text-opacity-100:active{
    --text-opacity: 1;
  }

  .s1440\:first\:text-opacity-0:first-child{
    --text-opacity: 0;
  }

  .s1440\:first\:text-opacity-25:first-child{
    --text-opacity: 0.25;
  }

  .s1440\:first\:text-opacity-50:first-child{
    --text-opacity: .5;
  }

  .s1440\:first\:text-opacity-75:first-child{
    --text-opacity: 0.75;
  }

  .s1440\:first\:text-opacity-80:first-child{
    --text-opacity: .8;
  }

  .s1440\:first\:text-opacity-100:first-child{
    --text-opacity: 1;
  }

  .s1440\:last\:text-opacity-0:last-child{
    --text-opacity: 0;
  }

  .s1440\:last\:text-opacity-25:last-child{
    --text-opacity: 0.25;
  }

  .s1440\:last\:text-opacity-50:last-child{
    --text-opacity: .5;
  }

  .s1440\:last\:text-opacity-75:last-child{
    --text-opacity: 0.75;
  }

  .s1440\:last\:text-opacity-80:last-child{
    --text-opacity: .8;
  }

  .s1440\:last\:text-opacity-100:last-child{
    --text-opacity: 1;
  }

  .s1440\:italic{
    font-style: italic;
  }

  .s1440\:not-italic{
    font-style: normal;
  }

  .s1440\:hover\:italic:hover{
    font-style: italic;
  }

  .s1440\:hover\:not-italic:hover{
    font-style: normal;
  }

  .s1440\:focus\:italic:focus{
    font-style: italic;
  }

  .s1440\:focus\:not-italic:focus{
    font-style: normal;
  }

  .s1440\:active\:italic:active{
    font-style: italic;
  }

  .s1440\:active\:not-italic:active{
    font-style: normal;
  }

  .s1440\:first\:italic:first-child{
    font-style: italic;
  }

  .s1440\:first\:not-italic:first-child{
    font-style: normal;
  }

  .s1440\:last\:italic:last-child{
    font-style: italic;
  }

  .s1440\:last\:not-italic:last-child{
    font-style: normal;
  }

  .s1440\:uppercase{
    text-transform: uppercase;
  }

  .s1440\:lowercase{
    text-transform: lowercase;
  }

  .s1440\:capitalize{
    text-transform: capitalize;
  }

  .s1440\:normal-case{
    text-transform: none;
  }

  .s1440\:hover\:uppercase:hover{
    text-transform: uppercase;
  }

  .s1440\:hover\:lowercase:hover{
    text-transform: lowercase;
  }

  .s1440\:hover\:capitalize:hover{
    text-transform: capitalize;
  }

  .s1440\:hover\:normal-case:hover{
    text-transform: none;
  }

  .s1440\:focus\:uppercase:focus{
    text-transform: uppercase;
  }

  .s1440\:focus\:lowercase:focus{
    text-transform: lowercase;
  }

  .s1440\:focus\:capitalize:focus{
    text-transform: capitalize;
  }

  .s1440\:focus\:normal-case:focus{
    text-transform: none;
  }

  .s1440\:active\:uppercase:active{
    text-transform: uppercase;
  }

  .s1440\:active\:lowercase:active{
    text-transform: lowercase;
  }

  .s1440\:active\:capitalize:active{
    text-transform: capitalize;
  }

  .s1440\:active\:normal-case:active{
    text-transform: none;
  }

  .s1440\:first\:uppercase:first-child{
    text-transform: uppercase;
  }

  .s1440\:first\:lowercase:first-child{
    text-transform: lowercase;
  }

  .s1440\:first\:capitalize:first-child{
    text-transform: capitalize;
  }

  .s1440\:first\:normal-case:first-child{
    text-transform: none;
  }

  .s1440\:last\:uppercase:last-child{
    text-transform: uppercase;
  }

  .s1440\:last\:lowercase:last-child{
    text-transform: lowercase;
  }

  .s1440\:last\:capitalize:last-child{
    text-transform: capitalize;
  }

  .s1440\:last\:normal-case:last-child{
    text-transform: none;
  }

  .s1440\:underline{
    text-decoration: underline;
  }

  .s1440\:line-through{
    text-decoration: line-through;
  }

  .s1440\:no-underline{
    text-decoration: none;
  }

  .s1440\:hover\:underline:hover{
    text-decoration: underline;
  }

  .s1440\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .s1440\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .s1440\:focus\:underline:focus{
    text-decoration: underline;
  }

  .s1440\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .s1440\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .s1440\:active\:underline:active{
    text-decoration: underline;
  }

  .s1440\:active\:line-through:active{
    text-decoration: line-through;
  }

  .s1440\:active\:no-underline:active{
    text-decoration: none;
  }

  .s1440\:first\:underline:first-child{
    text-decoration: underline;
  }

  .s1440\:first\:line-through:first-child{
    text-decoration: line-through;
  }

  .s1440\:first\:no-underline:first-child{
    text-decoration: none;
  }

  .s1440\:last\:underline:last-child{
    text-decoration: underline;
  }

  .s1440\:last\:line-through:last-child{
    text-decoration: line-through;
  }

  .s1440\:last\:no-underline:last-child{
    text-decoration: none;
  }

  .s1440\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1440\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1440\:hover\:antialiased:hover{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1440\:hover\:subpixel-antialiased:hover{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1440\:focus\:antialiased:focus{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1440\:focus\:subpixel-antialiased:focus{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1440\:active\:antialiased:active{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1440\:active\:subpixel-antialiased:active{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1440\:first\:antialiased:first-child{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1440\:first\:subpixel-antialiased:first-child{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1440\:last\:antialiased:last-child{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1440\:last\:subpixel-antialiased:last-child{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1440\:ordinal, .s1440\:slashed-zero, .s1440\:lining-nums, .s1440\:oldstyle-nums, .s1440\:proportional-nums, .s1440\:tabular-nums, .s1440\:diagonal-fractions, .s1440\:stacked-fractions{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1440\:normal-nums{
    font-variant-numeric: normal;
  }

  .s1440\:ordinal{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1440\:slashed-zero{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1440\:lining-nums{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1440\:oldstyle-nums{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1440\:proportional-nums{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1440\:tabular-nums{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1440\:diagonal-fractions{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1440\:stacked-fractions{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1440\:hover\:ordinal:hover, .s1440\:hover\:slashed-zero:hover, .s1440\:hover\:lining-nums:hover, .s1440\:hover\:oldstyle-nums:hover, .s1440\:hover\:proportional-nums:hover, .s1440\:hover\:tabular-nums:hover, .s1440\:hover\:diagonal-fractions:hover, .s1440\:hover\:stacked-fractions:hover{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1440\:hover\:normal-nums:hover{
    font-variant-numeric: normal;
  }

  .s1440\:hover\:ordinal:hover{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1440\:hover\:slashed-zero:hover{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1440\:hover\:lining-nums:hover{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1440\:hover\:oldstyle-nums:hover{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1440\:hover\:proportional-nums:hover{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1440\:hover\:tabular-nums:hover{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1440\:hover\:diagonal-fractions:hover{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1440\:hover\:stacked-fractions:hover{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1440\:focus\:ordinal:focus, .s1440\:focus\:slashed-zero:focus, .s1440\:focus\:lining-nums:focus, .s1440\:focus\:oldstyle-nums:focus, .s1440\:focus\:proportional-nums:focus, .s1440\:focus\:tabular-nums:focus, .s1440\:focus\:diagonal-fractions:focus, .s1440\:focus\:stacked-fractions:focus{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1440\:focus\:normal-nums:focus{
    font-variant-numeric: normal;
  }

  .s1440\:focus\:ordinal:focus{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1440\:focus\:slashed-zero:focus{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1440\:focus\:lining-nums:focus{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1440\:focus\:oldstyle-nums:focus{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1440\:focus\:proportional-nums:focus{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1440\:focus\:tabular-nums:focus{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1440\:focus\:diagonal-fractions:focus{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1440\:focus\:stacked-fractions:focus{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1440\:active\:ordinal:active, .s1440\:active\:slashed-zero:active, .s1440\:active\:lining-nums:active, .s1440\:active\:oldstyle-nums:active, .s1440\:active\:proportional-nums:active, .s1440\:active\:tabular-nums:active, .s1440\:active\:diagonal-fractions:active, .s1440\:active\:stacked-fractions:active{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1440\:active\:normal-nums:active{
    font-variant-numeric: normal;
  }

  .s1440\:active\:ordinal:active{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1440\:active\:slashed-zero:active{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1440\:active\:lining-nums:active{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1440\:active\:oldstyle-nums:active{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1440\:active\:proportional-nums:active{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1440\:active\:tabular-nums:active{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1440\:active\:diagonal-fractions:active{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1440\:active\:stacked-fractions:active{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1440\:first\:ordinal:first-child, .s1440\:first\:slashed-zero:first-child, .s1440\:first\:lining-nums:first-child, .s1440\:first\:oldstyle-nums:first-child, .s1440\:first\:proportional-nums:first-child, .s1440\:first\:tabular-nums:first-child, .s1440\:first\:diagonal-fractions:first-child, .s1440\:first\:stacked-fractions:first-child{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1440\:first\:normal-nums:first-child{
    font-variant-numeric: normal;
  }

  .s1440\:first\:ordinal:first-child{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1440\:first\:slashed-zero:first-child{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1440\:first\:lining-nums:first-child{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1440\:first\:oldstyle-nums:first-child{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1440\:first\:proportional-nums:first-child{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1440\:first\:tabular-nums:first-child{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1440\:first\:diagonal-fractions:first-child{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1440\:first\:stacked-fractions:first-child{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1440\:last\:ordinal:last-child, .s1440\:last\:slashed-zero:last-child, .s1440\:last\:lining-nums:last-child, .s1440\:last\:oldstyle-nums:last-child, .s1440\:last\:proportional-nums:last-child, .s1440\:last\:tabular-nums:last-child, .s1440\:last\:diagonal-fractions:last-child, .s1440\:last\:stacked-fractions:last-child{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1440\:last\:normal-nums:last-child{
    font-variant-numeric: normal;
  }

  .s1440\:last\:ordinal:last-child{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1440\:last\:slashed-zero:last-child{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1440\:last\:lining-nums:last-child{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1440\:last\:oldstyle-nums:last-child{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1440\:last\:proportional-nums:last-child{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1440\:last\:tabular-nums:last-child{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1440\:last\:diagonal-fractions:last-child{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1440\:last\:stacked-fractions:last-child{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1440\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .s1440\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .s1440\:tracking-normal{
    letter-spacing: 0;
  }

  .s1440\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .s1440\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .s1440\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .s1440\:hover\:tracking-tighter:hover{
    letter-spacing: -0.05em;
  }

  .s1440\:hover\:tracking-tight:hover{
    letter-spacing: -0.025em;
  }

  .s1440\:hover\:tracking-normal:hover{
    letter-spacing: 0;
  }

  .s1440\:hover\:tracking-wide:hover{
    letter-spacing: 0.025em;
  }

  .s1440\:hover\:tracking-wider:hover{
    letter-spacing: 0.05em;
  }

  .s1440\:hover\:tracking-widest:hover{
    letter-spacing: 0.1em;
  }

  .s1440\:focus\:tracking-tighter:focus{
    letter-spacing: -0.05em;
  }

  .s1440\:focus\:tracking-tight:focus{
    letter-spacing: -0.025em;
  }

  .s1440\:focus\:tracking-normal:focus{
    letter-spacing: 0;
  }

  .s1440\:focus\:tracking-wide:focus{
    letter-spacing: 0.025em;
  }

  .s1440\:focus\:tracking-wider:focus{
    letter-spacing: 0.05em;
  }

  .s1440\:focus\:tracking-widest:focus{
    letter-spacing: 0.1em;
  }

  .s1440\:active\:tracking-tighter:active{
    letter-spacing: -0.05em;
  }

  .s1440\:active\:tracking-tight:active{
    letter-spacing: -0.025em;
  }

  .s1440\:active\:tracking-normal:active{
    letter-spacing: 0;
  }

  .s1440\:active\:tracking-wide:active{
    letter-spacing: 0.025em;
  }

  .s1440\:active\:tracking-wider:active{
    letter-spacing: 0.05em;
  }

  .s1440\:active\:tracking-widest:active{
    letter-spacing: 0.1em;
  }

  .s1440\:first\:tracking-tighter:first-child{
    letter-spacing: -0.05em;
  }

  .s1440\:first\:tracking-tight:first-child{
    letter-spacing: -0.025em;
  }

  .s1440\:first\:tracking-normal:first-child{
    letter-spacing: 0;
  }

  .s1440\:first\:tracking-wide:first-child{
    letter-spacing: 0.025em;
  }

  .s1440\:first\:tracking-wider:first-child{
    letter-spacing: 0.05em;
  }

  .s1440\:first\:tracking-widest:first-child{
    letter-spacing: 0.1em;
  }

  .s1440\:last\:tracking-tighter:last-child{
    letter-spacing: -0.05em;
  }

  .s1440\:last\:tracking-tight:last-child{
    letter-spacing: -0.025em;
  }

  .s1440\:last\:tracking-normal:last-child{
    letter-spacing: 0;
  }

  .s1440\:last\:tracking-wide:last-child{
    letter-spacing: 0.025em;
  }

  .s1440\:last\:tracking-wider:last-child{
    letter-spacing: 0.05em;
  }

  .s1440\:last\:tracking-widest:last-child{
    letter-spacing: 0.1em;
  }

  .s1440\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1440\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1440\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1440\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1440\:hover\:select-none:hover{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1440\:hover\:select-text:hover{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1440\:hover\:select-all:hover{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1440\:hover\:select-auto:hover{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1440\:focus\:select-none:focus{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1440\:focus\:select-text:focus{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1440\:focus\:select-all:focus{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1440\:focus\:select-auto:focus{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1440\:active\:select-none:active{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1440\:active\:select-text:active{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1440\:active\:select-all:active{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1440\:active\:select-auto:active{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1440\:first\:select-none:first-child{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1440\:first\:select-text:first-child{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1440\:first\:select-all:first-child{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1440\:first\:select-auto:first-child{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1440\:last\:select-none:last-child{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1440\:last\:select-text:last-child{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1440\:last\:select-all:last-child{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1440\:last\:select-auto:last-child{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1440\:align-baseline{
    vertical-align: baseline;
  }

  .s1440\:align-top{
    vertical-align: top;
  }

  .s1440\:align-middle{
    vertical-align: middle;
  }

  .s1440\:align-bottom{
    vertical-align: bottom;
  }

  .s1440\:align-text-top{
    vertical-align: text-top;
  }

  .s1440\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .s1440\:hover\:align-baseline:hover{
    vertical-align: baseline;
  }

  .s1440\:hover\:align-top:hover{
    vertical-align: top;
  }

  .s1440\:hover\:align-middle:hover{
    vertical-align: middle;
  }

  .s1440\:hover\:align-bottom:hover{
    vertical-align: bottom;
  }

  .s1440\:hover\:align-text-top:hover{
    vertical-align: text-top;
  }

  .s1440\:hover\:align-text-bottom:hover{
    vertical-align: text-bottom;
  }

  .s1440\:focus\:align-baseline:focus{
    vertical-align: baseline;
  }

  .s1440\:focus\:align-top:focus{
    vertical-align: top;
  }

  .s1440\:focus\:align-middle:focus{
    vertical-align: middle;
  }

  .s1440\:focus\:align-bottom:focus{
    vertical-align: bottom;
  }

  .s1440\:focus\:align-text-top:focus{
    vertical-align: text-top;
  }

  .s1440\:focus\:align-text-bottom:focus{
    vertical-align: text-bottom;
  }

  .s1440\:active\:align-baseline:active{
    vertical-align: baseline;
  }

  .s1440\:active\:align-top:active{
    vertical-align: top;
  }

  .s1440\:active\:align-middle:active{
    vertical-align: middle;
  }

  .s1440\:active\:align-bottom:active{
    vertical-align: bottom;
  }

  .s1440\:active\:align-text-top:active{
    vertical-align: text-top;
  }

  .s1440\:active\:align-text-bottom:active{
    vertical-align: text-bottom;
  }

  .s1440\:first\:align-baseline:first-child{
    vertical-align: baseline;
  }

  .s1440\:first\:align-top:first-child{
    vertical-align: top;
  }

  .s1440\:first\:align-middle:first-child{
    vertical-align: middle;
  }

  .s1440\:first\:align-bottom:first-child{
    vertical-align: bottom;
  }

  .s1440\:first\:align-text-top:first-child{
    vertical-align: text-top;
  }

  .s1440\:first\:align-text-bottom:first-child{
    vertical-align: text-bottom;
  }

  .s1440\:last\:align-baseline:last-child{
    vertical-align: baseline;
  }

  .s1440\:last\:align-top:last-child{
    vertical-align: top;
  }

  .s1440\:last\:align-middle:last-child{
    vertical-align: middle;
  }

  .s1440\:last\:align-bottom:last-child{
    vertical-align: bottom;
  }

  .s1440\:last\:align-text-top:last-child{
    vertical-align: text-top;
  }

  .s1440\:last\:align-text-bottom:last-child{
    vertical-align: text-bottom;
  }

  .s1440\:visible{
    visibility: visible;
  }

  .s1440\:invisible{
    visibility: hidden;
  }

  .s1440\:hover\:visible:hover{
    visibility: visible;
  }

  .s1440\:hover\:invisible:hover{
    visibility: hidden;
  }

  .s1440\:focus\:visible:focus{
    visibility: visible;
  }

  .s1440\:focus\:invisible:focus{
    visibility: hidden;
  }

  .s1440\:active\:visible:active{
    visibility: visible;
  }

  .s1440\:active\:invisible:active{
    visibility: hidden;
  }

  .s1440\:first\:visible:first-child{
    visibility: visible;
  }

  .s1440\:first\:invisible:first-child{
    visibility: hidden;
  }

  .s1440\:last\:visible:last-child{
    visibility: visible;
  }

  .s1440\:last\:invisible:last-child{
    visibility: hidden;
  }

  .s1440\:whitespace-normal{
    white-space: normal;
  }

  .s1440\:whitespace-no-wrap{
    white-space: nowrap;
  }

  .s1440\:whitespace-pre{
    white-space: pre;
  }

  .s1440\:whitespace-pre-line{
    white-space: pre-line;
  }

  .s1440\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .s1440\:hover\:whitespace-normal:hover{
    white-space: normal;
  }

  .s1440\:hover\:whitespace-no-wrap:hover{
    white-space: nowrap;
  }

  .s1440\:hover\:whitespace-pre:hover{
    white-space: pre;
  }

  .s1440\:hover\:whitespace-pre-line:hover{
    white-space: pre-line;
  }

  .s1440\:hover\:whitespace-pre-wrap:hover{
    white-space: pre-wrap;
  }

  .s1440\:focus\:whitespace-normal:focus{
    white-space: normal;
  }

  .s1440\:focus\:whitespace-no-wrap:focus{
    white-space: nowrap;
  }

  .s1440\:focus\:whitespace-pre:focus{
    white-space: pre;
  }

  .s1440\:focus\:whitespace-pre-line:focus{
    white-space: pre-line;
  }

  .s1440\:focus\:whitespace-pre-wrap:focus{
    white-space: pre-wrap;
  }

  .s1440\:active\:whitespace-normal:active{
    white-space: normal;
  }

  .s1440\:active\:whitespace-no-wrap:active{
    white-space: nowrap;
  }

  .s1440\:active\:whitespace-pre:active{
    white-space: pre;
  }

  .s1440\:active\:whitespace-pre-line:active{
    white-space: pre-line;
  }

  .s1440\:active\:whitespace-pre-wrap:active{
    white-space: pre-wrap;
  }

  .s1440\:first\:whitespace-normal:first-child{
    white-space: normal;
  }

  .s1440\:first\:whitespace-no-wrap:first-child{
    white-space: nowrap;
  }

  .s1440\:first\:whitespace-pre:first-child{
    white-space: pre;
  }

  .s1440\:first\:whitespace-pre-line:first-child{
    white-space: pre-line;
  }

  .s1440\:first\:whitespace-pre-wrap:first-child{
    white-space: pre-wrap;
  }

  .s1440\:last\:whitespace-normal:last-child{
    white-space: normal;
  }

  .s1440\:last\:whitespace-no-wrap:last-child{
    white-space: nowrap;
  }

  .s1440\:last\:whitespace-pre:last-child{
    white-space: pre;
  }

  .s1440\:last\:whitespace-pre-line:last-child{
    white-space: pre-line;
  }

  .s1440\:last\:whitespace-pre-wrap:last-child{
    white-space: pre-wrap;
  }

  .s1440\:break-normal{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1440\:break-words{
    overflow-wrap: break-word;
  }

  .s1440\:break-all{
    word-break: break-all;
  }

  .s1440\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1440\:hover\:break-normal:hover{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1440\:hover\:break-words:hover{
    overflow-wrap: break-word;
  }

  .s1440\:hover\:break-all:hover{
    word-break: break-all;
  }

  .s1440\:hover\:truncate:hover{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1440\:focus\:break-normal:focus{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1440\:focus\:break-words:focus{
    overflow-wrap: break-word;
  }

  .s1440\:focus\:break-all:focus{
    word-break: break-all;
  }

  .s1440\:focus\:truncate:focus{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1440\:active\:break-normal:active{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1440\:active\:break-words:active{
    overflow-wrap: break-word;
  }

  .s1440\:active\:break-all:active{
    word-break: break-all;
  }

  .s1440\:active\:truncate:active{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1440\:first\:break-normal:first-child{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1440\:first\:break-words:first-child{
    overflow-wrap: break-word;
  }

  .s1440\:first\:break-all:first-child{
    word-break: break-all;
  }

  .s1440\:first\:truncate:first-child{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1440\:last\:break-normal:last-child{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1440\:last\:break-words:last-child{
    overflow-wrap: break-word;
  }

  .s1440\:last\:break-all:last-child{
    word-break: break-all;
  }

  .s1440\:last\:truncate:last-child{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1440\:w-0{
    width: 0;
  }

  .s1440\:w-1{
    width: 0.25rem;
  }

  .s1440\:w-2{
    width: 0.5rem;
  }

  .s1440\:w-3{
    width: 0.75rem;
  }

  .s1440\:w-4{
    width: 1rem;
  }

  .s1440\:w-5{
    width: 1.25rem;
  }

  .s1440\:w-6{
    width: 1.5rem;
  }

  .s1440\:w-8{
    width: 2rem;
  }

  .s1440\:w-10{
    width: 2.5rem;
  }

  .s1440\:w-12{
    width: 3rem;
  }

  .s1440\:w-14{
    width: 3.5rem;
  }

  .s1440\:w-16{
    width: 4rem;
  }

  .s1440\:w-20{
    width: 5rem;
  }

  .s1440\:w-24{
    width: 6rem;
  }

  .s1440\:w-32{
    width: 8rem;
  }

  .s1440\:w-36{
    width: 9rem;
  }

  .s1440\:w-40{
    width: 10rem;
  }

  .s1440\:w-48{
    width: 12rem;
  }

  .s1440\:w-56{
    width: 14rem;
  }

  .s1440\:w-64{
    width: 16rem;
  }

  .s1440\:w-auto{
    width: auto;
  }

  .s1440\:w-px{
    width: 1px;
  }

  .s1440\:w-1\/2{
    width: 50%;
  }

  .s1440\:w-1\/3{
    width: 33.333333%;
  }

  .s1440\:w-2\/3{
    width: 66.666667%;
  }

  .s1440\:w-1\/4{
    width: 25%;
  }

  .s1440\:w-2\/4{
    width: 50%;
  }

  .s1440\:w-3\/4{
    width: 75%;
  }

  .s1440\:w-1\/5{
    width: 20%;
  }

  .s1440\:w-2\/5{
    width: 40%;
  }

  .s1440\:w-3\/5{
    width: 60%;
  }

  .s1440\:w-4\/5{
    width: 80%;
  }

  .s1440\:w-1\/6{
    width: 16.666667%;
  }

  .s1440\:w-2\/6{
    width: 33.333333%;
  }

  .s1440\:w-3\/6{
    width: 50%;
  }

  .s1440\:w-4\/6{
    width: 66.666667%;
  }

  .s1440\:w-5\/6{
    width: 83.333333%;
  }

  .s1440\:w-1\/12{
    width: 8.333333%;
  }

  .s1440\:w-2\/12{
    width: 16.666667%;
  }

  .s1440\:w-3\/12{
    width: 25%;
  }

  .s1440\:w-4\/12{
    width: 33.333333%;
  }

  .s1440\:w-5\/12{
    width: 41.666667%;
  }

  .s1440\:w-6\/12{
    width: 50%;
  }

  .s1440\:w-7\/12{
    width: 58.333333%;
  }

  .s1440\:w-8\/12{
    width: 66.666667%;
  }

  .s1440\:w-9\/12{
    width: 75%;
  }

  .s1440\:w-10\/12{
    width: 83.333333%;
  }

  .s1440\:w-11\/12{
    width: 91.666667%;
  }

  .s1440\:w-full{
    width: 100%;
  }

  .s1440\:w-screen{
    width: 100vw;
  }

  .s1440\:w-widePage{
    width: 120rem;
  }

  .s1440\:w-page{
    width: 80rem;
  }

  .s1440\:w-container{
    width: 77.25rem;
  }

  .s1440\:w-tooltip{
    width: 25rem;
  }

  .s1440\:w-smallTooltip{
    width: 15rem;
  }

  .s1440\:w-xsmallTooltip{
    width: 6.0rem;
  }

  .s1440\:w-sidebar{
    width: 27rem;
  }

  .s1440\:w-doubleSidebar{
    width: 25%;
  }

  .s1440\:w-practiceSidebar{
    width: 22.5rem;
  }

  .s1440\:w-3\/8{
    width: 37.5%;
  }

  .s1440\:w-1\/10{
    width: 10%;
  }

  .s1440\:w-2\/10{
    width: 20%;
  }

  .s1440\:w-3\/10{
    width: 30%;
  }

  .s1440\:w-4\/10{
    width: 40%;
  }

  .s1440\:w-5\/10{
    width: 50%;
  }

  .s1440\:w-6\/10{
    width: 60%;
  }

  .s1440\:w-7\/10{
    width: 70%;
  }

  .s1440\:w-8\/10{
    width: 80%;
  }

  .s1440\:w-9\/10{
    width: 90%;
  }

  .s1440\:w-input{
    width: 32.5rem;
  }

  .s1440\:w-inherit{
    width: inherit;
  }

  .s1440\:hover\:w-0:hover{
    width: 0;
  }

  .s1440\:hover\:w-1:hover{
    width: 0.25rem;
  }

  .s1440\:hover\:w-2:hover{
    width: 0.5rem;
  }

  .s1440\:hover\:w-3:hover{
    width: 0.75rem;
  }

  .s1440\:hover\:w-4:hover{
    width: 1rem;
  }

  .s1440\:hover\:w-5:hover{
    width: 1.25rem;
  }

  .s1440\:hover\:w-6:hover{
    width: 1.5rem;
  }

  .s1440\:hover\:w-8:hover{
    width: 2rem;
  }

  .s1440\:hover\:w-10:hover{
    width: 2.5rem;
  }

  .s1440\:hover\:w-12:hover{
    width: 3rem;
  }

  .s1440\:hover\:w-14:hover{
    width: 3.5rem;
  }

  .s1440\:hover\:w-16:hover{
    width: 4rem;
  }

  .s1440\:hover\:w-20:hover{
    width: 5rem;
  }

  .s1440\:hover\:w-24:hover{
    width: 6rem;
  }

  .s1440\:hover\:w-32:hover{
    width: 8rem;
  }

  .s1440\:hover\:w-36:hover{
    width: 9rem;
  }

  .s1440\:hover\:w-40:hover{
    width: 10rem;
  }

  .s1440\:hover\:w-48:hover{
    width: 12rem;
  }

  .s1440\:hover\:w-56:hover{
    width: 14rem;
  }

  .s1440\:hover\:w-64:hover{
    width: 16rem;
  }

  .s1440\:hover\:w-auto:hover{
    width: auto;
  }

  .s1440\:hover\:w-px:hover{
    width: 1px;
  }

  .s1440\:hover\:w-1\/2:hover{
    width: 50%;
  }

  .s1440\:hover\:w-1\/3:hover{
    width: 33.333333%;
  }

  .s1440\:hover\:w-2\/3:hover{
    width: 66.666667%;
  }

  .s1440\:hover\:w-1\/4:hover{
    width: 25%;
  }

  .s1440\:hover\:w-2\/4:hover{
    width: 50%;
  }

  .s1440\:hover\:w-3\/4:hover{
    width: 75%;
  }

  .s1440\:hover\:w-1\/5:hover{
    width: 20%;
  }

  .s1440\:hover\:w-2\/5:hover{
    width: 40%;
  }

  .s1440\:hover\:w-3\/5:hover{
    width: 60%;
  }

  .s1440\:hover\:w-4\/5:hover{
    width: 80%;
  }

  .s1440\:hover\:w-1\/6:hover{
    width: 16.666667%;
  }

  .s1440\:hover\:w-2\/6:hover{
    width: 33.333333%;
  }

  .s1440\:hover\:w-3\/6:hover{
    width: 50%;
  }

  .s1440\:hover\:w-4\/6:hover{
    width: 66.666667%;
  }

  .s1440\:hover\:w-5\/6:hover{
    width: 83.333333%;
  }

  .s1440\:hover\:w-1\/12:hover{
    width: 8.333333%;
  }

  .s1440\:hover\:w-2\/12:hover{
    width: 16.666667%;
  }

  .s1440\:hover\:w-3\/12:hover{
    width: 25%;
  }

  .s1440\:hover\:w-4\/12:hover{
    width: 33.333333%;
  }

  .s1440\:hover\:w-5\/12:hover{
    width: 41.666667%;
  }

  .s1440\:hover\:w-6\/12:hover{
    width: 50%;
  }

  .s1440\:hover\:w-7\/12:hover{
    width: 58.333333%;
  }

  .s1440\:hover\:w-8\/12:hover{
    width: 66.666667%;
  }

  .s1440\:hover\:w-9\/12:hover{
    width: 75%;
  }

  .s1440\:hover\:w-10\/12:hover{
    width: 83.333333%;
  }

  .s1440\:hover\:w-11\/12:hover{
    width: 91.666667%;
  }

  .s1440\:hover\:w-full:hover{
    width: 100%;
  }

  .s1440\:hover\:w-screen:hover{
    width: 100vw;
  }

  .s1440\:hover\:w-widePage:hover{
    width: 120rem;
  }

  .s1440\:hover\:w-page:hover{
    width: 80rem;
  }

  .s1440\:hover\:w-container:hover{
    width: 77.25rem;
  }

  .s1440\:hover\:w-tooltip:hover{
    width: 25rem;
  }

  .s1440\:hover\:w-smallTooltip:hover{
    width: 15rem;
  }

  .s1440\:hover\:w-xsmallTooltip:hover{
    width: 6.0rem;
  }

  .s1440\:hover\:w-sidebar:hover{
    width: 27rem;
  }

  .s1440\:hover\:w-doubleSidebar:hover{
    width: 25%;
  }

  .s1440\:hover\:w-practiceSidebar:hover{
    width: 22.5rem;
  }

  .s1440\:hover\:w-3\/8:hover{
    width: 37.5%;
  }

  .s1440\:hover\:w-1\/10:hover{
    width: 10%;
  }

  .s1440\:hover\:w-2\/10:hover{
    width: 20%;
  }

  .s1440\:hover\:w-3\/10:hover{
    width: 30%;
  }

  .s1440\:hover\:w-4\/10:hover{
    width: 40%;
  }

  .s1440\:hover\:w-5\/10:hover{
    width: 50%;
  }

  .s1440\:hover\:w-6\/10:hover{
    width: 60%;
  }

  .s1440\:hover\:w-7\/10:hover{
    width: 70%;
  }

  .s1440\:hover\:w-8\/10:hover{
    width: 80%;
  }

  .s1440\:hover\:w-9\/10:hover{
    width: 90%;
  }

  .s1440\:hover\:w-input:hover{
    width: 32.5rem;
  }

  .s1440\:hover\:w-inherit:hover{
    width: inherit;
  }

  .s1440\:focus\:w-0:focus{
    width: 0;
  }

  .s1440\:focus\:w-1:focus{
    width: 0.25rem;
  }

  .s1440\:focus\:w-2:focus{
    width: 0.5rem;
  }

  .s1440\:focus\:w-3:focus{
    width: 0.75rem;
  }

  .s1440\:focus\:w-4:focus{
    width: 1rem;
  }

  .s1440\:focus\:w-5:focus{
    width: 1.25rem;
  }

  .s1440\:focus\:w-6:focus{
    width: 1.5rem;
  }

  .s1440\:focus\:w-8:focus{
    width: 2rem;
  }

  .s1440\:focus\:w-10:focus{
    width: 2.5rem;
  }

  .s1440\:focus\:w-12:focus{
    width: 3rem;
  }

  .s1440\:focus\:w-14:focus{
    width: 3.5rem;
  }

  .s1440\:focus\:w-16:focus{
    width: 4rem;
  }

  .s1440\:focus\:w-20:focus{
    width: 5rem;
  }

  .s1440\:focus\:w-24:focus{
    width: 6rem;
  }

  .s1440\:focus\:w-32:focus{
    width: 8rem;
  }

  .s1440\:focus\:w-36:focus{
    width: 9rem;
  }

  .s1440\:focus\:w-40:focus{
    width: 10rem;
  }

  .s1440\:focus\:w-48:focus{
    width: 12rem;
  }

  .s1440\:focus\:w-56:focus{
    width: 14rem;
  }

  .s1440\:focus\:w-64:focus{
    width: 16rem;
  }

  .s1440\:focus\:w-auto:focus{
    width: auto;
  }

  .s1440\:focus\:w-px:focus{
    width: 1px;
  }

  .s1440\:focus\:w-1\/2:focus{
    width: 50%;
  }

  .s1440\:focus\:w-1\/3:focus{
    width: 33.333333%;
  }

  .s1440\:focus\:w-2\/3:focus{
    width: 66.666667%;
  }

  .s1440\:focus\:w-1\/4:focus{
    width: 25%;
  }

  .s1440\:focus\:w-2\/4:focus{
    width: 50%;
  }

  .s1440\:focus\:w-3\/4:focus{
    width: 75%;
  }

  .s1440\:focus\:w-1\/5:focus{
    width: 20%;
  }

  .s1440\:focus\:w-2\/5:focus{
    width: 40%;
  }

  .s1440\:focus\:w-3\/5:focus{
    width: 60%;
  }

  .s1440\:focus\:w-4\/5:focus{
    width: 80%;
  }

  .s1440\:focus\:w-1\/6:focus{
    width: 16.666667%;
  }

  .s1440\:focus\:w-2\/6:focus{
    width: 33.333333%;
  }

  .s1440\:focus\:w-3\/6:focus{
    width: 50%;
  }

  .s1440\:focus\:w-4\/6:focus{
    width: 66.666667%;
  }

  .s1440\:focus\:w-5\/6:focus{
    width: 83.333333%;
  }

  .s1440\:focus\:w-1\/12:focus{
    width: 8.333333%;
  }

  .s1440\:focus\:w-2\/12:focus{
    width: 16.666667%;
  }

  .s1440\:focus\:w-3\/12:focus{
    width: 25%;
  }

  .s1440\:focus\:w-4\/12:focus{
    width: 33.333333%;
  }

  .s1440\:focus\:w-5\/12:focus{
    width: 41.666667%;
  }

  .s1440\:focus\:w-6\/12:focus{
    width: 50%;
  }

  .s1440\:focus\:w-7\/12:focus{
    width: 58.333333%;
  }

  .s1440\:focus\:w-8\/12:focus{
    width: 66.666667%;
  }

  .s1440\:focus\:w-9\/12:focus{
    width: 75%;
  }

  .s1440\:focus\:w-10\/12:focus{
    width: 83.333333%;
  }

  .s1440\:focus\:w-11\/12:focus{
    width: 91.666667%;
  }

  .s1440\:focus\:w-full:focus{
    width: 100%;
  }

  .s1440\:focus\:w-screen:focus{
    width: 100vw;
  }

  .s1440\:focus\:w-widePage:focus{
    width: 120rem;
  }

  .s1440\:focus\:w-page:focus{
    width: 80rem;
  }

  .s1440\:focus\:w-container:focus{
    width: 77.25rem;
  }

  .s1440\:focus\:w-tooltip:focus{
    width: 25rem;
  }

  .s1440\:focus\:w-smallTooltip:focus{
    width: 15rem;
  }

  .s1440\:focus\:w-xsmallTooltip:focus{
    width: 6.0rem;
  }

  .s1440\:focus\:w-sidebar:focus{
    width: 27rem;
  }

  .s1440\:focus\:w-doubleSidebar:focus{
    width: 25%;
  }

  .s1440\:focus\:w-practiceSidebar:focus{
    width: 22.5rem;
  }

  .s1440\:focus\:w-3\/8:focus{
    width: 37.5%;
  }

  .s1440\:focus\:w-1\/10:focus{
    width: 10%;
  }

  .s1440\:focus\:w-2\/10:focus{
    width: 20%;
  }

  .s1440\:focus\:w-3\/10:focus{
    width: 30%;
  }

  .s1440\:focus\:w-4\/10:focus{
    width: 40%;
  }

  .s1440\:focus\:w-5\/10:focus{
    width: 50%;
  }

  .s1440\:focus\:w-6\/10:focus{
    width: 60%;
  }

  .s1440\:focus\:w-7\/10:focus{
    width: 70%;
  }

  .s1440\:focus\:w-8\/10:focus{
    width: 80%;
  }

  .s1440\:focus\:w-9\/10:focus{
    width: 90%;
  }

  .s1440\:focus\:w-input:focus{
    width: 32.5rem;
  }

  .s1440\:focus\:w-inherit:focus{
    width: inherit;
  }

  .s1440\:active\:w-0:active{
    width: 0;
  }

  .s1440\:active\:w-1:active{
    width: 0.25rem;
  }

  .s1440\:active\:w-2:active{
    width: 0.5rem;
  }

  .s1440\:active\:w-3:active{
    width: 0.75rem;
  }

  .s1440\:active\:w-4:active{
    width: 1rem;
  }

  .s1440\:active\:w-5:active{
    width: 1.25rem;
  }

  .s1440\:active\:w-6:active{
    width: 1.5rem;
  }

  .s1440\:active\:w-8:active{
    width: 2rem;
  }

  .s1440\:active\:w-10:active{
    width: 2.5rem;
  }

  .s1440\:active\:w-12:active{
    width: 3rem;
  }

  .s1440\:active\:w-14:active{
    width: 3.5rem;
  }

  .s1440\:active\:w-16:active{
    width: 4rem;
  }

  .s1440\:active\:w-20:active{
    width: 5rem;
  }

  .s1440\:active\:w-24:active{
    width: 6rem;
  }

  .s1440\:active\:w-32:active{
    width: 8rem;
  }

  .s1440\:active\:w-36:active{
    width: 9rem;
  }

  .s1440\:active\:w-40:active{
    width: 10rem;
  }

  .s1440\:active\:w-48:active{
    width: 12rem;
  }

  .s1440\:active\:w-56:active{
    width: 14rem;
  }

  .s1440\:active\:w-64:active{
    width: 16rem;
  }

  .s1440\:active\:w-auto:active{
    width: auto;
  }

  .s1440\:active\:w-px:active{
    width: 1px;
  }

  .s1440\:active\:w-1\/2:active{
    width: 50%;
  }

  .s1440\:active\:w-1\/3:active{
    width: 33.333333%;
  }

  .s1440\:active\:w-2\/3:active{
    width: 66.666667%;
  }

  .s1440\:active\:w-1\/4:active{
    width: 25%;
  }

  .s1440\:active\:w-2\/4:active{
    width: 50%;
  }

  .s1440\:active\:w-3\/4:active{
    width: 75%;
  }

  .s1440\:active\:w-1\/5:active{
    width: 20%;
  }

  .s1440\:active\:w-2\/5:active{
    width: 40%;
  }

  .s1440\:active\:w-3\/5:active{
    width: 60%;
  }

  .s1440\:active\:w-4\/5:active{
    width: 80%;
  }

  .s1440\:active\:w-1\/6:active{
    width: 16.666667%;
  }

  .s1440\:active\:w-2\/6:active{
    width: 33.333333%;
  }

  .s1440\:active\:w-3\/6:active{
    width: 50%;
  }

  .s1440\:active\:w-4\/6:active{
    width: 66.666667%;
  }

  .s1440\:active\:w-5\/6:active{
    width: 83.333333%;
  }

  .s1440\:active\:w-1\/12:active{
    width: 8.333333%;
  }

  .s1440\:active\:w-2\/12:active{
    width: 16.666667%;
  }

  .s1440\:active\:w-3\/12:active{
    width: 25%;
  }

  .s1440\:active\:w-4\/12:active{
    width: 33.333333%;
  }

  .s1440\:active\:w-5\/12:active{
    width: 41.666667%;
  }

  .s1440\:active\:w-6\/12:active{
    width: 50%;
  }

  .s1440\:active\:w-7\/12:active{
    width: 58.333333%;
  }

  .s1440\:active\:w-8\/12:active{
    width: 66.666667%;
  }

  .s1440\:active\:w-9\/12:active{
    width: 75%;
  }

  .s1440\:active\:w-10\/12:active{
    width: 83.333333%;
  }

  .s1440\:active\:w-11\/12:active{
    width: 91.666667%;
  }

  .s1440\:active\:w-full:active{
    width: 100%;
  }

  .s1440\:active\:w-screen:active{
    width: 100vw;
  }

  .s1440\:active\:w-widePage:active{
    width: 120rem;
  }

  .s1440\:active\:w-page:active{
    width: 80rem;
  }

  .s1440\:active\:w-container:active{
    width: 77.25rem;
  }

  .s1440\:active\:w-tooltip:active{
    width: 25rem;
  }

  .s1440\:active\:w-smallTooltip:active{
    width: 15rem;
  }

  .s1440\:active\:w-xsmallTooltip:active{
    width: 6.0rem;
  }

  .s1440\:active\:w-sidebar:active{
    width: 27rem;
  }

  .s1440\:active\:w-doubleSidebar:active{
    width: 25%;
  }

  .s1440\:active\:w-practiceSidebar:active{
    width: 22.5rem;
  }

  .s1440\:active\:w-3\/8:active{
    width: 37.5%;
  }

  .s1440\:active\:w-1\/10:active{
    width: 10%;
  }

  .s1440\:active\:w-2\/10:active{
    width: 20%;
  }

  .s1440\:active\:w-3\/10:active{
    width: 30%;
  }

  .s1440\:active\:w-4\/10:active{
    width: 40%;
  }

  .s1440\:active\:w-5\/10:active{
    width: 50%;
  }

  .s1440\:active\:w-6\/10:active{
    width: 60%;
  }

  .s1440\:active\:w-7\/10:active{
    width: 70%;
  }

  .s1440\:active\:w-8\/10:active{
    width: 80%;
  }

  .s1440\:active\:w-9\/10:active{
    width: 90%;
  }

  .s1440\:active\:w-input:active{
    width: 32.5rem;
  }

  .s1440\:active\:w-inherit:active{
    width: inherit;
  }

  .s1440\:first\:w-0:first-child{
    width: 0;
  }

  .s1440\:first\:w-1:first-child{
    width: 0.25rem;
  }

  .s1440\:first\:w-2:first-child{
    width: 0.5rem;
  }

  .s1440\:first\:w-3:first-child{
    width: 0.75rem;
  }

  .s1440\:first\:w-4:first-child{
    width: 1rem;
  }

  .s1440\:first\:w-5:first-child{
    width: 1.25rem;
  }

  .s1440\:first\:w-6:first-child{
    width: 1.5rem;
  }

  .s1440\:first\:w-8:first-child{
    width: 2rem;
  }

  .s1440\:first\:w-10:first-child{
    width: 2.5rem;
  }

  .s1440\:first\:w-12:first-child{
    width: 3rem;
  }

  .s1440\:first\:w-14:first-child{
    width: 3.5rem;
  }

  .s1440\:first\:w-16:first-child{
    width: 4rem;
  }

  .s1440\:first\:w-20:first-child{
    width: 5rem;
  }

  .s1440\:first\:w-24:first-child{
    width: 6rem;
  }

  .s1440\:first\:w-32:first-child{
    width: 8rem;
  }

  .s1440\:first\:w-36:first-child{
    width: 9rem;
  }

  .s1440\:first\:w-40:first-child{
    width: 10rem;
  }

  .s1440\:first\:w-48:first-child{
    width: 12rem;
  }

  .s1440\:first\:w-56:first-child{
    width: 14rem;
  }

  .s1440\:first\:w-64:first-child{
    width: 16rem;
  }

  .s1440\:first\:w-auto:first-child{
    width: auto;
  }

  .s1440\:first\:w-px:first-child{
    width: 1px;
  }

  .s1440\:first\:w-1\/2:first-child{
    width: 50%;
  }

  .s1440\:first\:w-1\/3:first-child{
    width: 33.333333%;
  }

  .s1440\:first\:w-2\/3:first-child{
    width: 66.666667%;
  }

  .s1440\:first\:w-1\/4:first-child{
    width: 25%;
  }

  .s1440\:first\:w-2\/4:first-child{
    width: 50%;
  }

  .s1440\:first\:w-3\/4:first-child{
    width: 75%;
  }

  .s1440\:first\:w-1\/5:first-child{
    width: 20%;
  }

  .s1440\:first\:w-2\/5:first-child{
    width: 40%;
  }

  .s1440\:first\:w-3\/5:first-child{
    width: 60%;
  }

  .s1440\:first\:w-4\/5:first-child{
    width: 80%;
  }

  .s1440\:first\:w-1\/6:first-child{
    width: 16.666667%;
  }

  .s1440\:first\:w-2\/6:first-child{
    width: 33.333333%;
  }

  .s1440\:first\:w-3\/6:first-child{
    width: 50%;
  }

  .s1440\:first\:w-4\/6:first-child{
    width: 66.666667%;
  }

  .s1440\:first\:w-5\/6:first-child{
    width: 83.333333%;
  }

  .s1440\:first\:w-1\/12:first-child{
    width: 8.333333%;
  }

  .s1440\:first\:w-2\/12:first-child{
    width: 16.666667%;
  }

  .s1440\:first\:w-3\/12:first-child{
    width: 25%;
  }

  .s1440\:first\:w-4\/12:first-child{
    width: 33.333333%;
  }

  .s1440\:first\:w-5\/12:first-child{
    width: 41.666667%;
  }

  .s1440\:first\:w-6\/12:first-child{
    width: 50%;
  }

  .s1440\:first\:w-7\/12:first-child{
    width: 58.333333%;
  }

  .s1440\:first\:w-8\/12:first-child{
    width: 66.666667%;
  }

  .s1440\:first\:w-9\/12:first-child{
    width: 75%;
  }

  .s1440\:first\:w-10\/12:first-child{
    width: 83.333333%;
  }

  .s1440\:first\:w-11\/12:first-child{
    width: 91.666667%;
  }

  .s1440\:first\:w-full:first-child{
    width: 100%;
  }

  .s1440\:first\:w-screen:first-child{
    width: 100vw;
  }

  .s1440\:first\:w-widePage:first-child{
    width: 120rem;
  }

  .s1440\:first\:w-page:first-child{
    width: 80rem;
  }

  .s1440\:first\:w-container:first-child{
    width: 77.25rem;
  }

  .s1440\:first\:w-tooltip:first-child{
    width: 25rem;
  }

  .s1440\:first\:w-smallTooltip:first-child{
    width: 15rem;
  }

  .s1440\:first\:w-xsmallTooltip:first-child{
    width: 6.0rem;
  }

  .s1440\:first\:w-sidebar:first-child{
    width: 27rem;
  }

  .s1440\:first\:w-doubleSidebar:first-child{
    width: 25%;
  }

  .s1440\:first\:w-practiceSidebar:first-child{
    width: 22.5rem;
  }

  .s1440\:first\:w-3\/8:first-child{
    width: 37.5%;
  }

  .s1440\:first\:w-1\/10:first-child{
    width: 10%;
  }

  .s1440\:first\:w-2\/10:first-child{
    width: 20%;
  }

  .s1440\:first\:w-3\/10:first-child{
    width: 30%;
  }

  .s1440\:first\:w-4\/10:first-child{
    width: 40%;
  }

  .s1440\:first\:w-5\/10:first-child{
    width: 50%;
  }

  .s1440\:first\:w-6\/10:first-child{
    width: 60%;
  }

  .s1440\:first\:w-7\/10:first-child{
    width: 70%;
  }

  .s1440\:first\:w-8\/10:first-child{
    width: 80%;
  }

  .s1440\:first\:w-9\/10:first-child{
    width: 90%;
  }

  .s1440\:first\:w-input:first-child{
    width: 32.5rem;
  }

  .s1440\:first\:w-inherit:first-child{
    width: inherit;
  }

  .s1440\:last\:w-0:last-child{
    width: 0;
  }

  .s1440\:last\:w-1:last-child{
    width: 0.25rem;
  }

  .s1440\:last\:w-2:last-child{
    width: 0.5rem;
  }

  .s1440\:last\:w-3:last-child{
    width: 0.75rem;
  }

  .s1440\:last\:w-4:last-child{
    width: 1rem;
  }

  .s1440\:last\:w-5:last-child{
    width: 1.25rem;
  }

  .s1440\:last\:w-6:last-child{
    width: 1.5rem;
  }

  .s1440\:last\:w-8:last-child{
    width: 2rem;
  }

  .s1440\:last\:w-10:last-child{
    width: 2.5rem;
  }

  .s1440\:last\:w-12:last-child{
    width: 3rem;
  }

  .s1440\:last\:w-14:last-child{
    width: 3.5rem;
  }

  .s1440\:last\:w-16:last-child{
    width: 4rem;
  }

  .s1440\:last\:w-20:last-child{
    width: 5rem;
  }

  .s1440\:last\:w-24:last-child{
    width: 6rem;
  }

  .s1440\:last\:w-32:last-child{
    width: 8rem;
  }

  .s1440\:last\:w-36:last-child{
    width: 9rem;
  }

  .s1440\:last\:w-40:last-child{
    width: 10rem;
  }

  .s1440\:last\:w-48:last-child{
    width: 12rem;
  }

  .s1440\:last\:w-56:last-child{
    width: 14rem;
  }

  .s1440\:last\:w-64:last-child{
    width: 16rem;
  }

  .s1440\:last\:w-auto:last-child{
    width: auto;
  }

  .s1440\:last\:w-px:last-child{
    width: 1px;
  }

  .s1440\:last\:w-1\/2:last-child{
    width: 50%;
  }

  .s1440\:last\:w-1\/3:last-child{
    width: 33.333333%;
  }

  .s1440\:last\:w-2\/3:last-child{
    width: 66.666667%;
  }

  .s1440\:last\:w-1\/4:last-child{
    width: 25%;
  }

  .s1440\:last\:w-2\/4:last-child{
    width: 50%;
  }

  .s1440\:last\:w-3\/4:last-child{
    width: 75%;
  }

  .s1440\:last\:w-1\/5:last-child{
    width: 20%;
  }

  .s1440\:last\:w-2\/5:last-child{
    width: 40%;
  }

  .s1440\:last\:w-3\/5:last-child{
    width: 60%;
  }

  .s1440\:last\:w-4\/5:last-child{
    width: 80%;
  }

  .s1440\:last\:w-1\/6:last-child{
    width: 16.666667%;
  }

  .s1440\:last\:w-2\/6:last-child{
    width: 33.333333%;
  }

  .s1440\:last\:w-3\/6:last-child{
    width: 50%;
  }

  .s1440\:last\:w-4\/6:last-child{
    width: 66.666667%;
  }

  .s1440\:last\:w-5\/6:last-child{
    width: 83.333333%;
  }

  .s1440\:last\:w-1\/12:last-child{
    width: 8.333333%;
  }

  .s1440\:last\:w-2\/12:last-child{
    width: 16.666667%;
  }

  .s1440\:last\:w-3\/12:last-child{
    width: 25%;
  }

  .s1440\:last\:w-4\/12:last-child{
    width: 33.333333%;
  }

  .s1440\:last\:w-5\/12:last-child{
    width: 41.666667%;
  }

  .s1440\:last\:w-6\/12:last-child{
    width: 50%;
  }

  .s1440\:last\:w-7\/12:last-child{
    width: 58.333333%;
  }

  .s1440\:last\:w-8\/12:last-child{
    width: 66.666667%;
  }

  .s1440\:last\:w-9\/12:last-child{
    width: 75%;
  }

  .s1440\:last\:w-10\/12:last-child{
    width: 83.333333%;
  }

  .s1440\:last\:w-11\/12:last-child{
    width: 91.666667%;
  }

  .s1440\:last\:w-full:last-child{
    width: 100%;
  }

  .s1440\:last\:w-screen:last-child{
    width: 100vw;
  }

  .s1440\:last\:w-widePage:last-child{
    width: 120rem;
  }

  .s1440\:last\:w-page:last-child{
    width: 80rem;
  }

  .s1440\:last\:w-container:last-child{
    width: 77.25rem;
  }

  .s1440\:last\:w-tooltip:last-child{
    width: 25rem;
  }

  .s1440\:last\:w-smallTooltip:last-child{
    width: 15rem;
  }

  .s1440\:last\:w-xsmallTooltip:last-child{
    width: 6.0rem;
  }

  .s1440\:last\:w-sidebar:last-child{
    width: 27rem;
  }

  .s1440\:last\:w-doubleSidebar:last-child{
    width: 25%;
  }

  .s1440\:last\:w-practiceSidebar:last-child{
    width: 22.5rem;
  }

  .s1440\:last\:w-3\/8:last-child{
    width: 37.5%;
  }

  .s1440\:last\:w-1\/10:last-child{
    width: 10%;
  }

  .s1440\:last\:w-2\/10:last-child{
    width: 20%;
  }

  .s1440\:last\:w-3\/10:last-child{
    width: 30%;
  }

  .s1440\:last\:w-4\/10:last-child{
    width: 40%;
  }

  .s1440\:last\:w-5\/10:last-child{
    width: 50%;
  }

  .s1440\:last\:w-6\/10:last-child{
    width: 60%;
  }

  .s1440\:last\:w-7\/10:last-child{
    width: 70%;
  }

  .s1440\:last\:w-8\/10:last-child{
    width: 80%;
  }

  .s1440\:last\:w-9\/10:last-child{
    width: 90%;
  }

  .s1440\:last\:w-input:last-child{
    width: 32.5rem;
  }

  .s1440\:last\:w-inherit:last-child{
    width: inherit;
  }

  .s1440\:z-auto{
    z-index: auto;
  }

  .s1440\:z-static-position{
    z-index: 300;
  }

  .s1440\:z-tooltip{
    z-index: 201;
  }

  .s1440\:z-overlay{
    z-index: 400;
  }

  .s1440\:hover\:z-auto:hover{
    z-index: auto;
  }

  .s1440\:hover\:z-static-position:hover{
    z-index: 300;
  }

  .s1440\:hover\:z-tooltip:hover{
    z-index: 201;
  }

  .s1440\:hover\:z-overlay:hover{
    z-index: 400;
  }

  .s1440\:focus\:z-auto:focus{
    z-index: auto;
  }

  .s1440\:focus\:z-static-position:focus{
    z-index: 300;
  }

  .s1440\:focus\:z-tooltip:focus{
    z-index: 201;
  }

  .s1440\:focus\:z-overlay:focus{
    z-index: 400;
  }

  .s1440\:active\:z-auto:active{
    z-index: auto;
  }

  .s1440\:active\:z-static-position:active{
    z-index: 300;
  }

  .s1440\:active\:z-tooltip:active{
    z-index: 201;
  }

  .s1440\:active\:z-overlay:active{
    z-index: 400;
  }

  .s1440\:first\:z-auto:first-child{
    z-index: auto;
  }

  .s1440\:first\:z-static-position:first-child{
    z-index: 300;
  }

  .s1440\:first\:z-tooltip:first-child{
    z-index: 201;
  }

  .s1440\:first\:z-overlay:first-child{
    z-index: 400;
  }

  .s1440\:last\:z-auto:last-child{
    z-index: auto;
  }

  .s1440\:last\:z-static-position:last-child{
    z-index: 300;
  }

  .s1440\:last\:z-tooltip:last-child{
    z-index: 201;
  }

  .s1440\:last\:z-overlay:last-child{
    z-index: 400;
  }

  .s1440\:gap-0{
    grid-gap: 0;
    gap: 0;
  }

  .s1440\:gap-1{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1440\:gap-2{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1440\:gap-3{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1440\:gap-4{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1440\:gap-5{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1440\:gap-6{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1440\:gap-8{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1440\:gap-10{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1440\:gap-12{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1440\:gap-14{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1440\:gap-16{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1440\:gap-20{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1440\:gap-24{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1440\:gap-32{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1440\:gap-40{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1440\:gap-48{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1440\:gap-56{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1440\:gap-64{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1440\:gap-px{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1440\:col-gap-0{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:col-gap-1{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:col-gap-2{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:col-gap-3{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:col-gap-4{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:col-gap-5{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:col-gap-6{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:col-gap-8{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:col-gap-10{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:col-gap-12{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:col-gap-14{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:col-gap-16{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:col-gap-20{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:col-gap-24{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:col-gap-32{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:col-gap-40{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:col-gap-48{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:col-gap-56{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:col-gap-64{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:col-gap-px{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:gap-x-0{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:gap-x-1{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:gap-x-2{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:gap-x-3{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:gap-x-4{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:gap-x-5{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:gap-x-6{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:gap-x-8{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:gap-x-10{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:gap-x-12{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:gap-x-14{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:gap-x-16{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:gap-x-20{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:gap-x-24{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:gap-x-32{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:gap-x-40{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:gap-x-48{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:gap-x-56{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:gap-x-64{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:gap-x-px{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:row-gap-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:row-gap-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:row-gap-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:row-gap-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:row-gap-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:row-gap-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:row-gap-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:row-gap-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:row-gap-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:row-gap-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:row-gap-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:row-gap-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:row-gap-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:row-gap-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:row-gap-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:row-gap-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:row-gap-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:row-gap-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:row-gap-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:row-gap-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:gap-y-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:gap-y-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:gap-y-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:gap-y-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:gap-y-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:gap-y-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:gap-y-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:gap-y-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:gap-y-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:gap-y-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:gap-y-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:gap-y-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:gap-y-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:gap-y-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:gap-y-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:gap-y-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:gap-y-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:gap-y-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:gap-y-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:gap-y-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:hover\:gap-0:hover{
    grid-gap: 0;
    gap: 0;
  }

  .s1440\:hover\:gap-1:hover{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1440\:hover\:gap-2:hover{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1440\:hover\:gap-3:hover{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1440\:hover\:gap-4:hover{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1440\:hover\:gap-5:hover{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1440\:hover\:gap-6:hover{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1440\:hover\:gap-8:hover{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1440\:hover\:gap-10:hover{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1440\:hover\:gap-12:hover{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1440\:hover\:gap-14:hover{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1440\:hover\:gap-16:hover{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1440\:hover\:gap-20:hover{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1440\:hover\:gap-24:hover{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1440\:hover\:gap-32:hover{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1440\:hover\:gap-40:hover{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1440\:hover\:gap-48:hover{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1440\:hover\:gap-56:hover{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1440\:hover\:gap-64:hover{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1440\:hover\:gap-px:hover{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1440\:hover\:col-gap-0:hover{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:hover\:col-gap-1:hover{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:hover\:col-gap-2:hover{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:hover\:col-gap-3:hover{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:hover\:col-gap-4:hover{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:hover\:col-gap-5:hover{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:hover\:col-gap-6:hover{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:hover\:col-gap-8:hover{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:hover\:col-gap-10:hover{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:hover\:col-gap-12:hover{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:hover\:col-gap-14:hover{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:hover\:col-gap-16:hover{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:hover\:col-gap-20:hover{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:hover\:col-gap-24:hover{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:hover\:col-gap-32:hover{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:hover\:col-gap-40:hover{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:hover\:col-gap-48:hover{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:hover\:col-gap-56:hover{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:hover\:col-gap-64:hover{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:hover\:col-gap-px:hover{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:hover\:gap-x-0:hover{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:hover\:gap-x-1:hover{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:hover\:gap-x-2:hover{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:hover\:gap-x-3:hover{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:hover\:gap-x-4:hover{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:hover\:gap-x-5:hover{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:hover\:gap-x-6:hover{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:hover\:gap-x-8:hover{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:hover\:gap-x-10:hover{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:hover\:gap-x-12:hover{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:hover\:gap-x-14:hover{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:hover\:gap-x-16:hover{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:hover\:gap-x-20:hover{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:hover\:gap-x-24:hover{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:hover\:gap-x-32:hover{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:hover\:gap-x-40:hover{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:hover\:gap-x-48:hover{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:hover\:gap-x-56:hover{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:hover\:gap-x-64:hover{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:hover\:gap-x-px:hover{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:hover\:row-gap-0:hover{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:hover\:row-gap-1:hover{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:hover\:row-gap-2:hover{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:hover\:row-gap-3:hover{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:hover\:row-gap-4:hover{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:hover\:row-gap-5:hover{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:hover\:row-gap-6:hover{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:hover\:row-gap-8:hover{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:hover\:row-gap-10:hover{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:hover\:row-gap-12:hover{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:hover\:row-gap-14:hover{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:hover\:row-gap-16:hover{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:hover\:row-gap-20:hover{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:hover\:row-gap-24:hover{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:hover\:row-gap-32:hover{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:hover\:row-gap-40:hover{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:hover\:row-gap-48:hover{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:hover\:row-gap-56:hover{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:hover\:row-gap-64:hover{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:hover\:row-gap-px:hover{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:hover\:gap-y-0:hover{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:hover\:gap-y-1:hover{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:hover\:gap-y-2:hover{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:hover\:gap-y-3:hover{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:hover\:gap-y-4:hover{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:hover\:gap-y-5:hover{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:hover\:gap-y-6:hover{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:hover\:gap-y-8:hover{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:hover\:gap-y-10:hover{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:hover\:gap-y-12:hover{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:hover\:gap-y-14:hover{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:hover\:gap-y-16:hover{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:hover\:gap-y-20:hover{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:hover\:gap-y-24:hover{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:hover\:gap-y-32:hover{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:hover\:gap-y-40:hover{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:hover\:gap-y-48:hover{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:hover\:gap-y-56:hover{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:hover\:gap-y-64:hover{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:hover\:gap-y-px:hover{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:focus\:gap-0:focus{
    grid-gap: 0;
    gap: 0;
  }

  .s1440\:focus\:gap-1:focus{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1440\:focus\:gap-2:focus{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1440\:focus\:gap-3:focus{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1440\:focus\:gap-4:focus{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1440\:focus\:gap-5:focus{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1440\:focus\:gap-6:focus{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1440\:focus\:gap-8:focus{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1440\:focus\:gap-10:focus{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1440\:focus\:gap-12:focus{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1440\:focus\:gap-14:focus{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1440\:focus\:gap-16:focus{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1440\:focus\:gap-20:focus{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1440\:focus\:gap-24:focus{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1440\:focus\:gap-32:focus{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1440\:focus\:gap-40:focus{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1440\:focus\:gap-48:focus{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1440\:focus\:gap-56:focus{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1440\:focus\:gap-64:focus{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1440\:focus\:gap-px:focus{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1440\:focus\:col-gap-0:focus{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:focus\:col-gap-1:focus{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:focus\:col-gap-2:focus{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:focus\:col-gap-3:focus{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:focus\:col-gap-4:focus{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:focus\:col-gap-5:focus{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:focus\:col-gap-6:focus{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:focus\:col-gap-8:focus{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:focus\:col-gap-10:focus{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:focus\:col-gap-12:focus{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:focus\:col-gap-14:focus{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:focus\:col-gap-16:focus{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:focus\:col-gap-20:focus{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:focus\:col-gap-24:focus{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:focus\:col-gap-32:focus{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:focus\:col-gap-40:focus{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:focus\:col-gap-48:focus{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:focus\:col-gap-56:focus{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:focus\:col-gap-64:focus{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:focus\:col-gap-px:focus{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:focus\:gap-x-0:focus{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:focus\:gap-x-1:focus{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:focus\:gap-x-2:focus{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:focus\:gap-x-3:focus{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:focus\:gap-x-4:focus{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:focus\:gap-x-5:focus{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:focus\:gap-x-6:focus{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:focus\:gap-x-8:focus{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:focus\:gap-x-10:focus{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:focus\:gap-x-12:focus{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:focus\:gap-x-14:focus{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:focus\:gap-x-16:focus{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:focus\:gap-x-20:focus{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:focus\:gap-x-24:focus{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:focus\:gap-x-32:focus{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:focus\:gap-x-40:focus{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:focus\:gap-x-48:focus{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:focus\:gap-x-56:focus{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:focus\:gap-x-64:focus{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:focus\:gap-x-px:focus{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:focus\:row-gap-0:focus{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:focus\:row-gap-1:focus{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:focus\:row-gap-2:focus{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:focus\:row-gap-3:focus{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:focus\:row-gap-4:focus{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:focus\:row-gap-5:focus{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:focus\:row-gap-6:focus{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:focus\:row-gap-8:focus{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:focus\:row-gap-10:focus{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:focus\:row-gap-12:focus{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:focus\:row-gap-14:focus{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:focus\:row-gap-16:focus{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:focus\:row-gap-20:focus{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:focus\:row-gap-24:focus{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:focus\:row-gap-32:focus{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:focus\:row-gap-40:focus{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:focus\:row-gap-48:focus{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:focus\:row-gap-56:focus{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:focus\:row-gap-64:focus{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:focus\:row-gap-px:focus{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:focus\:gap-y-0:focus{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:focus\:gap-y-1:focus{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:focus\:gap-y-2:focus{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:focus\:gap-y-3:focus{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:focus\:gap-y-4:focus{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:focus\:gap-y-5:focus{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:focus\:gap-y-6:focus{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:focus\:gap-y-8:focus{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:focus\:gap-y-10:focus{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:focus\:gap-y-12:focus{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:focus\:gap-y-14:focus{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:focus\:gap-y-16:focus{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:focus\:gap-y-20:focus{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:focus\:gap-y-24:focus{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:focus\:gap-y-32:focus{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:focus\:gap-y-40:focus{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:focus\:gap-y-48:focus{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:focus\:gap-y-56:focus{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:focus\:gap-y-64:focus{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:focus\:gap-y-px:focus{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:active\:gap-0:active{
    grid-gap: 0;
    gap: 0;
  }

  .s1440\:active\:gap-1:active{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1440\:active\:gap-2:active{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1440\:active\:gap-3:active{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1440\:active\:gap-4:active{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1440\:active\:gap-5:active{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1440\:active\:gap-6:active{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1440\:active\:gap-8:active{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1440\:active\:gap-10:active{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1440\:active\:gap-12:active{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1440\:active\:gap-14:active{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1440\:active\:gap-16:active{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1440\:active\:gap-20:active{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1440\:active\:gap-24:active{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1440\:active\:gap-32:active{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1440\:active\:gap-40:active{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1440\:active\:gap-48:active{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1440\:active\:gap-56:active{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1440\:active\:gap-64:active{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1440\:active\:gap-px:active{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1440\:active\:col-gap-0:active{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:active\:col-gap-1:active{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:active\:col-gap-2:active{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:active\:col-gap-3:active{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:active\:col-gap-4:active{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:active\:col-gap-5:active{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:active\:col-gap-6:active{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:active\:col-gap-8:active{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:active\:col-gap-10:active{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:active\:col-gap-12:active{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:active\:col-gap-14:active{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:active\:col-gap-16:active{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:active\:col-gap-20:active{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:active\:col-gap-24:active{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:active\:col-gap-32:active{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:active\:col-gap-40:active{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:active\:col-gap-48:active{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:active\:col-gap-56:active{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:active\:col-gap-64:active{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:active\:col-gap-px:active{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:active\:gap-x-0:active{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:active\:gap-x-1:active{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:active\:gap-x-2:active{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:active\:gap-x-3:active{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:active\:gap-x-4:active{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:active\:gap-x-5:active{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:active\:gap-x-6:active{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:active\:gap-x-8:active{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:active\:gap-x-10:active{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:active\:gap-x-12:active{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:active\:gap-x-14:active{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:active\:gap-x-16:active{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:active\:gap-x-20:active{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:active\:gap-x-24:active{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:active\:gap-x-32:active{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:active\:gap-x-40:active{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:active\:gap-x-48:active{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:active\:gap-x-56:active{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:active\:gap-x-64:active{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:active\:gap-x-px:active{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:active\:row-gap-0:active{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:active\:row-gap-1:active{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:active\:row-gap-2:active{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:active\:row-gap-3:active{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:active\:row-gap-4:active{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:active\:row-gap-5:active{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:active\:row-gap-6:active{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:active\:row-gap-8:active{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:active\:row-gap-10:active{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:active\:row-gap-12:active{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:active\:row-gap-14:active{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:active\:row-gap-16:active{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:active\:row-gap-20:active{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:active\:row-gap-24:active{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:active\:row-gap-32:active{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:active\:row-gap-40:active{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:active\:row-gap-48:active{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:active\:row-gap-56:active{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:active\:row-gap-64:active{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:active\:row-gap-px:active{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:active\:gap-y-0:active{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:active\:gap-y-1:active{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:active\:gap-y-2:active{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:active\:gap-y-3:active{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:active\:gap-y-4:active{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:active\:gap-y-5:active{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:active\:gap-y-6:active{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:active\:gap-y-8:active{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:active\:gap-y-10:active{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:active\:gap-y-12:active{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:active\:gap-y-14:active{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:active\:gap-y-16:active{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:active\:gap-y-20:active{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:active\:gap-y-24:active{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:active\:gap-y-32:active{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:active\:gap-y-40:active{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:active\:gap-y-48:active{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:active\:gap-y-56:active{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:active\:gap-y-64:active{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:active\:gap-y-px:active{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:first\:gap-0:first-child{
    grid-gap: 0;
    gap: 0;
  }

  .s1440\:first\:gap-1:first-child{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1440\:first\:gap-2:first-child{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1440\:first\:gap-3:first-child{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1440\:first\:gap-4:first-child{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1440\:first\:gap-5:first-child{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1440\:first\:gap-6:first-child{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1440\:first\:gap-8:first-child{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1440\:first\:gap-10:first-child{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1440\:first\:gap-12:first-child{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1440\:first\:gap-14:first-child{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1440\:first\:gap-16:first-child{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1440\:first\:gap-20:first-child{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1440\:first\:gap-24:first-child{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1440\:first\:gap-32:first-child{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1440\:first\:gap-40:first-child{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1440\:first\:gap-48:first-child{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1440\:first\:gap-56:first-child{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1440\:first\:gap-64:first-child{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1440\:first\:gap-px:first-child{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1440\:first\:col-gap-0:first-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:first\:col-gap-1:first-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:first\:col-gap-2:first-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:first\:col-gap-3:first-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:first\:col-gap-4:first-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:first\:col-gap-5:first-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:first\:col-gap-6:first-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:first\:col-gap-8:first-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:first\:col-gap-10:first-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:first\:col-gap-12:first-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:first\:col-gap-14:first-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:first\:col-gap-16:first-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:first\:col-gap-20:first-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:first\:col-gap-24:first-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:first\:col-gap-32:first-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:first\:col-gap-40:first-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:first\:col-gap-48:first-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:first\:col-gap-56:first-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:first\:col-gap-64:first-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:first\:col-gap-px:first-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:first\:gap-x-0:first-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:first\:gap-x-1:first-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:first\:gap-x-2:first-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:first\:gap-x-3:first-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:first\:gap-x-4:first-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:first\:gap-x-5:first-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:first\:gap-x-6:first-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:first\:gap-x-8:first-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:first\:gap-x-10:first-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:first\:gap-x-12:first-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:first\:gap-x-14:first-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:first\:gap-x-16:first-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:first\:gap-x-20:first-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:first\:gap-x-24:first-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:first\:gap-x-32:first-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:first\:gap-x-40:first-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:first\:gap-x-48:first-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:first\:gap-x-56:first-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:first\:gap-x-64:first-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:first\:gap-x-px:first-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:first\:row-gap-0:first-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:first\:row-gap-1:first-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:first\:row-gap-2:first-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:first\:row-gap-3:first-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:first\:row-gap-4:first-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:first\:row-gap-5:first-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:first\:row-gap-6:first-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:first\:row-gap-8:first-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:first\:row-gap-10:first-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:first\:row-gap-12:first-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:first\:row-gap-14:first-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:first\:row-gap-16:first-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:first\:row-gap-20:first-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:first\:row-gap-24:first-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:first\:row-gap-32:first-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:first\:row-gap-40:first-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:first\:row-gap-48:first-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:first\:row-gap-56:first-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:first\:row-gap-64:first-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:first\:row-gap-px:first-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:first\:gap-y-0:first-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:first\:gap-y-1:first-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:first\:gap-y-2:first-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:first\:gap-y-3:first-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:first\:gap-y-4:first-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:first\:gap-y-5:first-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:first\:gap-y-6:first-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:first\:gap-y-8:first-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:first\:gap-y-10:first-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:first\:gap-y-12:first-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:first\:gap-y-14:first-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:first\:gap-y-16:first-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:first\:gap-y-20:first-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:first\:gap-y-24:first-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:first\:gap-y-32:first-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:first\:gap-y-40:first-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:first\:gap-y-48:first-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:first\:gap-y-56:first-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:first\:gap-y-64:first-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:first\:gap-y-px:first-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:last\:gap-0:last-child{
    grid-gap: 0;
    gap: 0;
  }

  .s1440\:last\:gap-1:last-child{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1440\:last\:gap-2:last-child{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1440\:last\:gap-3:last-child{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1440\:last\:gap-4:last-child{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1440\:last\:gap-5:last-child{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1440\:last\:gap-6:last-child{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1440\:last\:gap-8:last-child{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1440\:last\:gap-10:last-child{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1440\:last\:gap-12:last-child{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1440\:last\:gap-14:last-child{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1440\:last\:gap-16:last-child{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1440\:last\:gap-20:last-child{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1440\:last\:gap-24:last-child{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1440\:last\:gap-32:last-child{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1440\:last\:gap-40:last-child{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1440\:last\:gap-48:last-child{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1440\:last\:gap-56:last-child{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1440\:last\:gap-64:last-child{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1440\:last\:gap-px:last-child{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1440\:last\:col-gap-0:last-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:last\:col-gap-1:last-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:last\:col-gap-2:last-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:last\:col-gap-3:last-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:last\:col-gap-4:last-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:last\:col-gap-5:last-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:last\:col-gap-6:last-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:last\:col-gap-8:last-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:last\:col-gap-10:last-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:last\:col-gap-12:last-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:last\:col-gap-14:last-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:last\:col-gap-16:last-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:last\:col-gap-20:last-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:last\:col-gap-24:last-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:last\:col-gap-32:last-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:last\:col-gap-40:last-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:last\:col-gap-48:last-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:last\:col-gap-56:last-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:last\:col-gap-64:last-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:last\:col-gap-px:last-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:last\:gap-x-0:last-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1440\:last\:gap-x-1:last-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1440\:last\:gap-x-2:last-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1440\:last\:gap-x-3:last-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1440\:last\:gap-x-4:last-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1440\:last\:gap-x-5:last-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1440\:last\:gap-x-6:last-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1440\:last\:gap-x-8:last-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1440\:last\:gap-x-10:last-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1440\:last\:gap-x-12:last-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1440\:last\:gap-x-14:last-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1440\:last\:gap-x-16:last-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1440\:last\:gap-x-20:last-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1440\:last\:gap-x-24:last-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1440\:last\:gap-x-32:last-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1440\:last\:gap-x-40:last-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1440\:last\:gap-x-48:last-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1440\:last\:gap-x-56:last-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1440\:last\:gap-x-64:last-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1440\:last\:gap-x-px:last-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1440\:last\:row-gap-0:last-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:last\:row-gap-1:last-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:last\:row-gap-2:last-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:last\:row-gap-3:last-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:last\:row-gap-4:last-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:last\:row-gap-5:last-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:last\:row-gap-6:last-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:last\:row-gap-8:last-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:last\:row-gap-10:last-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:last\:row-gap-12:last-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:last\:row-gap-14:last-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:last\:row-gap-16:last-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:last\:row-gap-20:last-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:last\:row-gap-24:last-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:last\:row-gap-32:last-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:last\:row-gap-40:last-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:last\:row-gap-48:last-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:last\:row-gap-56:last-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:last\:row-gap-64:last-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:last\:row-gap-px:last-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:last\:gap-y-0:last-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1440\:last\:gap-y-1:last-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1440\:last\:gap-y-2:last-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1440\:last\:gap-y-3:last-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1440\:last\:gap-y-4:last-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1440\:last\:gap-y-5:last-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1440\:last\:gap-y-6:last-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1440\:last\:gap-y-8:last-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1440\:last\:gap-y-10:last-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1440\:last\:gap-y-12:last-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1440\:last\:gap-y-14:last-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1440\:last\:gap-y-16:last-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1440\:last\:gap-y-20:last-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1440\:last\:gap-y-24:last-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1440\:last\:gap-y-32:last-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1440\:last\:gap-y-40:last-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1440\:last\:gap-y-48:last-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1440\:last\:gap-y-56:last-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1440\:last\:gap-y-64:last-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1440\:last\:gap-y-px:last-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1440\:grid-flow-row{
    grid-auto-flow: row;
  }

  .s1440\:grid-flow-col{
    grid-auto-flow: column;
  }

  .s1440\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .s1440\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .s1440\:hover\:grid-flow-row:hover{
    grid-auto-flow: row;
  }

  .s1440\:hover\:grid-flow-col:hover{
    grid-auto-flow: column;
  }

  .s1440\:hover\:grid-flow-row-dense:hover{
    grid-auto-flow: row dense;
  }

  .s1440\:hover\:grid-flow-col-dense:hover{
    grid-auto-flow: column dense;
  }

  .s1440\:focus\:grid-flow-row:focus{
    grid-auto-flow: row;
  }

  .s1440\:focus\:grid-flow-col:focus{
    grid-auto-flow: column;
  }

  .s1440\:focus\:grid-flow-row-dense:focus{
    grid-auto-flow: row dense;
  }

  .s1440\:focus\:grid-flow-col-dense:focus{
    grid-auto-flow: column dense;
  }

  .s1440\:active\:grid-flow-row:active{
    grid-auto-flow: row;
  }

  .s1440\:active\:grid-flow-col:active{
    grid-auto-flow: column;
  }

  .s1440\:active\:grid-flow-row-dense:active{
    grid-auto-flow: row dense;
  }

  .s1440\:active\:grid-flow-col-dense:active{
    grid-auto-flow: column dense;
  }

  .s1440\:first\:grid-flow-row:first-child{
    grid-auto-flow: row;
  }

  .s1440\:first\:grid-flow-col:first-child{
    grid-auto-flow: column;
  }

  .s1440\:first\:grid-flow-row-dense:first-child{
    grid-auto-flow: row dense;
  }

  .s1440\:first\:grid-flow-col-dense:first-child{
    grid-auto-flow: column dense;
  }

  .s1440\:last\:grid-flow-row:last-child{
    grid-auto-flow: row;
  }

  .s1440\:last\:grid-flow-col:last-child{
    grid-auto-flow: column;
  }

  .s1440\:last\:grid-flow-row-dense:last-child{
    grid-auto-flow: row dense;
  }

  .s1440\:last\:grid-flow-col-dense:last-child{
    grid-auto-flow: column dense;
  }

  .s1440\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1440\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1440\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1440\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1440\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1440\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1440\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1440\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1440\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1440\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1440\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1440\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1440\:grid-cols-none{
    grid-template-columns: none;
  }

  .s1440\:hover\:grid-cols-1:hover{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-2:hover{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-3:hover{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-4:hover{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-5:hover{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-6:hover{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-7:hover{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-8:hover{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-9:hover{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-10:hover{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-11:hover{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-12:hover{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-cols-none:hover{
    grid-template-columns: none;
  }

  .s1440\:focus\:grid-cols-1:focus{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-2:focus{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-3:focus{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-4:focus{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-5:focus{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-6:focus{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-7:focus{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-8:focus{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-9:focus{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-10:focus{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-11:focus{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-12:focus{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-cols-none:focus{
    grid-template-columns: none;
  }

  .s1440\:active\:grid-cols-1:active{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-2:active{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-3:active{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-4:active{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-5:active{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-6:active{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-7:active{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-8:active{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-9:active{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-10:active{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-11:active{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-12:active{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1440\:active\:grid-cols-none:active{
    grid-template-columns: none;
  }

  .s1440\:first\:grid-cols-1:first-child{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-2:first-child{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-3:first-child{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-4:first-child{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-5:first-child{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-6:first-child{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-7:first-child{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-8:first-child{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-9:first-child{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-10:first-child{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-11:first-child{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-12:first-child{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1440\:first\:grid-cols-none:first-child{
    grid-template-columns: none;
  }

  .s1440\:last\:grid-cols-1:last-child{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-2:last-child{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-3:last-child{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-4:last-child{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-5:last-child{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-6:last-child{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-7:last-child{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-8:last-child{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-9:last-child{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-10:last-child{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-11:last-child{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-12:last-child{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1440\:last\:grid-cols-none:last-child{
    grid-template-columns: none;
  }

  .s1440\:col-auto{
    grid-column: auto;
  }

  .s1440\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .s1440\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .s1440\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .s1440\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .s1440\:col-span-5{
    grid-column: span 5 / span 5;
  }

  .s1440\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .s1440\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .s1440\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .s1440\:col-span-9{
    grid-column: span 9 / span 9;
  }

  .s1440\:col-span-10{
    grid-column: span 10 / span 10;
  }

  .s1440\:col-span-11{
    grid-column: span 11 / span 11;
  }

  .s1440\:col-span-12{
    grid-column: span 12 / span 12;
  }

  .s1440\:hover\:col-auto:hover{
    grid-column: auto;
  }

  .s1440\:hover\:col-span-1:hover{
    grid-column: span 1 / span 1;
  }

  .s1440\:hover\:col-span-2:hover{
    grid-column: span 2 / span 2;
  }

  .s1440\:hover\:col-span-3:hover{
    grid-column: span 3 / span 3;
  }

  .s1440\:hover\:col-span-4:hover{
    grid-column: span 4 / span 4;
  }

  .s1440\:hover\:col-span-5:hover{
    grid-column: span 5 / span 5;
  }

  .s1440\:hover\:col-span-6:hover{
    grid-column: span 6 / span 6;
  }

  .s1440\:hover\:col-span-7:hover{
    grid-column: span 7 / span 7;
  }

  .s1440\:hover\:col-span-8:hover{
    grid-column: span 8 / span 8;
  }

  .s1440\:hover\:col-span-9:hover{
    grid-column: span 9 / span 9;
  }

  .s1440\:hover\:col-span-10:hover{
    grid-column: span 10 / span 10;
  }

  .s1440\:hover\:col-span-11:hover{
    grid-column: span 11 / span 11;
  }

  .s1440\:hover\:col-span-12:hover{
    grid-column: span 12 / span 12;
  }

  .s1440\:focus\:col-auto:focus{
    grid-column: auto;
  }

  .s1440\:focus\:col-span-1:focus{
    grid-column: span 1 / span 1;
  }

  .s1440\:focus\:col-span-2:focus{
    grid-column: span 2 / span 2;
  }

  .s1440\:focus\:col-span-3:focus{
    grid-column: span 3 / span 3;
  }

  .s1440\:focus\:col-span-4:focus{
    grid-column: span 4 / span 4;
  }

  .s1440\:focus\:col-span-5:focus{
    grid-column: span 5 / span 5;
  }

  .s1440\:focus\:col-span-6:focus{
    grid-column: span 6 / span 6;
  }

  .s1440\:focus\:col-span-7:focus{
    grid-column: span 7 / span 7;
  }

  .s1440\:focus\:col-span-8:focus{
    grid-column: span 8 / span 8;
  }

  .s1440\:focus\:col-span-9:focus{
    grid-column: span 9 / span 9;
  }

  .s1440\:focus\:col-span-10:focus{
    grid-column: span 10 / span 10;
  }

  .s1440\:focus\:col-span-11:focus{
    grid-column: span 11 / span 11;
  }

  .s1440\:focus\:col-span-12:focus{
    grid-column: span 12 / span 12;
  }

  .s1440\:active\:col-auto:active{
    grid-column: auto;
  }

  .s1440\:active\:col-span-1:active{
    grid-column: span 1 / span 1;
  }

  .s1440\:active\:col-span-2:active{
    grid-column: span 2 / span 2;
  }

  .s1440\:active\:col-span-3:active{
    grid-column: span 3 / span 3;
  }

  .s1440\:active\:col-span-4:active{
    grid-column: span 4 / span 4;
  }

  .s1440\:active\:col-span-5:active{
    grid-column: span 5 / span 5;
  }

  .s1440\:active\:col-span-6:active{
    grid-column: span 6 / span 6;
  }

  .s1440\:active\:col-span-7:active{
    grid-column: span 7 / span 7;
  }

  .s1440\:active\:col-span-8:active{
    grid-column: span 8 / span 8;
  }

  .s1440\:active\:col-span-9:active{
    grid-column: span 9 / span 9;
  }

  .s1440\:active\:col-span-10:active{
    grid-column: span 10 / span 10;
  }

  .s1440\:active\:col-span-11:active{
    grid-column: span 11 / span 11;
  }

  .s1440\:active\:col-span-12:active{
    grid-column: span 12 / span 12;
  }

  .s1440\:first\:col-auto:first-child{
    grid-column: auto;
  }

  .s1440\:first\:col-span-1:first-child{
    grid-column: span 1 / span 1;
  }

  .s1440\:first\:col-span-2:first-child{
    grid-column: span 2 / span 2;
  }

  .s1440\:first\:col-span-3:first-child{
    grid-column: span 3 / span 3;
  }

  .s1440\:first\:col-span-4:first-child{
    grid-column: span 4 / span 4;
  }

  .s1440\:first\:col-span-5:first-child{
    grid-column: span 5 / span 5;
  }

  .s1440\:first\:col-span-6:first-child{
    grid-column: span 6 / span 6;
  }

  .s1440\:first\:col-span-7:first-child{
    grid-column: span 7 / span 7;
  }

  .s1440\:first\:col-span-8:first-child{
    grid-column: span 8 / span 8;
  }

  .s1440\:first\:col-span-9:first-child{
    grid-column: span 9 / span 9;
  }

  .s1440\:first\:col-span-10:first-child{
    grid-column: span 10 / span 10;
  }

  .s1440\:first\:col-span-11:first-child{
    grid-column: span 11 / span 11;
  }

  .s1440\:first\:col-span-12:first-child{
    grid-column: span 12 / span 12;
  }

  .s1440\:last\:col-auto:last-child{
    grid-column: auto;
  }

  .s1440\:last\:col-span-1:last-child{
    grid-column: span 1 / span 1;
  }

  .s1440\:last\:col-span-2:last-child{
    grid-column: span 2 / span 2;
  }

  .s1440\:last\:col-span-3:last-child{
    grid-column: span 3 / span 3;
  }

  .s1440\:last\:col-span-4:last-child{
    grid-column: span 4 / span 4;
  }

  .s1440\:last\:col-span-5:last-child{
    grid-column: span 5 / span 5;
  }

  .s1440\:last\:col-span-6:last-child{
    grid-column: span 6 / span 6;
  }

  .s1440\:last\:col-span-7:last-child{
    grid-column: span 7 / span 7;
  }

  .s1440\:last\:col-span-8:last-child{
    grid-column: span 8 / span 8;
  }

  .s1440\:last\:col-span-9:last-child{
    grid-column: span 9 / span 9;
  }

  .s1440\:last\:col-span-10:last-child{
    grid-column: span 10 / span 10;
  }

  .s1440\:last\:col-span-11:last-child{
    grid-column: span 11 / span 11;
  }

  .s1440\:last\:col-span-12:last-child{
    grid-column: span 12 / span 12;
  }

  .s1440\:col-start-1{
    grid-column-start: 1;
  }

  .s1440\:col-start-2{
    grid-column-start: 2;
  }

  .s1440\:col-start-3{
    grid-column-start: 3;
  }

  .s1440\:col-start-4{
    grid-column-start: 4;
  }

  .s1440\:col-start-5{
    grid-column-start: 5;
  }

  .s1440\:col-start-6{
    grid-column-start: 6;
  }

  .s1440\:col-start-7{
    grid-column-start: 7;
  }

  .s1440\:col-start-8{
    grid-column-start: 8;
  }

  .s1440\:col-start-9{
    grid-column-start: 9;
  }

  .s1440\:col-start-10{
    grid-column-start: 10;
  }

  .s1440\:col-start-11{
    grid-column-start: 11;
  }

  .s1440\:col-start-12{
    grid-column-start: 12;
  }

  .s1440\:col-start-13{
    grid-column-start: 13;
  }

  .s1440\:col-start-auto{
    grid-column-start: auto;
  }

  .s1440\:hover\:col-start-1:hover{
    grid-column-start: 1;
  }

  .s1440\:hover\:col-start-2:hover{
    grid-column-start: 2;
  }

  .s1440\:hover\:col-start-3:hover{
    grid-column-start: 3;
  }

  .s1440\:hover\:col-start-4:hover{
    grid-column-start: 4;
  }

  .s1440\:hover\:col-start-5:hover{
    grid-column-start: 5;
  }

  .s1440\:hover\:col-start-6:hover{
    grid-column-start: 6;
  }

  .s1440\:hover\:col-start-7:hover{
    grid-column-start: 7;
  }

  .s1440\:hover\:col-start-8:hover{
    grid-column-start: 8;
  }

  .s1440\:hover\:col-start-9:hover{
    grid-column-start: 9;
  }

  .s1440\:hover\:col-start-10:hover{
    grid-column-start: 10;
  }

  .s1440\:hover\:col-start-11:hover{
    grid-column-start: 11;
  }

  .s1440\:hover\:col-start-12:hover{
    grid-column-start: 12;
  }

  .s1440\:hover\:col-start-13:hover{
    grid-column-start: 13;
  }

  .s1440\:hover\:col-start-auto:hover{
    grid-column-start: auto;
  }

  .s1440\:focus\:col-start-1:focus{
    grid-column-start: 1;
  }

  .s1440\:focus\:col-start-2:focus{
    grid-column-start: 2;
  }

  .s1440\:focus\:col-start-3:focus{
    grid-column-start: 3;
  }

  .s1440\:focus\:col-start-4:focus{
    grid-column-start: 4;
  }

  .s1440\:focus\:col-start-5:focus{
    grid-column-start: 5;
  }

  .s1440\:focus\:col-start-6:focus{
    grid-column-start: 6;
  }

  .s1440\:focus\:col-start-7:focus{
    grid-column-start: 7;
  }

  .s1440\:focus\:col-start-8:focus{
    grid-column-start: 8;
  }

  .s1440\:focus\:col-start-9:focus{
    grid-column-start: 9;
  }

  .s1440\:focus\:col-start-10:focus{
    grid-column-start: 10;
  }

  .s1440\:focus\:col-start-11:focus{
    grid-column-start: 11;
  }

  .s1440\:focus\:col-start-12:focus{
    grid-column-start: 12;
  }

  .s1440\:focus\:col-start-13:focus{
    grid-column-start: 13;
  }

  .s1440\:focus\:col-start-auto:focus{
    grid-column-start: auto;
  }

  .s1440\:active\:col-start-1:active{
    grid-column-start: 1;
  }

  .s1440\:active\:col-start-2:active{
    grid-column-start: 2;
  }

  .s1440\:active\:col-start-3:active{
    grid-column-start: 3;
  }

  .s1440\:active\:col-start-4:active{
    grid-column-start: 4;
  }

  .s1440\:active\:col-start-5:active{
    grid-column-start: 5;
  }

  .s1440\:active\:col-start-6:active{
    grid-column-start: 6;
  }

  .s1440\:active\:col-start-7:active{
    grid-column-start: 7;
  }

  .s1440\:active\:col-start-8:active{
    grid-column-start: 8;
  }

  .s1440\:active\:col-start-9:active{
    grid-column-start: 9;
  }

  .s1440\:active\:col-start-10:active{
    grid-column-start: 10;
  }

  .s1440\:active\:col-start-11:active{
    grid-column-start: 11;
  }

  .s1440\:active\:col-start-12:active{
    grid-column-start: 12;
  }

  .s1440\:active\:col-start-13:active{
    grid-column-start: 13;
  }

  .s1440\:active\:col-start-auto:active{
    grid-column-start: auto;
  }

  .s1440\:first\:col-start-1:first-child{
    grid-column-start: 1;
  }

  .s1440\:first\:col-start-2:first-child{
    grid-column-start: 2;
  }

  .s1440\:first\:col-start-3:first-child{
    grid-column-start: 3;
  }

  .s1440\:first\:col-start-4:first-child{
    grid-column-start: 4;
  }

  .s1440\:first\:col-start-5:first-child{
    grid-column-start: 5;
  }

  .s1440\:first\:col-start-6:first-child{
    grid-column-start: 6;
  }

  .s1440\:first\:col-start-7:first-child{
    grid-column-start: 7;
  }

  .s1440\:first\:col-start-8:first-child{
    grid-column-start: 8;
  }

  .s1440\:first\:col-start-9:first-child{
    grid-column-start: 9;
  }

  .s1440\:first\:col-start-10:first-child{
    grid-column-start: 10;
  }

  .s1440\:first\:col-start-11:first-child{
    grid-column-start: 11;
  }

  .s1440\:first\:col-start-12:first-child{
    grid-column-start: 12;
  }

  .s1440\:first\:col-start-13:first-child{
    grid-column-start: 13;
  }

  .s1440\:first\:col-start-auto:first-child{
    grid-column-start: auto;
  }

  .s1440\:last\:col-start-1:last-child{
    grid-column-start: 1;
  }

  .s1440\:last\:col-start-2:last-child{
    grid-column-start: 2;
  }

  .s1440\:last\:col-start-3:last-child{
    grid-column-start: 3;
  }

  .s1440\:last\:col-start-4:last-child{
    grid-column-start: 4;
  }

  .s1440\:last\:col-start-5:last-child{
    grid-column-start: 5;
  }

  .s1440\:last\:col-start-6:last-child{
    grid-column-start: 6;
  }

  .s1440\:last\:col-start-7:last-child{
    grid-column-start: 7;
  }

  .s1440\:last\:col-start-8:last-child{
    grid-column-start: 8;
  }

  .s1440\:last\:col-start-9:last-child{
    grid-column-start: 9;
  }

  .s1440\:last\:col-start-10:last-child{
    grid-column-start: 10;
  }

  .s1440\:last\:col-start-11:last-child{
    grid-column-start: 11;
  }

  .s1440\:last\:col-start-12:last-child{
    grid-column-start: 12;
  }

  .s1440\:last\:col-start-13:last-child{
    grid-column-start: 13;
  }

  .s1440\:last\:col-start-auto:last-child{
    grid-column-start: auto;
  }

  .s1440\:col-end-1{
    grid-column-end: 1;
  }

  .s1440\:col-end-2{
    grid-column-end: 2;
  }

  .s1440\:col-end-3{
    grid-column-end: 3;
  }

  .s1440\:col-end-4{
    grid-column-end: 4;
  }

  .s1440\:col-end-5{
    grid-column-end: 5;
  }

  .s1440\:col-end-6{
    grid-column-end: 6;
  }

  .s1440\:col-end-7{
    grid-column-end: 7;
  }

  .s1440\:col-end-8{
    grid-column-end: 8;
  }

  .s1440\:col-end-9{
    grid-column-end: 9;
  }

  .s1440\:col-end-10{
    grid-column-end: 10;
  }

  .s1440\:col-end-11{
    grid-column-end: 11;
  }

  .s1440\:col-end-12{
    grid-column-end: 12;
  }

  .s1440\:col-end-13{
    grid-column-end: 13;
  }

  .s1440\:col-end-auto{
    grid-column-end: auto;
  }

  .s1440\:hover\:col-end-1:hover{
    grid-column-end: 1;
  }

  .s1440\:hover\:col-end-2:hover{
    grid-column-end: 2;
  }

  .s1440\:hover\:col-end-3:hover{
    grid-column-end: 3;
  }

  .s1440\:hover\:col-end-4:hover{
    grid-column-end: 4;
  }

  .s1440\:hover\:col-end-5:hover{
    grid-column-end: 5;
  }

  .s1440\:hover\:col-end-6:hover{
    grid-column-end: 6;
  }

  .s1440\:hover\:col-end-7:hover{
    grid-column-end: 7;
  }

  .s1440\:hover\:col-end-8:hover{
    grid-column-end: 8;
  }

  .s1440\:hover\:col-end-9:hover{
    grid-column-end: 9;
  }

  .s1440\:hover\:col-end-10:hover{
    grid-column-end: 10;
  }

  .s1440\:hover\:col-end-11:hover{
    grid-column-end: 11;
  }

  .s1440\:hover\:col-end-12:hover{
    grid-column-end: 12;
  }

  .s1440\:hover\:col-end-13:hover{
    grid-column-end: 13;
  }

  .s1440\:hover\:col-end-auto:hover{
    grid-column-end: auto;
  }

  .s1440\:focus\:col-end-1:focus{
    grid-column-end: 1;
  }

  .s1440\:focus\:col-end-2:focus{
    grid-column-end: 2;
  }

  .s1440\:focus\:col-end-3:focus{
    grid-column-end: 3;
  }

  .s1440\:focus\:col-end-4:focus{
    grid-column-end: 4;
  }

  .s1440\:focus\:col-end-5:focus{
    grid-column-end: 5;
  }

  .s1440\:focus\:col-end-6:focus{
    grid-column-end: 6;
  }

  .s1440\:focus\:col-end-7:focus{
    grid-column-end: 7;
  }

  .s1440\:focus\:col-end-8:focus{
    grid-column-end: 8;
  }

  .s1440\:focus\:col-end-9:focus{
    grid-column-end: 9;
  }

  .s1440\:focus\:col-end-10:focus{
    grid-column-end: 10;
  }

  .s1440\:focus\:col-end-11:focus{
    grid-column-end: 11;
  }

  .s1440\:focus\:col-end-12:focus{
    grid-column-end: 12;
  }

  .s1440\:focus\:col-end-13:focus{
    grid-column-end: 13;
  }

  .s1440\:focus\:col-end-auto:focus{
    grid-column-end: auto;
  }

  .s1440\:active\:col-end-1:active{
    grid-column-end: 1;
  }

  .s1440\:active\:col-end-2:active{
    grid-column-end: 2;
  }

  .s1440\:active\:col-end-3:active{
    grid-column-end: 3;
  }

  .s1440\:active\:col-end-4:active{
    grid-column-end: 4;
  }

  .s1440\:active\:col-end-5:active{
    grid-column-end: 5;
  }

  .s1440\:active\:col-end-6:active{
    grid-column-end: 6;
  }

  .s1440\:active\:col-end-7:active{
    grid-column-end: 7;
  }

  .s1440\:active\:col-end-8:active{
    grid-column-end: 8;
  }

  .s1440\:active\:col-end-9:active{
    grid-column-end: 9;
  }

  .s1440\:active\:col-end-10:active{
    grid-column-end: 10;
  }

  .s1440\:active\:col-end-11:active{
    grid-column-end: 11;
  }

  .s1440\:active\:col-end-12:active{
    grid-column-end: 12;
  }

  .s1440\:active\:col-end-13:active{
    grid-column-end: 13;
  }

  .s1440\:active\:col-end-auto:active{
    grid-column-end: auto;
  }

  .s1440\:first\:col-end-1:first-child{
    grid-column-end: 1;
  }

  .s1440\:first\:col-end-2:first-child{
    grid-column-end: 2;
  }

  .s1440\:first\:col-end-3:first-child{
    grid-column-end: 3;
  }

  .s1440\:first\:col-end-4:first-child{
    grid-column-end: 4;
  }

  .s1440\:first\:col-end-5:first-child{
    grid-column-end: 5;
  }

  .s1440\:first\:col-end-6:first-child{
    grid-column-end: 6;
  }

  .s1440\:first\:col-end-7:first-child{
    grid-column-end: 7;
  }

  .s1440\:first\:col-end-8:first-child{
    grid-column-end: 8;
  }

  .s1440\:first\:col-end-9:first-child{
    grid-column-end: 9;
  }

  .s1440\:first\:col-end-10:first-child{
    grid-column-end: 10;
  }

  .s1440\:first\:col-end-11:first-child{
    grid-column-end: 11;
  }

  .s1440\:first\:col-end-12:first-child{
    grid-column-end: 12;
  }

  .s1440\:first\:col-end-13:first-child{
    grid-column-end: 13;
  }

  .s1440\:first\:col-end-auto:first-child{
    grid-column-end: auto;
  }

  .s1440\:last\:col-end-1:last-child{
    grid-column-end: 1;
  }

  .s1440\:last\:col-end-2:last-child{
    grid-column-end: 2;
  }

  .s1440\:last\:col-end-3:last-child{
    grid-column-end: 3;
  }

  .s1440\:last\:col-end-4:last-child{
    grid-column-end: 4;
  }

  .s1440\:last\:col-end-5:last-child{
    grid-column-end: 5;
  }

  .s1440\:last\:col-end-6:last-child{
    grid-column-end: 6;
  }

  .s1440\:last\:col-end-7:last-child{
    grid-column-end: 7;
  }

  .s1440\:last\:col-end-8:last-child{
    grid-column-end: 8;
  }

  .s1440\:last\:col-end-9:last-child{
    grid-column-end: 9;
  }

  .s1440\:last\:col-end-10:last-child{
    grid-column-end: 10;
  }

  .s1440\:last\:col-end-11:last-child{
    grid-column-end: 11;
  }

  .s1440\:last\:col-end-12:last-child{
    grid-column-end: 12;
  }

  .s1440\:last\:col-end-13:last-child{
    grid-column-end: 13;
  }

  .s1440\:last\:col-end-auto:last-child{
    grid-column-end: auto;
  }

  .s1440\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1440\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1440\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1440\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1440\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1440\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1440\:grid-rows-none{
    grid-template-rows: none;
  }

  .s1440\:hover\:grid-rows-1:hover{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-rows-2:hover{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-rows-3:hover{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-rows-4:hover{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-rows-5:hover{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-rows-6:hover{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1440\:hover\:grid-rows-none:hover{
    grid-template-rows: none;
  }

  .s1440\:focus\:grid-rows-1:focus{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-rows-2:focus{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-rows-3:focus{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-rows-4:focus{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-rows-5:focus{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-rows-6:focus{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1440\:focus\:grid-rows-none:focus{
    grid-template-rows: none;
  }

  .s1440\:active\:grid-rows-1:active{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1440\:active\:grid-rows-2:active{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1440\:active\:grid-rows-3:active{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1440\:active\:grid-rows-4:active{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1440\:active\:grid-rows-5:active{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1440\:active\:grid-rows-6:active{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1440\:active\:grid-rows-none:active{
    grid-template-rows: none;
  }

  .s1440\:first\:grid-rows-1:first-child{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1440\:first\:grid-rows-2:first-child{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1440\:first\:grid-rows-3:first-child{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1440\:first\:grid-rows-4:first-child{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1440\:first\:grid-rows-5:first-child{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1440\:first\:grid-rows-6:first-child{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1440\:first\:grid-rows-none:first-child{
    grid-template-rows: none;
  }

  .s1440\:last\:grid-rows-1:last-child{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1440\:last\:grid-rows-2:last-child{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1440\:last\:grid-rows-3:last-child{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1440\:last\:grid-rows-4:last-child{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1440\:last\:grid-rows-5:last-child{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1440\:last\:grid-rows-6:last-child{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1440\:last\:grid-rows-none:last-child{
    grid-template-rows: none;
  }

  .s1440\:row-auto{
    grid-row: auto;
  }

  .s1440\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .s1440\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .s1440\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .s1440\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .s1440\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .s1440\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .s1440\:hover\:row-auto:hover{
    grid-row: auto;
  }

  .s1440\:hover\:row-span-1:hover{
    grid-row: span 1 / span 1;
  }

  .s1440\:hover\:row-span-2:hover{
    grid-row: span 2 / span 2;
  }

  .s1440\:hover\:row-span-3:hover{
    grid-row: span 3 / span 3;
  }

  .s1440\:hover\:row-span-4:hover{
    grid-row: span 4 / span 4;
  }

  .s1440\:hover\:row-span-5:hover{
    grid-row: span 5 / span 5;
  }

  .s1440\:hover\:row-span-6:hover{
    grid-row: span 6 / span 6;
  }

  .s1440\:focus\:row-auto:focus{
    grid-row: auto;
  }

  .s1440\:focus\:row-span-1:focus{
    grid-row: span 1 / span 1;
  }

  .s1440\:focus\:row-span-2:focus{
    grid-row: span 2 / span 2;
  }

  .s1440\:focus\:row-span-3:focus{
    grid-row: span 3 / span 3;
  }

  .s1440\:focus\:row-span-4:focus{
    grid-row: span 4 / span 4;
  }

  .s1440\:focus\:row-span-5:focus{
    grid-row: span 5 / span 5;
  }

  .s1440\:focus\:row-span-6:focus{
    grid-row: span 6 / span 6;
  }

  .s1440\:active\:row-auto:active{
    grid-row: auto;
  }

  .s1440\:active\:row-span-1:active{
    grid-row: span 1 / span 1;
  }

  .s1440\:active\:row-span-2:active{
    grid-row: span 2 / span 2;
  }

  .s1440\:active\:row-span-3:active{
    grid-row: span 3 / span 3;
  }

  .s1440\:active\:row-span-4:active{
    grid-row: span 4 / span 4;
  }

  .s1440\:active\:row-span-5:active{
    grid-row: span 5 / span 5;
  }

  .s1440\:active\:row-span-6:active{
    grid-row: span 6 / span 6;
  }

  .s1440\:first\:row-auto:first-child{
    grid-row: auto;
  }

  .s1440\:first\:row-span-1:first-child{
    grid-row: span 1 / span 1;
  }

  .s1440\:first\:row-span-2:first-child{
    grid-row: span 2 / span 2;
  }

  .s1440\:first\:row-span-3:first-child{
    grid-row: span 3 / span 3;
  }

  .s1440\:first\:row-span-4:first-child{
    grid-row: span 4 / span 4;
  }

  .s1440\:first\:row-span-5:first-child{
    grid-row: span 5 / span 5;
  }

  .s1440\:first\:row-span-6:first-child{
    grid-row: span 6 / span 6;
  }

  .s1440\:last\:row-auto:last-child{
    grid-row: auto;
  }

  .s1440\:last\:row-span-1:last-child{
    grid-row: span 1 / span 1;
  }

  .s1440\:last\:row-span-2:last-child{
    grid-row: span 2 / span 2;
  }

  .s1440\:last\:row-span-3:last-child{
    grid-row: span 3 / span 3;
  }

  .s1440\:last\:row-span-4:last-child{
    grid-row: span 4 / span 4;
  }

  .s1440\:last\:row-span-5:last-child{
    grid-row: span 5 / span 5;
  }

  .s1440\:last\:row-span-6:last-child{
    grid-row: span 6 / span 6;
  }

  .s1440\:row-start-1{
    grid-row-start: 1;
  }

  .s1440\:row-start-2{
    grid-row-start: 2;
  }

  .s1440\:row-start-3{
    grid-row-start: 3;
  }

  .s1440\:row-start-4{
    grid-row-start: 4;
  }

  .s1440\:row-start-5{
    grid-row-start: 5;
  }

  .s1440\:row-start-6{
    grid-row-start: 6;
  }

  .s1440\:row-start-7{
    grid-row-start: 7;
  }

  .s1440\:row-start-auto{
    grid-row-start: auto;
  }

  .s1440\:hover\:row-start-1:hover{
    grid-row-start: 1;
  }

  .s1440\:hover\:row-start-2:hover{
    grid-row-start: 2;
  }

  .s1440\:hover\:row-start-3:hover{
    grid-row-start: 3;
  }

  .s1440\:hover\:row-start-4:hover{
    grid-row-start: 4;
  }

  .s1440\:hover\:row-start-5:hover{
    grid-row-start: 5;
  }

  .s1440\:hover\:row-start-6:hover{
    grid-row-start: 6;
  }

  .s1440\:hover\:row-start-7:hover{
    grid-row-start: 7;
  }

  .s1440\:hover\:row-start-auto:hover{
    grid-row-start: auto;
  }

  .s1440\:focus\:row-start-1:focus{
    grid-row-start: 1;
  }

  .s1440\:focus\:row-start-2:focus{
    grid-row-start: 2;
  }

  .s1440\:focus\:row-start-3:focus{
    grid-row-start: 3;
  }

  .s1440\:focus\:row-start-4:focus{
    grid-row-start: 4;
  }

  .s1440\:focus\:row-start-5:focus{
    grid-row-start: 5;
  }

  .s1440\:focus\:row-start-6:focus{
    grid-row-start: 6;
  }

  .s1440\:focus\:row-start-7:focus{
    grid-row-start: 7;
  }

  .s1440\:focus\:row-start-auto:focus{
    grid-row-start: auto;
  }

  .s1440\:active\:row-start-1:active{
    grid-row-start: 1;
  }

  .s1440\:active\:row-start-2:active{
    grid-row-start: 2;
  }

  .s1440\:active\:row-start-3:active{
    grid-row-start: 3;
  }

  .s1440\:active\:row-start-4:active{
    grid-row-start: 4;
  }

  .s1440\:active\:row-start-5:active{
    grid-row-start: 5;
  }

  .s1440\:active\:row-start-6:active{
    grid-row-start: 6;
  }

  .s1440\:active\:row-start-7:active{
    grid-row-start: 7;
  }

  .s1440\:active\:row-start-auto:active{
    grid-row-start: auto;
  }

  .s1440\:first\:row-start-1:first-child{
    grid-row-start: 1;
  }

  .s1440\:first\:row-start-2:first-child{
    grid-row-start: 2;
  }

  .s1440\:first\:row-start-3:first-child{
    grid-row-start: 3;
  }

  .s1440\:first\:row-start-4:first-child{
    grid-row-start: 4;
  }

  .s1440\:first\:row-start-5:first-child{
    grid-row-start: 5;
  }

  .s1440\:first\:row-start-6:first-child{
    grid-row-start: 6;
  }

  .s1440\:first\:row-start-7:first-child{
    grid-row-start: 7;
  }

  .s1440\:first\:row-start-auto:first-child{
    grid-row-start: auto;
  }

  .s1440\:last\:row-start-1:last-child{
    grid-row-start: 1;
  }

  .s1440\:last\:row-start-2:last-child{
    grid-row-start: 2;
  }

  .s1440\:last\:row-start-3:last-child{
    grid-row-start: 3;
  }

  .s1440\:last\:row-start-4:last-child{
    grid-row-start: 4;
  }

  .s1440\:last\:row-start-5:last-child{
    grid-row-start: 5;
  }

  .s1440\:last\:row-start-6:last-child{
    grid-row-start: 6;
  }

  .s1440\:last\:row-start-7:last-child{
    grid-row-start: 7;
  }

  .s1440\:last\:row-start-auto:last-child{
    grid-row-start: auto;
  }

  .s1440\:row-end-1{
    grid-row-end: 1;
  }

  .s1440\:row-end-2{
    grid-row-end: 2;
  }

  .s1440\:row-end-3{
    grid-row-end: 3;
  }

  .s1440\:row-end-4{
    grid-row-end: 4;
  }

  .s1440\:row-end-5{
    grid-row-end: 5;
  }

  .s1440\:row-end-6{
    grid-row-end: 6;
  }

  .s1440\:row-end-7{
    grid-row-end: 7;
  }

  .s1440\:row-end-auto{
    grid-row-end: auto;
  }

  .s1440\:hover\:row-end-1:hover{
    grid-row-end: 1;
  }

  .s1440\:hover\:row-end-2:hover{
    grid-row-end: 2;
  }

  .s1440\:hover\:row-end-3:hover{
    grid-row-end: 3;
  }

  .s1440\:hover\:row-end-4:hover{
    grid-row-end: 4;
  }

  .s1440\:hover\:row-end-5:hover{
    grid-row-end: 5;
  }

  .s1440\:hover\:row-end-6:hover{
    grid-row-end: 6;
  }

  .s1440\:hover\:row-end-7:hover{
    grid-row-end: 7;
  }

  .s1440\:hover\:row-end-auto:hover{
    grid-row-end: auto;
  }

  .s1440\:focus\:row-end-1:focus{
    grid-row-end: 1;
  }

  .s1440\:focus\:row-end-2:focus{
    grid-row-end: 2;
  }

  .s1440\:focus\:row-end-3:focus{
    grid-row-end: 3;
  }

  .s1440\:focus\:row-end-4:focus{
    grid-row-end: 4;
  }

  .s1440\:focus\:row-end-5:focus{
    grid-row-end: 5;
  }

  .s1440\:focus\:row-end-6:focus{
    grid-row-end: 6;
  }

  .s1440\:focus\:row-end-7:focus{
    grid-row-end: 7;
  }

  .s1440\:focus\:row-end-auto:focus{
    grid-row-end: auto;
  }

  .s1440\:active\:row-end-1:active{
    grid-row-end: 1;
  }

  .s1440\:active\:row-end-2:active{
    grid-row-end: 2;
  }

  .s1440\:active\:row-end-3:active{
    grid-row-end: 3;
  }

  .s1440\:active\:row-end-4:active{
    grid-row-end: 4;
  }

  .s1440\:active\:row-end-5:active{
    grid-row-end: 5;
  }

  .s1440\:active\:row-end-6:active{
    grid-row-end: 6;
  }

  .s1440\:active\:row-end-7:active{
    grid-row-end: 7;
  }

  .s1440\:active\:row-end-auto:active{
    grid-row-end: auto;
  }

  .s1440\:first\:row-end-1:first-child{
    grid-row-end: 1;
  }

  .s1440\:first\:row-end-2:first-child{
    grid-row-end: 2;
  }

  .s1440\:first\:row-end-3:first-child{
    grid-row-end: 3;
  }

  .s1440\:first\:row-end-4:first-child{
    grid-row-end: 4;
  }

  .s1440\:first\:row-end-5:first-child{
    grid-row-end: 5;
  }

  .s1440\:first\:row-end-6:first-child{
    grid-row-end: 6;
  }

  .s1440\:first\:row-end-7:first-child{
    grid-row-end: 7;
  }

  .s1440\:first\:row-end-auto:first-child{
    grid-row-end: auto;
  }

  .s1440\:last\:row-end-1:last-child{
    grid-row-end: 1;
  }

  .s1440\:last\:row-end-2:last-child{
    grid-row-end: 2;
  }

  .s1440\:last\:row-end-3:last-child{
    grid-row-end: 3;
  }

  .s1440\:last\:row-end-4:last-child{
    grid-row-end: 4;
  }

  .s1440\:last\:row-end-5:last-child{
    grid-row-end: 5;
  }

  .s1440\:last\:row-end-6:last-child{
    grid-row-end: 6;
  }

  .s1440\:last\:row-end-7:last-child{
    grid-row-end: 7;
  }

  .s1440\:last\:row-end-auto:last-child{
    grid-row-end: auto;
  }

  .s1440\:transform{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1440\:transform-none{
    transform: none;
  }

  .s1440\:hover\:transform:hover{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1440\:hover\:transform-none:hover{
    transform: none;
  }

  .s1440\:focus\:transform:focus{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1440\:focus\:transform-none:focus{
    transform: none;
  }

  .s1440\:active\:transform:active{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1440\:active\:transform-none:active{
    transform: none;
  }

  .s1440\:first\:transform:first-child{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1440\:first\:transform-none:first-child{
    transform: none;
  }

  .s1440\:last\:transform:last-child{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1440\:last\:transform-none:last-child{
    transform: none;
  }

  .s1440\:origin-center{
    transform-origin: center;
  }

  .s1440\:origin-top{
    transform-origin: top;
  }

  .s1440\:origin-top-right{
    transform-origin: top right;
  }

  .s1440\:origin-right{
    transform-origin: right;
  }

  .s1440\:origin-bottom-right{
    transform-origin: bottom right;
  }

  .s1440\:origin-bottom{
    transform-origin: bottom;
  }

  .s1440\:origin-bottom-left{
    transform-origin: bottom left;
  }

  .s1440\:origin-left{
    transform-origin: left;
  }

  .s1440\:origin-top-left{
    transform-origin: top left;
  }

  .s1440\:hover\:origin-center:hover{
    transform-origin: center;
  }

  .s1440\:hover\:origin-top:hover{
    transform-origin: top;
  }

  .s1440\:hover\:origin-top-right:hover{
    transform-origin: top right;
  }

  .s1440\:hover\:origin-right:hover{
    transform-origin: right;
  }

  .s1440\:hover\:origin-bottom-right:hover{
    transform-origin: bottom right;
  }

  .s1440\:hover\:origin-bottom:hover{
    transform-origin: bottom;
  }

  .s1440\:hover\:origin-bottom-left:hover{
    transform-origin: bottom left;
  }

  .s1440\:hover\:origin-left:hover{
    transform-origin: left;
  }

  .s1440\:hover\:origin-top-left:hover{
    transform-origin: top left;
  }

  .s1440\:focus\:origin-center:focus{
    transform-origin: center;
  }

  .s1440\:focus\:origin-top:focus{
    transform-origin: top;
  }

  .s1440\:focus\:origin-top-right:focus{
    transform-origin: top right;
  }

  .s1440\:focus\:origin-right:focus{
    transform-origin: right;
  }

  .s1440\:focus\:origin-bottom-right:focus{
    transform-origin: bottom right;
  }

  .s1440\:focus\:origin-bottom:focus{
    transform-origin: bottom;
  }

  .s1440\:focus\:origin-bottom-left:focus{
    transform-origin: bottom left;
  }

  .s1440\:focus\:origin-left:focus{
    transform-origin: left;
  }

  .s1440\:focus\:origin-top-left:focus{
    transform-origin: top left;
  }

  .s1440\:active\:origin-center:active{
    transform-origin: center;
  }

  .s1440\:active\:origin-top:active{
    transform-origin: top;
  }

  .s1440\:active\:origin-top-right:active{
    transform-origin: top right;
  }

  .s1440\:active\:origin-right:active{
    transform-origin: right;
  }

  .s1440\:active\:origin-bottom-right:active{
    transform-origin: bottom right;
  }

  .s1440\:active\:origin-bottom:active{
    transform-origin: bottom;
  }

  .s1440\:active\:origin-bottom-left:active{
    transform-origin: bottom left;
  }

  .s1440\:active\:origin-left:active{
    transform-origin: left;
  }

  .s1440\:active\:origin-top-left:active{
    transform-origin: top left;
  }

  .s1440\:first\:origin-center:first-child{
    transform-origin: center;
  }

  .s1440\:first\:origin-top:first-child{
    transform-origin: top;
  }

  .s1440\:first\:origin-top-right:first-child{
    transform-origin: top right;
  }

  .s1440\:first\:origin-right:first-child{
    transform-origin: right;
  }

  .s1440\:first\:origin-bottom-right:first-child{
    transform-origin: bottom right;
  }

  .s1440\:first\:origin-bottom:first-child{
    transform-origin: bottom;
  }

  .s1440\:first\:origin-bottom-left:first-child{
    transform-origin: bottom left;
  }

  .s1440\:first\:origin-left:first-child{
    transform-origin: left;
  }

  .s1440\:first\:origin-top-left:first-child{
    transform-origin: top left;
  }

  .s1440\:last\:origin-center:last-child{
    transform-origin: center;
  }

  .s1440\:last\:origin-top:last-child{
    transform-origin: top;
  }

  .s1440\:last\:origin-top-right:last-child{
    transform-origin: top right;
  }

  .s1440\:last\:origin-right:last-child{
    transform-origin: right;
  }

  .s1440\:last\:origin-bottom-right:last-child{
    transform-origin: bottom right;
  }

  .s1440\:last\:origin-bottom:last-child{
    transform-origin: bottom;
  }

  .s1440\:last\:origin-bottom-left:last-child{
    transform-origin: bottom left;
  }

  .s1440\:last\:origin-left:last-child{
    transform-origin: left;
  }

  .s1440\:last\:origin-top-left:last-child{
    transform-origin: top left;
  }

  .s1440\:scale-0{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1440\:scale-50{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1440\:scale-75{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1440\:scale-90{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1440\:scale-95{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1440\:scale-100{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1440\:scale-105{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1440\:scale-110{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1440\:scale-125{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1440\:scale-150{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1440\:scale-x-0{
    --transform-scale-x: 0;
  }

  .s1440\:scale-x-50{
    --transform-scale-x: .5;
  }

  .s1440\:scale-x-75{
    --transform-scale-x: .75;
  }

  .s1440\:scale-x-90{
    --transform-scale-x: .9;
  }

  .s1440\:scale-x-95{
    --transform-scale-x: .95;
  }

  .s1440\:scale-x-100{
    --transform-scale-x: 1;
  }

  .s1440\:scale-x-105{
    --transform-scale-x: 1.05;
  }

  .s1440\:scale-x-110{
    --transform-scale-x: 1.1;
  }

  .s1440\:scale-x-125{
    --transform-scale-x: 1.25;
  }

  .s1440\:scale-x-150{
    --transform-scale-x: 1.5;
  }

  .s1440\:scale-y-0{
    --transform-scale-y: 0;
  }

  .s1440\:scale-y-50{
    --transform-scale-y: .5;
  }

  .s1440\:scale-y-75{
    --transform-scale-y: .75;
  }

  .s1440\:scale-y-90{
    --transform-scale-y: .9;
  }

  .s1440\:scale-y-95{
    --transform-scale-y: .95;
  }

  .s1440\:scale-y-100{
    --transform-scale-y: 1;
  }

  .s1440\:scale-y-105{
    --transform-scale-y: 1.05;
  }

  .s1440\:scale-y-110{
    --transform-scale-y: 1.1;
  }

  .s1440\:scale-y-125{
    --transform-scale-y: 1.25;
  }

  .s1440\:scale-y-150{
    --transform-scale-y: 1.5;
  }

  .s1440\:hover\:scale-0:hover{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1440\:hover\:scale-50:hover{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1440\:hover\:scale-75:hover{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1440\:hover\:scale-90:hover{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1440\:hover\:scale-95:hover{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1440\:hover\:scale-100:hover{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1440\:hover\:scale-105:hover{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1440\:hover\:scale-110:hover{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1440\:hover\:scale-125:hover{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1440\:hover\:scale-150:hover{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1440\:hover\:scale-x-0:hover{
    --transform-scale-x: 0;
  }

  .s1440\:hover\:scale-x-50:hover{
    --transform-scale-x: .5;
  }

  .s1440\:hover\:scale-x-75:hover{
    --transform-scale-x: .75;
  }

  .s1440\:hover\:scale-x-90:hover{
    --transform-scale-x: .9;
  }

  .s1440\:hover\:scale-x-95:hover{
    --transform-scale-x: .95;
  }

  .s1440\:hover\:scale-x-100:hover{
    --transform-scale-x: 1;
  }

  .s1440\:hover\:scale-x-105:hover{
    --transform-scale-x: 1.05;
  }

  .s1440\:hover\:scale-x-110:hover{
    --transform-scale-x: 1.1;
  }

  .s1440\:hover\:scale-x-125:hover{
    --transform-scale-x: 1.25;
  }

  .s1440\:hover\:scale-x-150:hover{
    --transform-scale-x: 1.5;
  }

  .s1440\:hover\:scale-y-0:hover{
    --transform-scale-y: 0;
  }

  .s1440\:hover\:scale-y-50:hover{
    --transform-scale-y: .5;
  }

  .s1440\:hover\:scale-y-75:hover{
    --transform-scale-y: .75;
  }

  .s1440\:hover\:scale-y-90:hover{
    --transform-scale-y: .9;
  }

  .s1440\:hover\:scale-y-95:hover{
    --transform-scale-y: .95;
  }

  .s1440\:hover\:scale-y-100:hover{
    --transform-scale-y: 1;
  }

  .s1440\:hover\:scale-y-105:hover{
    --transform-scale-y: 1.05;
  }

  .s1440\:hover\:scale-y-110:hover{
    --transform-scale-y: 1.1;
  }

  .s1440\:hover\:scale-y-125:hover{
    --transform-scale-y: 1.25;
  }

  .s1440\:hover\:scale-y-150:hover{
    --transform-scale-y: 1.5;
  }

  .s1440\:focus\:scale-0:focus{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1440\:focus\:scale-50:focus{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1440\:focus\:scale-75:focus{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1440\:focus\:scale-90:focus{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1440\:focus\:scale-95:focus{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1440\:focus\:scale-100:focus{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1440\:focus\:scale-105:focus{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1440\:focus\:scale-110:focus{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1440\:focus\:scale-125:focus{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1440\:focus\:scale-150:focus{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1440\:focus\:scale-x-0:focus{
    --transform-scale-x: 0;
  }

  .s1440\:focus\:scale-x-50:focus{
    --transform-scale-x: .5;
  }

  .s1440\:focus\:scale-x-75:focus{
    --transform-scale-x: .75;
  }

  .s1440\:focus\:scale-x-90:focus{
    --transform-scale-x: .9;
  }

  .s1440\:focus\:scale-x-95:focus{
    --transform-scale-x: .95;
  }

  .s1440\:focus\:scale-x-100:focus{
    --transform-scale-x: 1;
  }

  .s1440\:focus\:scale-x-105:focus{
    --transform-scale-x: 1.05;
  }

  .s1440\:focus\:scale-x-110:focus{
    --transform-scale-x: 1.1;
  }

  .s1440\:focus\:scale-x-125:focus{
    --transform-scale-x: 1.25;
  }

  .s1440\:focus\:scale-x-150:focus{
    --transform-scale-x: 1.5;
  }

  .s1440\:focus\:scale-y-0:focus{
    --transform-scale-y: 0;
  }

  .s1440\:focus\:scale-y-50:focus{
    --transform-scale-y: .5;
  }

  .s1440\:focus\:scale-y-75:focus{
    --transform-scale-y: .75;
  }

  .s1440\:focus\:scale-y-90:focus{
    --transform-scale-y: .9;
  }

  .s1440\:focus\:scale-y-95:focus{
    --transform-scale-y: .95;
  }

  .s1440\:focus\:scale-y-100:focus{
    --transform-scale-y: 1;
  }

  .s1440\:focus\:scale-y-105:focus{
    --transform-scale-y: 1.05;
  }

  .s1440\:focus\:scale-y-110:focus{
    --transform-scale-y: 1.1;
  }

  .s1440\:focus\:scale-y-125:focus{
    --transform-scale-y: 1.25;
  }

  .s1440\:focus\:scale-y-150:focus{
    --transform-scale-y: 1.5;
  }

  .s1440\:active\:scale-0:active{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1440\:active\:scale-50:active{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1440\:active\:scale-75:active{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1440\:active\:scale-90:active{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1440\:active\:scale-95:active{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1440\:active\:scale-100:active{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1440\:active\:scale-105:active{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1440\:active\:scale-110:active{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1440\:active\:scale-125:active{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1440\:active\:scale-150:active{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1440\:active\:scale-x-0:active{
    --transform-scale-x: 0;
  }

  .s1440\:active\:scale-x-50:active{
    --transform-scale-x: .5;
  }

  .s1440\:active\:scale-x-75:active{
    --transform-scale-x: .75;
  }

  .s1440\:active\:scale-x-90:active{
    --transform-scale-x: .9;
  }

  .s1440\:active\:scale-x-95:active{
    --transform-scale-x: .95;
  }

  .s1440\:active\:scale-x-100:active{
    --transform-scale-x: 1;
  }

  .s1440\:active\:scale-x-105:active{
    --transform-scale-x: 1.05;
  }

  .s1440\:active\:scale-x-110:active{
    --transform-scale-x: 1.1;
  }

  .s1440\:active\:scale-x-125:active{
    --transform-scale-x: 1.25;
  }

  .s1440\:active\:scale-x-150:active{
    --transform-scale-x: 1.5;
  }

  .s1440\:active\:scale-y-0:active{
    --transform-scale-y: 0;
  }

  .s1440\:active\:scale-y-50:active{
    --transform-scale-y: .5;
  }

  .s1440\:active\:scale-y-75:active{
    --transform-scale-y: .75;
  }

  .s1440\:active\:scale-y-90:active{
    --transform-scale-y: .9;
  }

  .s1440\:active\:scale-y-95:active{
    --transform-scale-y: .95;
  }

  .s1440\:active\:scale-y-100:active{
    --transform-scale-y: 1;
  }

  .s1440\:active\:scale-y-105:active{
    --transform-scale-y: 1.05;
  }

  .s1440\:active\:scale-y-110:active{
    --transform-scale-y: 1.1;
  }

  .s1440\:active\:scale-y-125:active{
    --transform-scale-y: 1.25;
  }

  .s1440\:active\:scale-y-150:active{
    --transform-scale-y: 1.5;
  }

  .s1440\:first\:scale-0:first-child{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1440\:first\:scale-50:first-child{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1440\:first\:scale-75:first-child{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1440\:first\:scale-90:first-child{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1440\:first\:scale-95:first-child{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1440\:first\:scale-100:first-child{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1440\:first\:scale-105:first-child{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1440\:first\:scale-110:first-child{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1440\:first\:scale-125:first-child{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1440\:first\:scale-150:first-child{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1440\:first\:scale-x-0:first-child{
    --transform-scale-x: 0;
  }

  .s1440\:first\:scale-x-50:first-child{
    --transform-scale-x: .5;
  }

  .s1440\:first\:scale-x-75:first-child{
    --transform-scale-x: .75;
  }

  .s1440\:first\:scale-x-90:first-child{
    --transform-scale-x: .9;
  }

  .s1440\:first\:scale-x-95:first-child{
    --transform-scale-x: .95;
  }

  .s1440\:first\:scale-x-100:first-child{
    --transform-scale-x: 1;
  }

  .s1440\:first\:scale-x-105:first-child{
    --transform-scale-x: 1.05;
  }

  .s1440\:first\:scale-x-110:first-child{
    --transform-scale-x: 1.1;
  }

  .s1440\:first\:scale-x-125:first-child{
    --transform-scale-x: 1.25;
  }

  .s1440\:first\:scale-x-150:first-child{
    --transform-scale-x: 1.5;
  }

  .s1440\:first\:scale-y-0:first-child{
    --transform-scale-y: 0;
  }

  .s1440\:first\:scale-y-50:first-child{
    --transform-scale-y: .5;
  }

  .s1440\:first\:scale-y-75:first-child{
    --transform-scale-y: .75;
  }

  .s1440\:first\:scale-y-90:first-child{
    --transform-scale-y: .9;
  }

  .s1440\:first\:scale-y-95:first-child{
    --transform-scale-y: .95;
  }

  .s1440\:first\:scale-y-100:first-child{
    --transform-scale-y: 1;
  }

  .s1440\:first\:scale-y-105:first-child{
    --transform-scale-y: 1.05;
  }

  .s1440\:first\:scale-y-110:first-child{
    --transform-scale-y: 1.1;
  }

  .s1440\:first\:scale-y-125:first-child{
    --transform-scale-y: 1.25;
  }

  .s1440\:first\:scale-y-150:first-child{
    --transform-scale-y: 1.5;
  }

  .s1440\:last\:scale-0:last-child{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1440\:last\:scale-50:last-child{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1440\:last\:scale-75:last-child{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1440\:last\:scale-90:last-child{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1440\:last\:scale-95:last-child{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1440\:last\:scale-100:last-child{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1440\:last\:scale-105:last-child{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1440\:last\:scale-110:last-child{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1440\:last\:scale-125:last-child{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1440\:last\:scale-150:last-child{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1440\:last\:scale-x-0:last-child{
    --transform-scale-x: 0;
  }

  .s1440\:last\:scale-x-50:last-child{
    --transform-scale-x: .5;
  }

  .s1440\:last\:scale-x-75:last-child{
    --transform-scale-x: .75;
  }

  .s1440\:last\:scale-x-90:last-child{
    --transform-scale-x: .9;
  }

  .s1440\:last\:scale-x-95:last-child{
    --transform-scale-x: .95;
  }

  .s1440\:last\:scale-x-100:last-child{
    --transform-scale-x: 1;
  }

  .s1440\:last\:scale-x-105:last-child{
    --transform-scale-x: 1.05;
  }

  .s1440\:last\:scale-x-110:last-child{
    --transform-scale-x: 1.1;
  }

  .s1440\:last\:scale-x-125:last-child{
    --transform-scale-x: 1.25;
  }

  .s1440\:last\:scale-x-150:last-child{
    --transform-scale-x: 1.5;
  }

  .s1440\:last\:scale-y-0:last-child{
    --transform-scale-y: 0;
  }

  .s1440\:last\:scale-y-50:last-child{
    --transform-scale-y: .5;
  }

  .s1440\:last\:scale-y-75:last-child{
    --transform-scale-y: .75;
  }

  .s1440\:last\:scale-y-90:last-child{
    --transform-scale-y: .9;
  }

  .s1440\:last\:scale-y-95:last-child{
    --transform-scale-y: .95;
  }

  .s1440\:last\:scale-y-100:last-child{
    --transform-scale-y: 1;
  }

  .s1440\:last\:scale-y-105:last-child{
    --transform-scale-y: 1.05;
  }

  .s1440\:last\:scale-y-110:last-child{
    --transform-scale-y: 1.1;
  }

  .s1440\:last\:scale-y-125:last-child{
    --transform-scale-y: 1.25;
  }

  .s1440\:last\:scale-y-150:last-child{
    --transform-scale-y: 1.5;
  }

  .s1440\:rotate-0{
    --transform-rotate: 0;
  }

  .s1440\:rotate-45{
    --transform-rotate: 45deg;
  }

  .s1440\:rotate-90{
    --transform-rotate: 90deg;
  }

  .s1440\:rotate-180{
    --transform-rotate: 180deg;
  }

  .s1440\:-rotate-180{
    --transform-rotate: -180deg;
  }

  .s1440\:-rotate-90{
    --transform-rotate: -90deg;
  }

  .s1440\:-rotate-45{
    --transform-rotate: -45deg;
  }

  .s1440\:hover\:rotate-0:hover{
    --transform-rotate: 0;
  }

  .s1440\:hover\:rotate-45:hover{
    --transform-rotate: 45deg;
  }

  .s1440\:hover\:rotate-90:hover{
    --transform-rotate: 90deg;
  }

  .s1440\:hover\:rotate-180:hover{
    --transform-rotate: 180deg;
  }

  .s1440\:hover\:-rotate-180:hover{
    --transform-rotate: -180deg;
  }

  .s1440\:hover\:-rotate-90:hover{
    --transform-rotate: -90deg;
  }

  .s1440\:hover\:-rotate-45:hover{
    --transform-rotate: -45deg;
  }

  .s1440\:focus\:rotate-0:focus{
    --transform-rotate: 0;
  }

  .s1440\:focus\:rotate-45:focus{
    --transform-rotate: 45deg;
  }

  .s1440\:focus\:rotate-90:focus{
    --transform-rotate: 90deg;
  }

  .s1440\:focus\:rotate-180:focus{
    --transform-rotate: 180deg;
  }

  .s1440\:focus\:-rotate-180:focus{
    --transform-rotate: -180deg;
  }

  .s1440\:focus\:-rotate-90:focus{
    --transform-rotate: -90deg;
  }

  .s1440\:focus\:-rotate-45:focus{
    --transform-rotate: -45deg;
  }

  .s1440\:active\:rotate-0:active{
    --transform-rotate: 0;
  }

  .s1440\:active\:rotate-45:active{
    --transform-rotate: 45deg;
  }

  .s1440\:active\:rotate-90:active{
    --transform-rotate: 90deg;
  }

  .s1440\:active\:rotate-180:active{
    --transform-rotate: 180deg;
  }

  .s1440\:active\:-rotate-180:active{
    --transform-rotate: -180deg;
  }

  .s1440\:active\:-rotate-90:active{
    --transform-rotate: -90deg;
  }

  .s1440\:active\:-rotate-45:active{
    --transform-rotate: -45deg;
  }

  .s1440\:first\:rotate-0:first-child{
    --transform-rotate: 0;
  }

  .s1440\:first\:rotate-45:first-child{
    --transform-rotate: 45deg;
  }

  .s1440\:first\:rotate-90:first-child{
    --transform-rotate: 90deg;
  }

  .s1440\:first\:rotate-180:first-child{
    --transform-rotate: 180deg;
  }

  .s1440\:first\:-rotate-180:first-child{
    --transform-rotate: -180deg;
  }

  .s1440\:first\:-rotate-90:first-child{
    --transform-rotate: -90deg;
  }

  .s1440\:first\:-rotate-45:first-child{
    --transform-rotate: -45deg;
  }

  .s1440\:last\:rotate-0:last-child{
    --transform-rotate: 0;
  }

  .s1440\:last\:rotate-45:last-child{
    --transform-rotate: 45deg;
  }

  .s1440\:last\:rotate-90:last-child{
    --transform-rotate: 90deg;
  }

  .s1440\:last\:rotate-180:last-child{
    --transform-rotate: 180deg;
  }

  .s1440\:last\:-rotate-180:last-child{
    --transform-rotate: -180deg;
  }

  .s1440\:last\:-rotate-90:last-child{
    --transform-rotate: -90deg;
  }

  .s1440\:last\:-rotate-45:last-child{
    --transform-rotate: -45deg;
  }

  .s1440\:translate-x-0{
    --transform-translate-x: 0;
  }

  .s1440\:translate-x-1{
    --transform-translate-x: 0.25rem;
  }

  .s1440\:translate-x-2{
    --transform-translate-x: 0.5rem;
  }

  .s1440\:translate-x-3{
    --transform-translate-x: 0.75rem;
  }

  .s1440\:translate-x-4{
    --transform-translate-x: 1rem;
  }

  .s1440\:translate-x-5{
    --transform-translate-x: 1.25rem;
  }

  .s1440\:translate-x-6{
    --transform-translate-x: 1.5rem;
  }

  .s1440\:translate-x-8{
    --transform-translate-x: 2rem;
  }

  .s1440\:translate-x-10{
    --transform-translate-x: 2.5rem;
  }

  .s1440\:translate-x-12{
    --transform-translate-x: 3rem;
  }

  .s1440\:translate-x-14{
    --transform-translate-x: 3.5rem;
  }

  .s1440\:translate-x-16{
    --transform-translate-x: 4rem;
  }

  .s1440\:translate-x-20{
    --transform-translate-x: 5rem;
  }

  .s1440\:translate-x-24{
    --transform-translate-x: 6rem;
  }

  .s1440\:translate-x-32{
    --transform-translate-x: 8rem;
  }

  .s1440\:translate-x-40{
    --transform-translate-x: 10rem;
  }

  .s1440\:translate-x-48{
    --transform-translate-x: 12rem;
  }

  .s1440\:translate-x-56{
    --transform-translate-x: 14rem;
  }

  .s1440\:translate-x-64{
    --transform-translate-x: 16rem;
  }

  .s1440\:translate-x-px{
    --transform-translate-x: 1px;
  }

  .s1440\:-translate-x-1{
    --transform-translate-x: -0.25rem;
  }

  .s1440\:-translate-x-2{
    --transform-translate-x: -0.5rem;
  }

  .s1440\:-translate-x-3{
    --transform-translate-x: -0.75rem;
  }

  .s1440\:-translate-x-4{
    --transform-translate-x: -1rem;
  }

  .s1440\:-translate-x-5{
    --transform-translate-x: -1.25rem;
  }

  .s1440\:-translate-x-6{
    --transform-translate-x: -1.5rem;
  }

  .s1440\:-translate-x-8{
    --transform-translate-x: -2rem;
  }

  .s1440\:-translate-x-10{
    --transform-translate-x: -2.5rem;
  }

  .s1440\:-translate-x-12{
    --transform-translate-x: -3rem;
  }

  .s1440\:-translate-x-14{
    --transform-translate-x: -3.5rem;
  }

  .s1440\:-translate-x-16{
    --transform-translate-x: -4rem;
  }

  .s1440\:-translate-x-20{
    --transform-translate-x: -5rem;
  }

  .s1440\:-translate-x-24{
    --transform-translate-x: -6rem;
  }

  .s1440\:-translate-x-32{
    --transform-translate-x: -8rem;
  }

  .s1440\:-translate-x-40{
    --transform-translate-x: -10rem;
  }

  .s1440\:-translate-x-48{
    --transform-translate-x: -12rem;
  }

  .s1440\:-translate-x-56{
    --transform-translate-x: -14rem;
  }

  .s1440\:-translate-x-64{
    --transform-translate-x: -16rem;
  }

  .s1440\:-translate-x-px{
    --transform-translate-x: -1px;
  }

  .s1440\:-translate-x-full{
    --transform-translate-x: -100%;
  }

  .s1440\:-translate-x-1\/2{
    --transform-translate-x: -50%;
  }

  .s1440\:translate-x-1\/2{
    --transform-translate-x: 50%;
  }

  .s1440\:translate-x-full{
    --transform-translate-x: 100%;
  }

  .s1440\:translate-y-0{
    --transform-translate-y: 0;
  }

  .s1440\:translate-y-1{
    --transform-translate-y: 0.25rem;
  }

  .s1440\:translate-y-2{
    --transform-translate-y: 0.5rem;
  }

  .s1440\:translate-y-3{
    --transform-translate-y: 0.75rem;
  }

  .s1440\:translate-y-4{
    --transform-translate-y: 1rem;
  }

  .s1440\:translate-y-5{
    --transform-translate-y: 1.25rem;
  }

  .s1440\:translate-y-6{
    --transform-translate-y: 1.5rem;
  }

  .s1440\:translate-y-8{
    --transform-translate-y: 2rem;
  }

  .s1440\:translate-y-10{
    --transform-translate-y: 2.5rem;
  }

  .s1440\:translate-y-12{
    --transform-translate-y: 3rem;
  }

  .s1440\:translate-y-14{
    --transform-translate-y: 3.5rem;
  }

  .s1440\:translate-y-16{
    --transform-translate-y: 4rem;
  }

  .s1440\:translate-y-20{
    --transform-translate-y: 5rem;
  }

  .s1440\:translate-y-24{
    --transform-translate-y: 6rem;
  }

  .s1440\:translate-y-32{
    --transform-translate-y: 8rem;
  }

  .s1440\:translate-y-40{
    --transform-translate-y: 10rem;
  }

  .s1440\:translate-y-48{
    --transform-translate-y: 12rem;
  }

  .s1440\:translate-y-56{
    --transform-translate-y: 14rem;
  }

  .s1440\:translate-y-64{
    --transform-translate-y: 16rem;
  }

  .s1440\:translate-y-px{
    --transform-translate-y: 1px;
  }

  .s1440\:-translate-y-1{
    --transform-translate-y: -0.25rem;
  }

  .s1440\:-translate-y-2{
    --transform-translate-y: -0.5rem;
  }

  .s1440\:-translate-y-3{
    --transform-translate-y: -0.75rem;
  }

  .s1440\:-translate-y-4{
    --transform-translate-y: -1rem;
  }

  .s1440\:-translate-y-5{
    --transform-translate-y: -1.25rem;
  }

  .s1440\:-translate-y-6{
    --transform-translate-y: -1.5rem;
  }

  .s1440\:-translate-y-8{
    --transform-translate-y: -2rem;
  }

  .s1440\:-translate-y-10{
    --transform-translate-y: -2.5rem;
  }

  .s1440\:-translate-y-12{
    --transform-translate-y: -3rem;
  }

  .s1440\:-translate-y-14{
    --transform-translate-y: -3.5rem;
  }

  .s1440\:-translate-y-16{
    --transform-translate-y: -4rem;
  }

  .s1440\:-translate-y-20{
    --transform-translate-y: -5rem;
  }

  .s1440\:-translate-y-24{
    --transform-translate-y: -6rem;
  }

  .s1440\:-translate-y-32{
    --transform-translate-y: -8rem;
  }

  .s1440\:-translate-y-40{
    --transform-translate-y: -10rem;
  }

  .s1440\:-translate-y-48{
    --transform-translate-y: -12rem;
  }

  .s1440\:-translate-y-56{
    --transform-translate-y: -14rem;
  }

  .s1440\:-translate-y-64{
    --transform-translate-y: -16rem;
  }

  .s1440\:-translate-y-px{
    --transform-translate-y: -1px;
  }

  .s1440\:-translate-y-full{
    --transform-translate-y: -100%;
  }

  .s1440\:-translate-y-1\/2{
    --transform-translate-y: -50%;
  }

  .s1440\:translate-y-1\/2{
    --transform-translate-y: 50%;
  }

  .s1440\:translate-y-full{
    --transform-translate-y: 100%;
  }

  .s1440\:hover\:translate-x-0:hover{
    --transform-translate-x: 0;
  }

  .s1440\:hover\:translate-x-1:hover{
    --transform-translate-x: 0.25rem;
  }

  .s1440\:hover\:translate-x-2:hover{
    --transform-translate-x: 0.5rem;
  }

  .s1440\:hover\:translate-x-3:hover{
    --transform-translate-x: 0.75rem;
  }

  .s1440\:hover\:translate-x-4:hover{
    --transform-translate-x: 1rem;
  }

  .s1440\:hover\:translate-x-5:hover{
    --transform-translate-x: 1.25rem;
  }

  .s1440\:hover\:translate-x-6:hover{
    --transform-translate-x: 1.5rem;
  }

  .s1440\:hover\:translate-x-8:hover{
    --transform-translate-x: 2rem;
  }

  .s1440\:hover\:translate-x-10:hover{
    --transform-translate-x: 2.5rem;
  }

  .s1440\:hover\:translate-x-12:hover{
    --transform-translate-x: 3rem;
  }

  .s1440\:hover\:translate-x-14:hover{
    --transform-translate-x: 3.5rem;
  }

  .s1440\:hover\:translate-x-16:hover{
    --transform-translate-x: 4rem;
  }

  .s1440\:hover\:translate-x-20:hover{
    --transform-translate-x: 5rem;
  }

  .s1440\:hover\:translate-x-24:hover{
    --transform-translate-x: 6rem;
  }

  .s1440\:hover\:translate-x-32:hover{
    --transform-translate-x: 8rem;
  }

  .s1440\:hover\:translate-x-40:hover{
    --transform-translate-x: 10rem;
  }

  .s1440\:hover\:translate-x-48:hover{
    --transform-translate-x: 12rem;
  }

  .s1440\:hover\:translate-x-56:hover{
    --transform-translate-x: 14rem;
  }

  .s1440\:hover\:translate-x-64:hover{
    --transform-translate-x: 16rem;
  }

  .s1440\:hover\:translate-x-px:hover{
    --transform-translate-x: 1px;
  }

  .s1440\:hover\:-translate-x-1:hover{
    --transform-translate-x: -0.25rem;
  }

  .s1440\:hover\:-translate-x-2:hover{
    --transform-translate-x: -0.5rem;
  }

  .s1440\:hover\:-translate-x-3:hover{
    --transform-translate-x: -0.75rem;
  }

  .s1440\:hover\:-translate-x-4:hover{
    --transform-translate-x: -1rem;
  }

  .s1440\:hover\:-translate-x-5:hover{
    --transform-translate-x: -1.25rem;
  }

  .s1440\:hover\:-translate-x-6:hover{
    --transform-translate-x: -1.5rem;
  }

  .s1440\:hover\:-translate-x-8:hover{
    --transform-translate-x: -2rem;
  }

  .s1440\:hover\:-translate-x-10:hover{
    --transform-translate-x: -2.5rem;
  }

  .s1440\:hover\:-translate-x-12:hover{
    --transform-translate-x: -3rem;
  }

  .s1440\:hover\:-translate-x-14:hover{
    --transform-translate-x: -3.5rem;
  }

  .s1440\:hover\:-translate-x-16:hover{
    --transform-translate-x: -4rem;
  }

  .s1440\:hover\:-translate-x-20:hover{
    --transform-translate-x: -5rem;
  }

  .s1440\:hover\:-translate-x-24:hover{
    --transform-translate-x: -6rem;
  }

  .s1440\:hover\:-translate-x-32:hover{
    --transform-translate-x: -8rem;
  }

  .s1440\:hover\:-translate-x-40:hover{
    --transform-translate-x: -10rem;
  }

  .s1440\:hover\:-translate-x-48:hover{
    --transform-translate-x: -12rem;
  }

  .s1440\:hover\:-translate-x-56:hover{
    --transform-translate-x: -14rem;
  }

  .s1440\:hover\:-translate-x-64:hover{
    --transform-translate-x: -16rem;
  }

  .s1440\:hover\:-translate-x-px:hover{
    --transform-translate-x: -1px;
  }

  .s1440\:hover\:-translate-x-full:hover{
    --transform-translate-x: -100%;
  }

  .s1440\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x: -50%;
  }

  .s1440\:hover\:translate-x-1\/2:hover{
    --transform-translate-x: 50%;
  }

  .s1440\:hover\:translate-x-full:hover{
    --transform-translate-x: 100%;
  }

  .s1440\:hover\:translate-y-0:hover{
    --transform-translate-y: 0;
  }

  .s1440\:hover\:translate-y-1:hover{
    --transform-translate-y: 0.25rem;
  }

  .s1440\:hover\:translate-y-2:hover{
    --transform-translate-y: 0.5rem;
  }

  .s1440\:hover\:translate-y-3:hover{
    --transform-translate-y: 0.75rem;
  }

  .s1440\:hover\:translate-y-4:hover{
    --transform-translate-y: 1rem;
  }

  .s1440\:hover\:translate-y-5:hover{
    --transform-translate-y: 1.25rem;
  }

  .s1440\:hover\:translate-y-6:hover{
    --transform-translate-y: 1.5rem;
  }

  .s1440\:hover\:translate-y-8:hover{
    --transform-translate-y: 2rem;
  }

  .s1440\:hover\:translate-y-10:hover{
    --transform-translate-y: 2.5rem;
  }

  .s1440\:hover\:translate-y-12:hover{
    --transform-translate-y: 3rem;
  }

  .s1440\:hover\:translate-y-14:hover{
    --transform-translate-y: 3.5rem;
  }

  .s1440\:hover\:translate-y-16:hover{
    --transform-translate-y: 4rem;
  }

  .s1440\:hover\:translate-y-20:hover{
    --transform-translate-y: 5rem;
  }

  .s1440\:hover\:translate-y-24:hover{
    --transform-translate-y: 6rem;
  }

  .s1440\:hover\:translate-y-32:hover{
    --transform-translate-y: 8rem;
  }

  .s1440\:hover\:translate-y-40:hover{
    --transform-translate-y: 10rem;
  }

  .s1440\:hover\:translate-y-48:hover{
    --transform-translate-y: 12rem;
  }

  .s1440\:hover\:translate-y-56:hover{
    --transform-translate-y: 14rem;
  }

  .s1440\:hover\:translate-y-64:hover{
    --transform-translate-y: 16rem;
  }

  .s1440\:hover\:translate-y-px:hover{
    --transform-translate-y: 1px;
  }

  .s1440\:hover\:-translate-y-1:hover{
    --transform-translate-y: -0.25rem;
  }

  .s1440\:hover\:-translate-y-2:hover{
    --transform-translate-y: -0.5rem;
  }

  .s1440\:hover\:-translate-y-3:hover{
    --transform-translate-y: -0.75rem;
  }

  .s1440\:hover\:-translate-y-4:hover{
    --transform-translate-y: -1rem;
  }

  .s1440\:hover\:-translate-y-5:hover{
    --transform-translate-y: -1.25rem;
  }

  .s1440\:hover\:-translate-y-6:hover{
    --transform-translate-y: -1.5rem;
  }

  .s1440\:hover\:-translate-y-8:hover{
    --transform-translate-y: -2rem;
  }

  .s1440\:hover\:-translate-y-10:hover{
    --transform-translate-y: -2.5rem;
  }

  .s1440\:hover\:-translate-y-12:hover{
    --transform-translate-y: -3rem;
  }

  .s1440\:hover\:-translate-y-14:hover{
    --transform-translate-y: -3.5rem;
  }

  .s1440\:hover\:-translate-y-16:hover{
    --transform-translate-y: -4rem;
  }

  .s1440\:hover\:-translate-y-20:hover{
    --transform-translate-y: -5rem;
  }

  .s1440\:hover\:-translate-y-24:hover{
    --transform-translate-y: -6rem;
  }

  .s1440\:hover\:-translate-y-32:hover{
    --transform-translate-y: -8rem;
  }

  .s1440\:hover\:-translate-y-40:hover{
    --transform-translate-y: -10rem;
  }

  .s1440\:hover\:-translate-y-48:hover{
    --transform-translate-y: -12rem;
  }

  .s1440\:hover\:-translate-y-56:hover{
    --transform-translate-y: -14rem;
  }

  .s1440\:hover\:-translate-y-64:hover{
    --transform-translate-y: -16rem;
  }

  .s1440\:hover\:-translate-y-px:hover{
    --transform-translate-y: -1px;
  }

  .s1440\:hover\:-translate-y-full:hover{
    --transform-translate-y: -100%;
  }

  .s1440\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y: -50%;
  }

  .s1440\:hover\:translate-y-1\/2:hover{
    --transform-translate-y: 50%;
  }

  .s1440\:hover\:translate-y-full:hover{
    --transform-translate-y: 100%;
  }

  .s1440\:focus\:translate-x-0:focus{
    --transform-translate-x: 0;
  }

  .s1440\:focus\:translate-x-1:focus{
    --transform-translate-x: 0.25rem;
  }

  .s1440\:focus\:translate-x-2:focus{
    --transform-translate-x: 0.5rem;
  }

  .s1440\:focus\:translate-x-3:focus{
    --transform-translate-x: 0.75rem;
  }

  .s1440\:focus\:translate-x-4:focus{
    --transform-translate-x: 1rem;
  }

  .s1440\:focus\:translate-x-5:focus{
    --transform-translate-x: 1.25rem;
  }

  .s1440\:focus\:translate-x-6:focus{
    --transform-translate-x: 1.5rem;
  }

  .s1440\:focus\:translate-x-8:focus{
    --transform-translate-x: 2rem;
  }

  .s1440\:focus\:translate-x-10:focus{
    --transform-translate-x: 2.5rem;
  }

  .s1440\:focus\:translate-x-12:focus{
    --transform-translate-x: 3rem;
  }

  .s1440\:focus\:translate-x-14:focus{
    --transform-translate-x: 3.5rem;
  }

  .s1440\:focus\:translate-x-16:focus{
    --transform-translate-x: 4rem;
  }

  .s1440\:focus\:translate-x-20:focus{
    --transform-translate-x: 5rem;
  }

  .s1440\:focus\:translate-x-24:focus{
    --transform-translate-x: 6rem;
  }

  .s1440\:focus\:translate-x-32:focus{
    --transform-translate-x: 8rem;
  }

  .s1440\:focus\:translate-x-40:focus{
    --transform-translate-x: 10rem;
  }

  .s1440\:focus\:translate-x-48:focus{
    --transform-translate-x: 12rem;
  }

  .s1440\:focus\:translate-x-56:focus{
    --transform-translate-x: 14rem;
  }

  .s1440\:focus\:translate-x-64:focus{
    --transform-translate-x: 16rem;
  }

  .s1440\:focus\:translate-x-px:focus{
    --transform-translate-x: 1px;
  }

  .s1440\:focus\:-translate-x-1:focus{
    --transform-translate-x: -0.25rem;
  }

  .s1440\:focus\:-translate-x-2:focus{
    --transform-translate-x: -0.5rem;
  }

  .s1440\:focus\:-translate-x-3:focus{
    --transform-translate-x: -0.75rem;
  }

  .s1440\:focus\:-translate-x-4:focus{
    --transform-translate-x: -1rem;
  }

  .s1440\:focus\:-translate-x-5:focus{
    --transform-translate-x: -1.25rem;
  }

  .s1440\:focus\:-translate-x-6:focus{
    --transform-translate-x: -1.5rem;
  }

  .s1440\:focus\:-translate-x-8:focus{
    --transform-translate-x: -2rem;
  }

  .s1440\:focus\:-translate-x-10:focus{
    --transform-translate-x: -2.5rem;
  }

  .s1440\:focus\:-translate-x-12:focus{
    --transform-translate-x: -3rem;
  }

  .s1440\:focus\:-translate-x-14:focus{
    --transform-translate-x: -3.5rem;
  }

  .s1440\:focus\:-translate-x-16:focus{
    --transform-translate-x: -4rem;
  }

  .s1440\:focus\:-translate-x-20:focus{
    --transform-translate-x: -5rem;
  }

  .s1440\:focus\:-translate-x-24:focus{
    --transform-translate-x: -6rem;
  }

  .s1440\:focus\:-translate-x-32:focus{
    --transform-translate-x: -8rem;
  }

  .s1440\:focus\:-translate-x-40:focus{
    --transform-translate-x: -10rem;
  }

  .s1440\:focus\:-translate-x-48:focus{
    --transform-translate-x: -12rem;
  }

  .s1440\:focus\:-translate-x-56:focus{
    --transform-translate-x: -14rem;
  }

  .s1440\:focus\:-translate-x-64:focus{
    --transform-translate-x: -16rem;
  }

  .s1440\:focus\:-translate-x-px:focus{
    --transform-translate-x: -1px;
  }

  .s1440\:focus\:-translate-x-full:focus{
    --transform-translate-x: -100%;
  }

  .s1440\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x: -50%;
  }

  .s1440\:focus\:translate-x-1\/2:focus{
    --transform-translate-x: 50%;
  }

  .s1440\:focus\:translate-x-full:focus{
    --transform-translate-x: 100%;
  }

  .s1440\:focus\:translate-y-0:focus{
    --transform-translate-y: 0;
  }

  .s1440\:focus\:translate-y-1:focus{
    --transform-translate-y: 0.25rem;
  }

  .s1440\:focus\:translate-y-2:focus{
    --transform-translate-y: 0.5rem;
  }

  .s1440\:focus\:translate-y-3:focus{
    --transform-translate-y: 0.75rem;
  }

  .s1440\:focus\:translate-y-4:focus{
    --transform-translate-y: 1rem;
  }

  .s1440\:focus\:translate-y-5:focus{
    --transform-translate-y: 1.25rem;
  }

  .s1440\:focus\:translate-y-6:focus{
    --transform-translate-y: 1.5rem;
  }

  .s1440\:focus\:translate-y-8:focus{
    --transform-translate-y: 2rem;
  }

  .s1440\:focus\:translate-y-10:focus{
    --transform-translate-y: 2.5rem;
  }

  .s1440\:focus\:translate-y-12:focus{
    --transform-translate-y: 3rem;
  }

  .s1440\:focus\:translate-y-14:focus{
    --transform-translate-y: 3.5rem;
  }

  .s1440\:focus\:translate-y-16:focus{
    --transform-translate-y: 4rem;
  }

  .s1440\:focus\:translate-y-20:focus{
    --transform-translate-y: 5rem;
  }

  .s1440\:focus\:translate-y-24:focus{
    --transform-translate-y: 6rem;
  }

  .s1440\:focus\:translate-y-32:focus{
    --transform-translate-y: 8rem;
  }

  .s1440\:focus\:translate-y-40:focus{
    --transform-translate-y: 10rem;
  }

  .s1440\:focus\:translate-y-48:focus{
    --transform-translate-y: 12rem;
  }

  .s1440\:focus\:translate-y-56:focus{
    --transform-translate-y: 14rem;
  }

  .s1440\:focus\:translate-y-64:focus{
    --transform-translate-y: 16rem;
  }

  .s1440\:focus\:translate-y-px:focus{
    --transform-translate-y: 1px;
  }

  .s1440\:focus\:-translate-y-1:focus{
    --transform-translate-y: -0.25rem;
  }

  .s1440\:focus\:-translate-y-2:focus{
    --transform-translate-y: -0.5rem;
  }

  .s1440\:focus\:-translate-y-3:focus{
    --transform-translate-y: -0.75rem;
  }

  .s1440\:focus\:-translate-y-4:focus{
    --transform-translate-y: -1rem;
  }

  .s1440\:focus\:-translate-y-5:focus{
    --transform-translate-y: -1.25rem;
  }

  .s1440\:focus\:-translate-y-6:focus{
    --transform-translate-y: -1.5rem;
  }

  .s1440\:focus\:-translate-y-8:focus{
    --transform-translate-y: -2rem;
  }

  .s1440\:focus\:-translate-y-10:focus{
    --transform-translate-y: -2.5rem;
  }

  .s1440\:focus\:-translate-y-12:focus{
    --transform-translate-y: -3rem;
  }

  .s1440\:focus\:-translate-y-14:focus{
    --transform-translate-y: -3.5rem;
  }

  .s1440\:focus\:-translate-y-16:focus{
    --transform-translate-y: -4rem;
  }

  .s1440\:focus\:-translate-y-20:focus{
    --transform-translate-y: -5rem;
  }

  .s1440\:focus\:-translate-y-24:focus{
    --transform-translate-y: -6rem;
  }

  .s1440\:focus\:-translate-y-32:focus{
    --transform-translate-y: -8rem;
  }

  .s1440\:focus\:-translate-y-40:focus{
    --transform-translate-y: -10rem;
  }

  .s1440\:focus\:-translate-y-48:focus{
    --transform-translate-y: -12rem;
  }

  .s1440\:focus\:-translate-y-56:focus{
    --transform-translate-y: -14rem;
  }

  .s1440\:focus\:-translate-y-64:focus{
    --transform-translate-y: -16rem;
  }

  .s1440\:focus\:-translate-y-px:focus{
    --transform-translate-y: -1px;
  }

  .s1440\:focus\:-translate-y-full:focus{
    --transform-translate-y: -100%;
  }

  .s1440\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y: -50%;
  }

  .s1440\:focus\:translate-y-1\/2:focus{
    --transform-translate-y: 50%;
  }

  .s1440\:focus\:translate-y-full:focus{
    --transform-translate-y: 100%;
  }

  .s1440\:active\:translate-x-0:active{
    --transform-translate-x: 0;
  }

  .s1440\:active\:translate-x-1:active{
    --transform-translate-x: 0.25rem;
  }

  .s1440\:active\:translate-x-2:active{
    --transform-translate-x: 0.5rem;
  }

  .s1440\:active\:translate-x-3:active{
    --transform-translate-x: 0.75rem;
  }

  .s1440\:active\:translate-x-4:active{
    --transform-translate-x: 1rem;
  }

  .s1440\:active\:translate-x-5:active{
    --transform-translate-x: 1.25rem;
  }

  .s1440\:active\:translate-x-6:active{
    --transform-translate-x: 1.5rem;
  }

  .s1440\:active\:translate-x-8:active{
    --transform-translate-x: 2rem;
  }

  .s1440\:active\:translate-x-10:active{
    --transform-translate-x: 2.5rem;
  }

  .s1440\:active\:translate-x-12:active{
    --transform-translate-x: 3rem;
  }

  .s1440\:active\:translate-x-14:active{
    --transform-translate-x: 3.5rem;
  }

  .s1440\:active\:translate-x-16:active{
    --transform-translate-x: 4rem;
  }

  .s1440\:active\:translate-x-20:active{
    --transform-translate-x: 5rem;
  }

  .s1440\:active\:translate-x-24:active{
    --transform-translate-x: 6rem;
  }

  .s1440\:active\:translate-x-32:active{
    --transform-translate-x: 8rem;
  }

  .s1440\:active\:translate-x-40:active{
    --transform-translate-x: 10rem;
  }

  .s1440\:active\:translate-x-48:active{
    --transform-translate-x: 12rem;
  }

  .s1440\:active\:translate-x-56:active{
    --transform-translate-x: 14rem;
  }

  .s1440\:active\:translate-x-64:active{
    --transform-translate-x: 16rem;
  }

  .s1440\:active\:translate-x-px:active{
    --transform-translate-x: 1px;
  }

  .s1440\:active\:-translate-x-1:active{
    --transform-translate-x: -0.25rem;
  }

  .s1440\:active\:-translate-x-2:active{
    --transform-translate-x: -0.5rem;
  }

  .s1440\:active\:-translate-x-3:active{
    --transform-translate-x: -0.75rem;
  }

  .s1440\:active\:-translate-x-4:active{
    --transform-translate-x: -1rem;
  }

  .s1440\:active\:-translate-x-5:active{
    --transform-translate-x: -1.25rem;
  }

  .s1440\:active\:-translate-x-6:active{
    --transform-translate-x: -1.5rem;
  }

  .s1440\:active\:-translate-x-8:active{
    --transform-translate-x: -2rem;
  }

  .s1440\:active\:-translate-x-10:active{
    --transform-translate-x: -2.5rem;
  }

  .s1440\:active\:-translate-x-12:active{
    --transform-translate-x: -3rem;
  }

  .s1440\:active\:-translate-x-14:active{
    --transform-translate-x: -3.5rem;
  }

  .s1440\:active\:-translate-x-16:active{
    --transform-translate-x: -4rem;
  }

  .s1440\:active\:-translate-x-20:active{
    --transform-translate-x: -5rem;
  }

  .s1440\:active\:-translate-x-24:active{
    --transform-translate-x: -6rem;
  }

  .s1440\:active\:-translate-x-32:active{
    --transform-translate-x: -8rem;
  }

  .s1440\:active\:-translate-x-40:active{
    --transform-translate-x: -10rem;
  }

  .s1440\:active\:-translate-x-48:active{
    --transform-translate-x: -12rem;
  }

  .s1440\:active\:-translate-x-56:active{
    --transform-translate-x: -14rem;
  }

  .s1440\:active\:-translate-x-64:active{
    --transform-translate-x: -16rem;
  }

  .s1440\:active\:-translate-x-px:active{
    --transform-translate-x: -1px;
  }

  .s1440\:active\:-translate-x-full:active{
    --transform-translate-x: -100%;
  }

  .s1440\:active\:-translate-x-1\/2:active{
    --transform-translate-x: -50%;
  }

  .s1440\:active\:translate-x-1\/2:active{
    --transform-translate-x: 50%;
  }

  .s1440\:active\:translate-x-full:active{
    --transform-translate-x: 100%;
  }

  .s1440\:active\:translate-y-0:active{
    --transform-translate-y: 0;
  }

  .s1440\:active\:translate-y-1:active{
    --transform-translate-y: 0.25rem;
  }

  .s1440\:active\:translate-y-2:active{
    --transform-translate-y: 0.5rem;
  }

  .s1440\:active\:translate-y-3:active{
    --transform-translate-y: 0.75rem;
  }

  .s1440\:active\:translate-y-4:active{
    --transform-translate-y: 1rem;
  }

  .s1440\:active\:translate-y-5:active{
    --transform-translate-y: 1.25rem;
  }

  .s1440\:active\:translate-y-6:active{
    --transform-translate-y: 1.5rem;
  }

  .s1440\:active\:translate-y-8:active{
    --transform-translate-y: 2rem;
  }

  .s1440\:active\:translate-y-10:active{
    --transform-translate-y: 2.5rem;
  }

  .s1440\:active\:translate-y-12:active{
    --transform-translate-y: 3rem;
  }

  .s1440\:active\:translate-y-14:active{
    --transform-translate-y: 3.5rem;
  }

  .s1440\:active\:translate-y-16:active{
    --transform-translate-y: 4rem;
  }

  .s1440\:active\:translate-y-20:active{
    --transform-translate-y: 5rem;
  }

  .s1440\:active\:translate-y-24:active{
    --transform-translate-y: 6rem;
  }

  .s1440\:active\:translate-y-32:active{
    --transform-translate-y: 8rem;
  }

  .s1440\:active\:translate-y-40:active{
    --transform-translate-y: 10rem;
  }

  .s1440\:active\:translate-y-48:active{
    --transform-translate-y: 12rem;
  }

  .s1440\:active\:translate-y-56:active{
    --transform-translate-y: 14rem;
  }

  .s1440\:active\:translate-y-64:active{
    --transform-translate-y: 16rem;
  }

  .s1440\:active\:translate-y-px:active{
    --transform-translate-y: 1px;
  }

  .s1440\:active\:-translate-y-1:active{
    --transform-translate-y: -0.25rem;
  }

  .s1440\:active\:-translate-y-2:active{
    --transform-translate-y: -0.5rem;
  }

  .s1440\:active\:-translate-y-3:active{
    --transform-translate-y: -0.75rem;
  }

  .s1440\:active\:-translate-y-4:active{
    --transform-translate-y: -1rem;
  }

  .s1440\:active\:-translate-y-5:active{
    --transform-translate-y: -1.25rem;
  }

  .s1440\:active\:-translate-y-6:active{
    --transform-translate-y: -1.5rem;
  }

  .s1440\:active\:-translate-y-8:active{
    --transform-translate-y: -2rem;
  }

  .s1440\:active\:-translate-y-10:active{
    --transform-translate-y: -2.5rem;
  }

  .s1440\:active\:-translate-y-12:active{
    --transform-translate-y: -3rem;
  }

  .s1440\:active\:-translate-y-14:active{
    --transform-translate-y: -3.5rem;
  }

  .s1440\:active\:-translate-y-16:active{
    --transform-translate-y: -4rem;
  }

  .s1440\:active\:-translate-y-20:active{
    --transform-translate-y: -5rem;
  }

  .s1440\:active\:-translate-y-24:active{
    --transform-translate-y: -6rem;
  }

  .s1440\:active\:-translate-y-32:active{
    --transform-translate-y: -8rem;
  }

  .s1440\:active\:-translate-y-40:active{
    --transform-translate-y: -10rem;
  }

  .s1440\:active\:-translate-y-48:active{
    --transform-translate-y: -12rem;
  }

  .s1440\:active\:-translate-y-56:active{
    --transform-translate-y: -14rem;
  }

  .s1440\:active\:-translate-y-64:active{
    --transform-translate-y: -16rem;
  }

  .s1440\:active\:-translate-y-px:active{
    --transform-translate-y: -1px;
  }

  .s1440\:active\:-translate-y-full:active{
    --transform-translate-y: -100%;
  }

  .s1440\:active\:-translate-y-1\/2:active{
    --transform-translate-y: -50%;
  }

  .s1440\:active\:translate-y-1\/2:active{
    --transform-translate-y: 50%;
  }

  .s1440\:active\:translate-y-full:active{
    --transform-translate-y: 100%;
  }

  .s1440\:first\:translate-x-0:first-child{
    --transform-translate-x: 0;
  }

  .s1440\:first\:translate-x-1:first-child{
    --transform-translate-x: 0.25rem;
  }

  .s1440\:first\:translate-x-2:first-child{
    --transform-translate-x: 0.5rem;
  }

  .s1440\:first\:translate-x-3:first-child{
    --transform-translate-x: 0.75rem;
  }

  .s1440\:first\:translate-x-4:first-child{
    --transform-translate-x: 1rem;
  }

  .s1440\:first\:translate-x-5:first-child{
    --transform-translate-x: 1.25rem;
  }

  .s1440\:first\:translate-x-6:first-child{
    --transform-translate-x: 1.5rem;
  }

  .s1440\:first\:translate-x-8:first-child{
    --transform-translate-x: 2rem;
  }

  .s1440\:first\:translate-x-10:first-child{
    --transform-translate-x: 2.5rem;
  }

  .s1440\:first\:translate-x-12:first-child{
    --transform-translate-x: 3rem;
  }

  .s1440\:first\:translate-x-14:first-child{
    --transform-translate-x: 3.5rem;
  }

  .s1440\:first\:translate-x-16:first-child{
    --transform-translate-x: 4rem;
  }

  .s1440\:first\:translate-x-20:first-child{
    --transform-translate-x: 5rem;
  }

  .s1440\:first\:translate-x-24:first-child{
    --transform-translate-x: 6rem;
  }

  .s1440\:first\:translate-x-32:first-child{
    --transform-translate-x: 8rem;
  }

  .s1440\:first\:translate-x-40:first-child{
    --transform-translate-x: 10rem;
  }

  .s1440\:first\:translate-x-48:first-child{
    --transform-translate-x: 12rem;
  }

  .s1440\:first\:translate-x-56:first-child{
    --transform-translate-x: 14rem;
  }

  .s1440\:first\:translate-x-64:first-child{
    --transform-translate-x: 16rem;
  }

  .s1440\:first\:translate-x-px:first-child{
    --transform-translate-x: 1px;
  }

  .s1440\:first\:-translate-x-1:first-child{
    --transform-translate-x: -0.25rem;
  }

  .s1440\:first\:-translate-x-2:first-child{
    --transform-translate-x: -0.5rem;
  }

  .s1440\:first\:-translate-x-3:first-child{
    --transform-translate-x: -0.75rem;
  }

  .s1440\:first\:-translate-x-4:first-child{
    --transform-translate-x: -1rem;
  }

  .s1440\:first\:-translate-x-5:first-child{
    --transform-translate-x: -1.25rem;
  }

  .s1440\:first\:-translate-x-6:first-child{
    --transform-translate-x: -1.5rem;
  }

  .s1440\:first\:-translate-x-8:first-child{
    --transform-translate-x: -2rem;
  }

  .s1440\:first\:-translate-x-10:first-child{
    --transform-translate-x: -2.5rem;
  }

  .s1440\:first\:-translate-x-12:first-child{
    --transform-translate-x: -3rem;
  }

  .s1440\:first\:-translate-x-14:first-child{
    --transform-translate-x: -3.5rem;
  }

  .s1440\:first\:-translate-x-16:first-child{
    --transform-translate-x: -4rem;
  }

  .s1440\:first\:-translate-x-20:first-child{
    --transform-translate-x: -5rem;
  }

  .s1440\:first\:-translate-x-24:first-child{
    --transform-translate-x: -6rem;
  }

  .s1440\:first\:-translate-x-32:first-child{
    --transform-translate-x: -8rem;
  }

  .s1440\:first\:-translate-x-40:first-child{
    --transform-translate-x: -10rem;
  }

  .s1440\:first\:-translate-x-48:first-child{
    --transform-translate-x: -12rem;
  }

  .s1440\:first\:-translate-x-56:first-child{
    --transform-translate-x: -14rem;
  }

  .s1440\:first\:-translate-x-64:first-child{
    --transform-translate-x: -16rem;
  }

  .s1440\:first\:-translate-x-px:first-child{
    --transform-translate-x: -1px;
  }

  .s1440\:first\:-translate-x-full:first-child{
    --transform-translate-x: -100%;
  }

  .s1440\:first\:-translate-x-1\/2:first-child{
    --transform-translate-x: -50%;
  }

  .s1440\:first\:translate-x-1\/2:first-child{
    --transform-translate-x: 50%;
  }

  .s1440\:first\:translate-x-full:first-child{
    --transform-translate-x: 100%;
  }

  .s1440\:first\:translate-y-0:first-child{
    --transform-translate-y: 0;
  }

  .s1440\:first\:translate-y-1:first-child{
    --transform-translate-y: 0.25rem;
  }

  .s1440\:first\:translate-y-2:first-child{
    --transform-translate-y: 0.5rem;
  }

  .s1440\:first\:translate-y-3:first-child{
    --transform-translate-y: 0.75rem;
  }

  .s1440\:first\:translate-y-4:first-child{
    --transform-translate-y: 1rem;
  }

  .s1440\:first\:translate-y-5:first-child{
    --transform-translate-y: 1.25rem;
  }

  .s1440\:first\:translate-y-6:first-child{
    --transform-translate-y: 1.5rem;
  }

  .s1440\:first\:translate-y-8:first-child{
    --transform-translate-y: 2rem;
  }

  .s1440\:first\:translate-y-10:first-child{
    --transform-translate-y: 2.5rem;
  }

  .s1440\:first\:translate-y-12:first-child{
    --transform-translate-y: 3rem;
  }

  .s1440\:first\:translate-y-14:first-child{
    --transform-translate-y: 3.5rem;
  }

  .s1440\:first\:translate-y-16:first-child{
    --transform-translate-y: 4rem;
  }

  .s1440\:first\:translate-y-20:first-child{
    --transform-translate-y: 5rem;
  }

  .s1440\:first\:translate-y-24:first-child{
    --transform-translate-y: 6rem;
  }

  .s1440\:first\:translate-y-32:first-child{
    --transform-translate-y: 8rem;
  }

  .s1440\:first\:translate-y-40:first-child{
    --transform-translate-y: 10rem;
  }

  .s1440\:first\:translate-y-48:first-child{
    --transform-translate-y: 12rem;
  }

  .s1440\:first\:translate-y-56:first-child{
    --transform-translate-y: 14rem;
  }

  .s1440\:first\:translate-y-64:first-child{
    --transform-translate-y: 16rem;
  }

  .s1440\:first\:translate-y-px:first-child{
    --transform-translate-y: 1px;
  }

  .s1440\:first\:-translate-y-1:first-child{
    --transform-translate-y: -0.25rem;
  }

  .s1440\:first\:-translate-y-2:first-child{
    --transform-translate-y: -0.5rem;
  }

  .s1440\:first\:-translate-y-3:first-child{
    --transform-translate-y: -0.75rem;
  }

  .s1440\:first\:-translate-y-4:first-child{
    --transform-translate-y: -1rem;
  }

  .s1440\:first\:-translate-y-5:first-child{
    --transform-translate-y: -1.25rem;
  }

  .s1440\:first\:-translate-y-6:first-child{
    --transform-translate-y: -1.5rem;
  }

  .s1440\:first\:-translate-y-8:first-child{
    --transform-translate-y: -2rem;
  }

  .s1440\:first\:-translate-y-10:first-child{
    --transform-translate-y: -2.5rem;
  }

  .s1440\:first\:-translate-y-12:first-child{
    --transform-translate-y: -3rem;
  }

  .s1440\:first\:-translate-y-14:first-child{
    --transform-translate-y: -3.5rem;
  }

  .s1440\:first\:-translate-y-16:first-child{
    --transform-translate-y: -4rem;
  }

  .s1440\:first\:-translate-y-20:first-child{
    --transform-translate-y: -5rem;
  }

  .s1440\:first\:-translate-y-24:first-child{
    --transform-translate-y: -6rem;
  }

  .s1440\:first\:-translate-y-32:first-child{
    --transform-translate-y: -8rem;
  }

  .s1440\:first\:-translate-y-40:first-child{
    --transform-translate-y: -10rem;
  }

  .s1440\:first\:-translate-y-48:first-child{
    --transform-translate-y: -12rem;
  }

  .s1440\:first\:-translate-y-56:first-child{
    --transform-translate-y: -14rem;
  }

  .s1440\:first\:-translate-y-64:first-child{
    --transform-translate-y: -16rem;
  }

  .s1440\:first\:-translate-y-px:first-child{
    --transform-translate-y: -1px;
  }

  .s1440\:first\:-translate-y-full:first-child{
    --transform-translate-y: -100%;
  }

  .s1440\:first\:-translate-y-1\/2:first-child{
    --transform-translate-y: -50%;
  }

  .s1440\:first\:translate-y-1\/2:first-child{
    --transform-translate-y: 50%;
  }

  .s1440\:first\:translate-y-full:first-child{
    --transform-translate-y: 100%;
  }

  .s1440\:last\:translate-x-0:last-child{
    --transform-translate-x: 0;
  }

  .s1440\:last\:translate-x-1:last-child{
    --transform-translate-x: 0.25rem;
  }

  .s1440\:last\:translate-x-2:last-child{
    --transform-translate-x: 0.5rem;
  }

  .s1440\:last\:translate-x-3:last-child{
    --transform-translate-x: 0.75rem;
  }

  .s1440\:last\:translate-x-4:last-child{
    --transform-translate-x: 1rem;
  }

  .s1440\:last\:translate-x-5:last-child{
    --transform-translate-x: 1.25rem;
  }

  .s1440\:last\:translate-x-6:last-child{
    --transform-translate-x: 1.5rem;
  }

  .s1440\:last\:translate-x-8:last-child{
    --transform-translate-x: 2rem;
  }

  .s1440\:last\:translate-x-10:last-child{
    --transform-translate-x: 2.5rem;
  }

  .s1440\:last\:translate-x-12:last-child{
    --transform-translate-x: 3rem;
  }

  .s1440\:last\:translate-x-14:last-child{
    --transform-translate-x: 3.5rem;
  }

  .s1440\:last\:translate-x-16:last-child{
    --transform-translate-x: 4rem;
  }

  .s1440\:last\:translate-x-20:last-child{
    --transform-translate-x: 5rem;
  }

  .s1440\:last\:translate-x-24:last-child{
    --transform-translate-x: 6rem;
  }

  .s1440\:last\:translate-x-32:last-child{
    --transform-translate-x: 8rem;
  }

  .s1440\:last\:translate-x-40:last-child{
    --transform-translate-x: 10rem;
  }

  .s1440\:last\:translate-x-48:last-child{
    --transform-translate-x: 12rem;
  }

  .s1440\:last\:translate-x-56:last-child{
    --transform-translate-x: 14rem;
  }

  .s1440\:last\:translate-x-64:last-child{
    --transform-translate-x: 16rem;
  }

  .s1440\:last\:translate-x-px:last-child{
    --transform-translate-x: 1px;
  }

  .s1440\:last\:-translate-x-1:last-child{
    --transform-translate-x: -0.25rem;
  }

  .s1440\:last\:-translate-x-2:last-child{
    --transform-translate-x: -0.5rem;
  }

  .s1440\:last\:-translate-x-3:last-child{
    --transform-translate-x: -0.75rem;
  }

  .s1440\:last\:-translate-x-4:last-child{
    --transform-translate-x: -1rem;
  }

  .s1440\:last\:-translate-x-5:last-child{
    --transform-translate-x: -1.25rem;
  }

  .s1440\:last\:-translate-x-6:last-child{
    --transform-translate-x: -1.5rem;
  }

  .s1440\:last\:-translate-x-8:last-child{
    --transform-translate-x: -2rem;
  }

  .s1440\:last\:-translate-x-10:last-child{
    --transform-translate-x: -2.5rem;
  }

  .s1440\:last\:-translate-x-12:last-child{
    --transform-translate-x: -3rem;
  }

  .s1440\:last\:-translate-x-14:last-child{
    --transform-translate-x: -3.5rem;
  }

  .s1440\:last\:-translate-x-16:last-child{
    --transform-translate-x: -4rem;
  }

  .s1440\:last\:-translate-x-20:last-child{
    --transform-translate-x: -5rem;
  }

  .s1440\:last\:-translate-x-24:last-child{
    --transform-translate-x: -6rem;
  }

  .s1440\:last\:-translate-x-32:last-child{
    --transform-translate-x: -8rem;
  }

  .s1440\:last\:-translate-x-40:last-child{
    --transform-translate-x: -10rem;
  }

  .s1440\:last\:-translate-x-48:last-child{
    --transform-translate-x: -12rem;
  }

  .s1440\:last\:-translate-x-56:last-child{
    --transform-translate-x: -14rem;
  }

  .s1440\:last\:-translate-x-64:last-child{
    --transform-translate-x: -16rem;
  }

  .s1440\:last\:-translate-x-px:last-child{
    --transform-translate-x: -1px;
  }

  .s1440\:last\:-translate-x-full:last-child{
    --transform-translate-x: -100%;
  }

  .s1440\:last\:-translate-x-1\/2:last-child{
    --transform-translate-x: -50%;
  }

  .s1440\:last\:translate-x-1\/2:last-child{
    --transform-translate-x: 50%;
  }

  .s1440\:last\:translate-x-full:last-child{
    --transform-translate-x: 100%;
  }

  .s1440\:last\:translate-y-0:last-child{
    --transform-translate-y: 0;
  }

  .s1440\:last\:translate-y-1:last-child{
    --transform-translate-y: 0.25rem;
  }

  .s1440\:last\:translate-y-2:last-child{
    --transform-translate-y: 0.5rem;
  }

  .s1440\:last\:translate-y-3:last-child{
    --transform-translate-y: 0.75rem;
  }

  .s1440\:last\:translate-y-4:last-child{
    --transform-translate-y: 1rem;
  }

  .s1440\:last\:translate-y-5:last-child{
    --transform-translate-y: 1.25rem;
  }

  .s1440\:last\:translate-y-6:last-child{
    --transform-translate-y: 1.5rem;
  }

  .s1440\:last\:translate-y-8:last-child{
    --transform-translate-y: 2rem;
  }

  .s1440\:last\:translate-y-10:last-child{
    --transform-translate-y: 2.5rem;
  }

  .s1440\:last\:translate-y-12:last-child{
    --transform-translate-y: 3rem;
  }

  .s1440\:last\:translate-y-14:last-child{
    --transform-translate-y: 3.5rem;
  }

  .s1440\:last\:translate-y-16:last-child{
    --transform-translate-y: 4rem;
  }

  .s1440\:last\:translate-y-20:last-child{
    --transform-translate-y: 5rem;
  }

  .s1440\:last\:translate-y-24:last-child{
    --transform-translate-y: 6rem;
  }

  .s1440\:last\:translate-y-32:last-child{
    --transform-translate-y: 8rem;
  }

  .s1440\:last\:translate-y-40:last-child{
    --transform-translate-y: 10rem;
  }

  .s1440\:last\:translate-y-48:last-child{
    --transform-translate-y: 12rem;
  }

  .s1440\:last\:translate-y-56:last-child{
    --transform-translate-y: 14rem;
  }

  .s1440\:last\:translate-y-64:last-child{
    --transform-translate-y: 16rem;
  }

  .s1440\:last\:translate-y-px:last-child{
    --transform-translate-y: 1px;
  }

  .s1440\:last\:-translate-y-1:last-child{
    --transform-translate-y: -0.25rem;
  }

  .s1440\:last\:-translate-y-2:last-child{
    --transform-translate-y: -0.5rem;
  }

  .s1440\:last\:-translate-y-3:last-child{
    --transform-translate-y: -0.75rem;
  }

  .s1440\:last\:-translate-y-4:last-child{
    --transform-translate-y: -1rem;
  }

  .s1440\:last\:-translate-y-5:last-child{
    --transform-translate-y: -1.25rem;
  }

  .s1440\:last\:-translate-y-6:last-child{
    --transform-translate-y: -1.5rem;
  }

  .s1440\:last\:-translate-y-8:last-child{
    --transform-translate-y: -2rem;
  }

  .s1440\:last\:-translate-y-10:last-child{
    --transform-translate-y: -2.5rem;
  }

  .s1440\:last\:-translate-y-12:last-child{
    --transform-translate-y: -3rem;
  }

  .s1440\:last\:-translate-y-14:last-child{
    --transform-translate-y: -3.5rem;
  }

  .s1440\:last\:-translate-y-16:last-child{
    --transform-translate-y: -4rem;
  }

  .s1440\:last\:-translate-y-20:last-child{
    --transform-translate-y: -5rem;
  }

  .s1440\:last\:-translate-y-24:last-child{
    --transform-translate-y: -6rem;
  }

  .s1440\:last\:-translate-y-32:last-child{
    --transform-translate-y: -8rem;
  }

  .s1440\:last\:-translate-y-40:last-child{
    --transform-translate-y: -10rem;
  }

  .s1440\:last\:-translate-y-48:last-child{
    --transform-translate-y: -12rem;
  }

  .s1440\:last\:-translate-y-56:last-child{
    --transform-translate-y: -14rem;
  }

  .s1440\:last\:-translate-y-64:last-child{
    --transform-translate-y: -16rem;
  }

  .s1440\:last\:-translate-y-px:last-child{
    --transform-translate-y: -1px;
  }

  .s1440\:last\:-translate-y-full:last-child{
    --transform-translate-y: -100%;
  }

  .s1440\:last\:-translate-y-1\/2:last-child{
    --transform-translate-y: -50%;
  }

  .s1440\:last\:translate-y-1\/2:last-child{
    --transform-translate-y: 50%;
  }

  .s1440\:last\:translate-y-full:last-child{
    --transform-translate-y: 100%;
  }

  .s1440\:skew-x-0{
    --transform-skew-x: 0;
  }

  .s1440\:skew-x-3{
    --transform-skew-x: 3deg;
  }

  .s1440\:skew-x-6{
    --transform-skew-x: 6deg;
  }

  .s1440\:skew-x-12{
    --transform-skew-x: 12deg;
  }

  .s1440\:-skew-x-12{
    --transform-skew-x: -12deg;
  }

  .s1440\:-skew-x-6{
    --transform-skew-x: -6deg;
  }

  .s1440\:-skew-x-3{
    --transform-skew-x: -3deg;
  }

  .s1440\:skew-y-0{
    --transform-skew-y: 0;
  }

  .s1440\:skew-y-3{
    --transform-skew-y: 3deg;
  }

  .s1440\:skew-y-6{
    --transform-skew-y: 6deg;
  }

  .s1440\:skew-y-12{
    --transform-skew-y: 12deg;
  }

  .s1440\:-skew-y-12{
    --transform-skew-y: -12deg;
  }

  .s1440\:-skew-y-6{
    --transform-skew-y: -6deg;
  }

  .s1440\:-skew-y-3{
    --transform-skew-y: -3deg;
  }

  .s1440\:hover\:skew-x-0:hover{
    --transform-skew-x: 0;
  }

  .s1440\:hover\:skew-x-3:hover{
    --transform-skew-x: 3deg;
  }

  .s1440\:hover\:skew-x-6:hover{
    --transform-skew-x: 6deg;
  }

  .s1440\:hover\:skew-x-12:hover{
    --transform-skew-x: 12deg;
  }

  .s1440\:hover\:-skew-x-12:hover{
    --transform-skew-x: -12deg;
  }

  .s1440\:hover\:-skew-x-6:hover{
    --transform-skew-x: -6deg;
  }

  .s1440\:hover\:-skew-x-3:hover{
    --transform-skew-x: -3deg;
  }

  .s1440\:hover\:skew-y-0:hover{
    --transform-skew-y: 0;
  }

  .s1440\:hover\:skew-y-3:hover{
    --transform-skew-y: 3deg;
  }

  .s1440\:hover\:skew-y-6:hover{
    --transform-skew-y: 6deg;
  }

  .s1440\:hover\:skew-y-12:hover{
    --transform-skew-y: 12deg;
  }

  .s1440\:hover\:-skew-y-12:hover{
    --transform-skew-y: -12deg;
  }

  .s1440\:hover\:-skew-y-6:hover{
    --transform-skew-y: -6deg;
  }

  .s1440\:hover\:-skew-y-3:hover{
    --transform-skew-y: -3deg;
  }

  .s1440\:focus\:skew-x-0:focus{
    --transform-skew-x: 0;
  }

  .s1440\:focus\:skew-x-3:focus{
    --transform-skew-x: 3deg;
  }

  .s1440\:focus\:skew-x-6:focus{
    --transform-skew-x: 6deg;
  }

  .s1440\:focus\:skew-x-12:focus{
    --transform-skew-x: 12deg;
  }

  .s1440\:focus\:-skew-x-12:focus{
    --transform-skew-x: -12deg;
  }

  .s1440\:focus\:-skew-x-6:focus{
    --transform-skew-x: -6deg;
  }

  .s1440\:focus\:-skew-x-3:focus{
    --transform-skew-x: -3deg;
  }

  .s1440\:focus\:skew-y-0:focus{
    --transform-skew-y: 0;
  }

  .s1440\:focus\:skew-y-3:focus{
    --transform-skew-y: 3deg;
  }

  .s1440\:focus\:skew-y-6:focus{
    --transform-skew-y: 6deg;
  }

  .s1440\:focus\:skew-y-12:focus{
    --transform-skew-y: 12deg;
  }

  .s1440\:focus\:-skew-y-12:focus{
    --transform-skew-y: -12deg;
  }

  .s1440\:focus\:-skew-y-6:focus{
    --transform-skew-y: -6deg;
  }

  .s1440\:focus\:-skew-y-3:focus{
    --transform-skew-y: -3deg;
  }

  .s1440\:active\:skew-x-0:active{
    --transform-skew-x: 0;
  }

  .s1440\:active\:skew-x-3:active{
    --transform-skew-x: 3deg;
  }

  .s1440\:active\:skew-x-6:active{
    --transform-skew-x: 6deg;
  }

  .s1440\:active\:skew-x-12:active{
    --transform-skew-x: 12deg;
  }

  .s1440\:active\:-skew-x-12:active{
    --transform-skew-x: -12deg;
  }

  .s1440\:active\:-skew-x-6:active{
    --transform-skew-x: -6deg;
  }

  .s1440\:active\:-skew-x-3:active{
    --transform-skew-x: -3deg;
  }

  .s1440\:active\:skew-y-0:active{
    --transform-skew-y: 0;
  }

  .s1440\:active\:skew-y-3:active{
    --transform-skew-y: 3deg;
  }

  .s1440\:active\:skew-y-6:active{
    --transform-skew-y: 6deg;
  }

  .s1440\:active\:skew-y-12:active{
    --transform-skew-y: 12deg;
  }

  .s1440\:active\:-skew-y-12:active{
    --transform-skew-y: -12deg;
  }

  .s1440\:active\:-skew-y-6:active{
    --transform-skew-y: -6deg;
  }

  .s1440\:active\:-skew-y-3:active{
    --transform-skew-y: -3deg;
  }

  .s1440\:first\:skew-x-0:first-child{
    --transform-skew-x: 0;
  }

  .s1440\:first\:skew-x-3:first-child{
    --transform-skew-x: 3deg;
  }

  .s1440\:first\:skew-x-6:first-child{
    --transform-skew-x: 6deg;
  }

  .s1440\:first\:skew-x-12:first-child{
    --transform-skew-x: 12deg;
  }

  .s1440\:first\:-skew-x-12:first-child{
    --transform-skew-x: -12deg;
  }

  .s1440\:first\:-skew-x-6:first-child{
    --transform-skew-x: -6deg;
  }

  .s1440\:first\:-skew-x-3:first-child{
    --transform-skew-x: -3deg;
  }

  .s1440\:first\:skew-y-0:first-child{
    --transform-skew-y: 0;
  }

  .s1440\:first\:skew-y-3:first-child{
    --transform-skew-y: 3deg;
  }

  .s1440\:first\:skew-y-6:first-child{
    --transform-skew-y: 6deg;
  }

  .s1440\:first\:skew-y-12:first-child{
    --transform-skew-y: 12deg;
  }

  .s1440\:first\:-skew-y-12:first-child{
    --transform-skew-y: -12deg;
  }

  .s1440\:first\:-skew-y-6:first-child{
    --transform-skew-y: -6deg;
  }

  .s1440\:first\:-skew-y-3:first-child{
    --transform-skew-y: -3deg;
  }

  .s1440\:last\:skew-x-0:last-child{
    --transform-skew-x: 0;
  }

  .s1440\:last\:skew-x-3:last-child{
    --transform-skew-x: 3deg;
  }

  .s1440\:last\:skew-x-6:last-child{
    --transform-skew-x: 6deg;
  }

  .s1440\:last\:skew-x-12:last-child{
    --transform-skew-x: 12deg;
  }

  .s1440\:last\:-skew-x-12:last-child{
    --transform-skew-x: -12deg;
  }

  .s1440\:last\:-skew-x-6:last-child{
    --transform-skew-x: -6deg;
  }

  .s1440\:last\:-skew-x-3:last-child{
    --transform-skew-x: -3deg;
  }

  .s1440\:last\:skew-y-0:last-child{
    --transform-skew-y: 0;
  }

  .s1440\:last\:skew-y-3:last-child{
    --transform-skew-y: 3deg;
  }

  .s1440\:last\:skew-y-6:last-child{
    --transform-skew-y: 6deg;
  }

  .s1440\:last\:skew-y-12:last-child{
    --transform-skew-y: 12deg;
  }

  .s1440\:last\:-skew-y-12:last-child{
    --transform-skew-y: -12deg;
  }

  .s1440\:last\:-skew-y-6:last-child{
    --transform-skew-y: -6deg;
  }

  .s1440\:last\:-skew-y-3:last-child{
    --transform-skew-y: -3deg;
  }

  .s1440\:transition-none{
    transition-property: none;
  }

  .s1440\:transition-all{
    transition-property: all;
  }

  .s1440\:transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1440\:transition-colors{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1440\:transition-opacity{
    transition-property: opacity;
  }

  .s1440\:transition-shadow{
    transition-property: box-shadow;
  }

  .s1440\:transition-transform{
    transition-property: transform;
  }

  .s1440\:hover\:transition-none:hover{
    transition-property: none;
  }

  .s1440\:hover\:transition-all:hover{
    transition-property: all;
  }

  .s1440\:hover\:transition:hover{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1440\:hover\:transition-colors:hover{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1440\:hover\:transition-opacity:hover{
    transition-property: opacity;
  }

  .s1440\:hover\:transition-shadow:hover{
    transition-property: box-shadow;
  }

  .s1440\:hover\:transition-transform:hover{
    transition-property: transform;
  }

  .s1440\:focus\:transition-none:focus{
    transition-property: none;
  }

  .s1440\:focus\:transition-all:focus{
    transition-property: all;
  }

  .s1440\:focus\:transition:focus{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1440\:focus\:transition-colors:focus{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1440\:focus\:transition-opacity:focus{
    transition-property: opacity;
  }

  .s1440\:focus\:transition-shadow:focus{
    transition-property: box-shadow;
  }

  .s1440\:focus\:transition-transform:focus{
    transition-property: transform;
  }

  .s1440\:active\:transition-none:active{
    transition-property: none;
  }

  .s1440\:active\:transition-all:active{
    transition-property: all;
  }

  .s1440\:active\:transition:active{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1440\:active\:transition-colors:active{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1440\:active\:transition-opacity:active{
    transition-property: opacity;
  }

  .s1440\:active\:transition-shadow:active{
    transition-property: box-shadow;
  }

  .s1440\:active\:transition-transform:active{
    transition-property: transform;
  }

  .s1440\:first\:transition-none:first-child{
    transition-property: none;
  }

  .s1440\:first\:transition-all:first-child{
    transition-property: all;
  }

  .s1440\:first\:transition:first-child{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1440\:first\:transition-colors:first-child{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1440\:first\:transition-opacity:first-child{
    transition-property: opacity;
  }

  .s1440\:first\:transition-shadow:first-child{
    transition-property: box-shadow;
  }

  .s1440\:first\:transition-transform:first-child{
    transition-property: transform;
  }

  .s1440\:last\:transition-none:last-child{
    transition-property: none;
  }

  .s1440\:last\:transition-all:last-child{
    transition-property: all;
  }

  .s1440\:last\:transition:last-child{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1440\:last\:transition-colors:last-child{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1440\:last\:transition-opacity:last-child{
    transition-property: opacity;
  }

  .s1440\:last\:transition-shadow:last-child{
    transition-property: box-shadow;
  }

  .s1440\:last\:transition-transform:last-child{
    transition-property: transform;
  }

  .s1440\:ease-linear{
    transition-timing-function: linear;
  }

  .s1440\:ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1440\:ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1440\:ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1440\:hover\:ease-linear:hover{
    transition-timing-function: linear;
  }

  .s1440\:hover\:ease-in:hover{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1440\:hover\:ease-out:hover{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1440\:hover\:ease-in-out:hover{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1440\:focus\:ease-linear:focus{
    transition-timing-function: linear;
  }

  .s1440\:focus\:ease-in:focus{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1440\:focus\:ease-out:focus{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1440\:focus\:ease-in-out:focus{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1440\:active\:ease-linear:active{
    transition-timing-function: linear;
  }

  .s1440\:active\:ease-in:active{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1440\:active\:ease-out:active{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1440\:active\:ease-in-out:active{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1440\:first\:ease-linear:first-child{
    transition-timing-function: linear;
  }

  .s1440\:first\:ease-in:first-child{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1440\:first\:ease-out:first-child{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1440\:first\:ease-in-out:first-child{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1440\:last\:ease-linear:last-child{
    transition-timing-function: linear;
  }

  .s1440\:last\:ease-in:last-child{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1440\:last\:ease-out:last-child{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1440\:last\:ease-in-out:last-child{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1440\:duration-75{
    transition-duration: 75ms;
  }

  .s1440\:duration-100{
    transition-duration: 100ms;
  }

  .s1440\:duration-150{
    transition-duration: 150ms;
  }

  .s1440\:duration-200{
    transition-duration: 200ms;
  }

  .s1440\:duration-300{
    transition-duration: 300ms;
  }

  .s1440\:duration-500{
    transition-duration: 500ms;
  }

  .s1440\:duration-700{
    transition-duration: 700ms;
  }

  .s1440\:duration-1000{
    transition-duration: 1000ms;
  }

  .s1440\:hover\:duration-75:hover{
    transition-duration: 75ms;
  }

  .s1440\:hover\:duration-100:hover{
    transition-duration: 100ms;
  }

  .s1440\:hover\:duration-150:hover{
    transition-duration: 150ms;
  }

  .s1440\:hover\:duration-200:hover{
    transition-duration: 200ms;
  }

  .s1440\:hover\:duration-300:hover{
    transition-duration: 300ms;
  }

  .s1440\:hover\:duration-500:hover{
    transition-duration: 500ms;
  }

  .s1440\:hover\:duration-700:hover{
    transition-duration: 700ms;
  }

  .s1440\:hover\:duration-1000:hover{
    transition-duration: 1000ms;
  }

  .s1440\:focus\:duration-75:focus{
    transition-duration: 75ms;
  }

  .s1440\:focus\:duration-100:focus{
    transition-duration: 100ms;
  }

  .s1440\:focus\:duration-150:focus{
    transition-duration: 150ms;
  }

  .s1440\:focus\:duration-200:focus{
    transition-duration: 200ms;
  }

  .s1440\:focus\:duration-300:focus{
    transition-duration: 300ms;
  }

  .s1440\:focus\:duration-500:focus{
    transition-duration: 500ms;
  }

  .s1440\:focus\:duration-700:focus{
    transition-duration: 700ms;
  }

  .s1440\:focus\:duration-1000:focus{
    transition-duration: 1000ms;
  }

  .s1440\:active\:duration-75:active{
    transition-duration: 75ms;
  }

  .s1440\:active\:duration-100:active{
    transition-duration: 100ms;
  }

  .s1440\:active\:duration-150:active{
    transition-duration: 150ms;
  }

  .s1440\:active\:duration-200:active{
    transition-duration: 200ms;
  }

  .s1440\:active\:duration-300:active{
    transition-duration: 300ms;
  }

  .s1440\:active\:duration-500:active{
    transition-duration: 500ms;
  }

  .s1440\:active\:duration-700:active{
    transition-duration: 700ms;
  }

  .s1440\:active\:duration-1000:active{
    transition-duration: 1000ms;
  }

  .s1440\:first\:duration-75:first-child{
    transition-duration: 75ms;
  }

  .s1440\:first\:duration-100:first-child{
    transition-duration: 100ms;
  }

  .s1440\:first\:duration-150:first-child{
    transition-duration: 150ms;
  }

  .s1440\:first\:duration-200:first-child{
    transition-duration: 200ms;
  }

  .s1440\:first\:duration-300:first-child{
    transition-duration: 300ms;
  }

  .s1440\:first\:duration-500:first-child{
    transition-duration: 500ms;
  }

  .s1440\:first\:duration-700:first-child{
    transition-duration: 700ms;
  }

  .s1440\:first\:duration-1000:first-child{
    transition-duration: 1000ms;
  }

  .s1440\:last\:duration-75:last-child{
    transition-duration: 75ms;
  }

  .s1440\:last\:duration-100:last-child{
    transition-duration: 100ms;
  }

  .s1440\:last\:duration-150:last-child{
    transition-duration: 150ms;
  }

  .s1440\:last\:duration-200:last-child{
    transition-duration: 200ms;
  }

  .s1440\:last\:duration-300:last-child{
    transition-duration: 300ms;
  }

  .s1440\:last\:duration-500:last-child{
    transition-duration: 500ms;
  }

  .s1440\:last\:duration-700:last-child{
    transition-duration: 700ms;
  }

  .s1440\:last\:duration-1000:last-child{
    transition-duration: 1000ms;
  }

  .s1440\:delay-75{
    transition-delay: 75ms;
  }

  .s1440\:delay-100{
    transition-delay: 100ms;
  }

  .s1440\:delay-150{
    transition-delay: 150ms;
  }

  .s1440\:delay-200{
    transition-delay: 200ms;
  }

  .s1440\:delay-300{
    transition-delay: 300ms;
  }

  .s1440\:delay-500{
    transition-delay: 500ms;
  }

  .s1440\:delay-700{
    transition-delay: 700ms;
  }

  .s1440\:delay-1000{
    transition-delay: 1000ms;
  }

  .s1440\:hover\:delay-75:hover{
    transition-delay: 75ms;
  }

  .s1440\:hover\:delay-100:hover{
    transition-delay: 100ms;
  }

  .s1440\:hover\:delay-150:hover{
    transition-delay: 150ms;
  }

  .s1440\:hover\:delay-200:hover{
    transition-delay: 200ms;
  }

  .s1440\:hover\:delay-300:hover{
    transition-delay: 300ms;
  }

  .s1440\:hover\:delay-500:hover{
    transition-delay: 500ms;
  }

  .s1440\:hover\:delay-700:hover{
    transition-delay: 700ms;
  }

  .s1440\:hover\:delay-1000:hover{
    transition-delay: 1000ms;
  }

  .s1440\:focus\:delay-75:focus{
    transition-delay: 75ms;
  }

  .s1440\:focus\:delay-100:focus{
    transition-delay: 100ms;
  }

  .s1440\:focus\:delay-150:focus{
    transition-delay: 150ms;
  }

  .s1440\:focus\:delay-200:focus{
    transition-delay: 200ms;
  }

  .s1440\:focus\:delay-300:focus{
    transition-delay: 300ms;
  }

  .s1440\:focus\:delay-500:focus{
    transition-delay: 500ms;
  }

  .s1440\:focus\:delay-700:focus{
    transition-delay: 700ms;
  }

  .s1440\:focus\:delay-1000:focus{
    transition-delay: 1000ms;
  }

  .s1440\:active\:delay-75:active{
    transition-delay: 75ms;
  }

  .s1440\:active\:delay-100:active{
    transition-delay: 100ms;
  }

  .s1440\:active\:delay-150:active{
    transition-delay: 150ms;
  }

  .s1440\:active\:delay-200:active{
    transition-delay: 200ms;
  }

  .s1440\:active\:delay-300:active{
    transition-delay: 300ms;
  }

  .s1440\:active\:delay-500:active{
    transition-delay: 500ms;
  }

  .s1440\:active\:delay-700:active{
    transition-delay: 700ms;
  }

  .s1440\:active\:delay-1000:active{
    transition-delay: 1000ms;
  }

  .s1440\:first\:delay-75:first-child{
    transition-delay: 75ms;
  }

  .s1440\:first\:delay-100:first-child{
    transition-delay: 100ms;
  }

  .s1440\:first\:delay-150:first-child{
    transition-delay: 150ms;
  }

  .s1440\:first\:delay-200:first-child{
    transition-delay: 200ms;
  }

  .s1440\:first\:delay-300:first-child{
    transition-delay: 300ms;
  }

  .s1440\:first\:delay-500:first-child{
    transition-delay: 500ms;
  }

  .s1440\:first\:delay-700:first-child{
    transition-delay: 700ms;
  }

  .s1440\:first\:delay-1000:first-child{
    transition-delay: 1000ms;
  }

  .s1440\:last\:delay-75:last-child{
    transition-delay: 75ms;
  }

  .s1440\:last\:delay-100:last-child{
    transition-delay: 100ms;
  }

  .s1440\:last\:delay-150:last-child{
    transition-delay: 150ms;
  }

  .s1440\:last\:delay-200:last-child{
    transition-delay: 200ms;
  }

  .s1440\:last\:delay-300:last-child{
    transition-delay: 300ms;
  }

  .s1440\:last\:delay-500:last-child{
    transition-delay: 500ms;
  }

  .s1440\:last\:delay-700:last-child{
    transition-delay: 700ms;
  }

  .s1440\:last\:delay-1000:last-child{
    transition-delay: 1000ms;
  }

  .s1440\:shadow-border-2-black{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1440\:shadow-border-4-black{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1440\:shadow-border-black{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1440\:shadow-border-2-transparent{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1440\:shadow-border-4-transparent{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1440\:shadow-border-transparent{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1440\:shadow-border-2-error{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:shadow-border-4-error{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:shadow-border-error{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:shadow-border-2-success{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:shadow-border-4-success{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:shadow-border-success{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:shadow-border-2-white-10{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1440\:shadow-border-2-white-20{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1440\:shadow-border-2-white{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1440\:shadow-border-4-white-10{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1440\:shadow-border-4-white-20{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1440\:shadow-border-4-white{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1440\:shadow-border-white-10{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1440\:shadow-border-white-20{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1440\:shadow-border-white{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1440\:shadow-border-2-cheeto{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1440\:shadow-border-2-cheeto-very-light{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1440\:shadow-border-2-cheeto-light{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1440\:shadow-border-2-cheeto-dark{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1440\:shadow-border-2-cheeto-hocus{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1440\:shadow-border-2-cheeto-active{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1440\:shadow-border-2-cheeto-ml-plus{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1440\:shadow-border-2-cheeto-banner{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1440\:shadow-border-4-cheeto{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1440\:shadow-border-4-cheeto-very-light{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1440\:shadow-border-4-cheeto-light{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1440\:shadow-border-4-cheeto-dark{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1440\:shadow-border-4-cheeto-hocus{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1440\:shadow-border-4-cheeto-active{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1440\:shadow-border-4-cheeto-ml-plus{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1440\:shadow-border-4-cheeto-banner{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1440\:shadow-border-cheeto{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1440\:shadow-border-cheeto-very-light{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1440\:shadow-border-cheeto-light{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1440\:shadow-border-cheeto-dark{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1440\:shadow-border-cheeto-hocus{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1440\:shadow-border-cheeto-active{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1440\:shadow-border-cheeto-ml-plus{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1440\:shadow-border-cheeto-banner{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1440\:shadow-border-2-gracy-1{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1440\:shadow-border-2-gracy-10{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1440\:shadow-border-2-gracy-20{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1440\:shadow-border-2-gracy-30{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1440\:shadow-border-2-gracy-40{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1440\:shadow-border-2-gracy-50{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1440\:shadow-border-2-gracy-60{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1440\:shadow-border-2-gracy-70{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1440\:shadow-border-2-gracy-80{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1440\:shadow-border-2-gracy-90{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1440\:shadow-border-2-gracy-100{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1440\:shadow-border-2-gracy{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1440\:shadow-border-2-gracy-overlay-90{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1440\:shadow-border-4-gracy-1{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1440\:shadow-border-4-gracy-10{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1440\:shadow-border-4-gracy-20{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1440\:shadow-border-4-gracy-30{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1440\:shadow-border-4-gracy-40{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1440\:shadow-border-4-gracy-50{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1440\:shadow-border-4-gracy-60{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1440\:shadow-border-4-gracy-70{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1440\:shadow-border-4-gracy-80{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1440\:shadow-border-4-gracy-90{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1440\:shadow-border-4-gracy-100{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1440\:shadow-border-4-gracy{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1440\:shadow-border-4-gracy-overlay-90{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1440\:shadow-border-gracy-1{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1440\:shadow-border-gracy-10{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1440\:shadow-border-gracy-20{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1440\:shadow-border-gracy-30{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1440\:shadow-border-gracy-40{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1440\:shadow-border-gracy-50{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1440\:shadow-border-gracy-60{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1440\:shadow-border-gracy-70{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1440\:shadow-border-gracy-80{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1440\:shadow-border-gracy-90{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1440\:shadow-border-gracy-100{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1440\:shadow-border-gracy{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1440\:shadow-border-gracy-overlay-90{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1440\:shadow-border-2-login-0{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1440\:shadow-border-2-login-1{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:shadow-border-2-login-2{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1440\:shadow-border-2-login-3{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:shadow-border-2-login-4{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:shadow-border-2-login-5{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1440\:shadow-border-2-login-6{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:shadow-border-2-login-bold{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-strip{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-stripColors{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-trap{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1440\:shadow-border-2-login-zalgo{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1440\:shadow-border-2-login-zebra{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-rainbow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-random{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-america{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-reset{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-dim{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-italic{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-underline{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-inverse{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-hidden{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-strikethrough{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-black{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-red{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-green{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-yellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-blue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-magenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-cyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-white{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-gray{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-grey{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-brightRed{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-brightGreen{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-brightYellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-brightBlue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-brightMagenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-brightCyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-brightWhite{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgBlack{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgRed{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgGreen{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgYellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgBlue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgMagenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgCyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgWhite{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgGray{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgGrey{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgBrightRed{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgBrightGreen{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgBrightYellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgBrightBlue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgBrightMagenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgBrightCyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-bgBrightWhite{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-blackBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-redBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-greenBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-yellowBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-blueBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-magentaBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-cyanBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-2-login-whiteBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-0{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1440\:shadow-border-4-login-1{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:shadow-border-4-login-2{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1440\:shadow-border-4-login-3{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:shadow-border-4-login-4{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:shadow-border-4-login-5{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1440\:shadow-border-4-login-6{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:shadow-border-4-login-bold{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-strip{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-stripColors{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-trap{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1440\:shadow-border-4-login-zalgo{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1440\:shadow-border-4-login-zebra{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-rainbow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-random{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-america{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-reset{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-dim{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-italic{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-underline{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-inverse{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-hidden{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-strikethrough{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-black{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-red{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-green{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-yellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-blue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-magenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-cyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-white{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-gray{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-grey{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-brightRed{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-brightGreen{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-brightYellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-brightBlue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-brightMagenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-brightCyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-brightWhite{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgBlack{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgRed{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgGreen{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgYellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgBlue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgMagenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgCyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgWhite{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgGray{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgGrey{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgBrightRed{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgBrightGreen{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgBrightYellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgBrightBlue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgBrightMagenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgBrightCyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-bgBrightWhite{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-blackBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-redBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-greenBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-yellowBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-blueBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-magentaBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-cyanBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-4-login-whiteBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:shadow-border-login-0{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1440\:shadow-border-login-1{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:shadow-border-login-2{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1440\:shadow-border-login-3{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:shadow-border-login-4{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:shadow-border-login-5{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1440\:shadow-border-login-6{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:shadow-border-login-bold{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-strip{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-stripColors{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-trap{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1440\:shadow-border-login-zalgo{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1440\:shadow-border-login-zebra{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-rainbow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-random{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-america{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-reset{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-dim{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-italic{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-underline{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-inverse{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-hidden{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-strikethrough{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-black{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-red{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-green{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-yellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-blue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-magenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-cyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-white{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-gray{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-grey{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-brightRed{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-brightGreen{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-brightYellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-brightBlue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-brightMagenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-brightCyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-brightWhite{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgBlack{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgRed{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgGreen{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgYellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgBlue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgMagenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgCyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgWhite{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgGray{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgGrey{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgBrightRed{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgBrightGreen{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgBrightYellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgBrightBlue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgBrightMagenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgBrightCyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-bgBrightWhite{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-blackBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-redBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-greenBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-yellowBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-blueBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-magentaBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-cyanBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-login-whiteBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:shadow-border-2-olive-light{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1440\:shadow-border-2-olive-drab{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:shadow-border-2-olive-dark{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1440\:shadow-border-4-olive-light{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1440\:shadow-border-4-olive-drab{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:shadow-border-4-olive-dark{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1440\:shadow-border-olive-light{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1440\:shadow-border-olive-drab{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:shadow-border-olive-dark{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1440\:shadow-border-2-daisy-light{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1440\:shadow-border-4-daisy-light{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1440\:shadow-border-daisy-light{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1440\:shadow-border-2-feedback-gumby{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1440\:shadow-border-2-feedback-daisy{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1440\:shadow-border-2-feedback-pokey{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1440\:shadow-border-2-feedback-aster{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1440\:shadow-border-2-feedback-aster-dark{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1440\:shadow-border-2-feedback-roxo{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1440\:shadow-border-2-feedback-error{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:shadow-border-2-feedback-success{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:shadow-border-4-feedback-gumby{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1440\:shadow-border-4-feedback-daisy{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1440\:shadow-border-4-feedback-pokey{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1440\:shadow-border-4-feedback-aster{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1440\:shadow-border-4-feedback-aster-dark{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1440\:shadow-border-4-feedback-roxo{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1440\:shadow-border-4-feedback-error{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:shadow-border-4-feedback-success{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:shadow-border-feedback-gumby{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1440\:shadow-border-feedback-daisy{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1440\:shadow-border-feedback-pokey{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1440\:shadow-border-feedback-aster{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1440\:shadow-border-feedback-aster-dark{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1440\:shadow-border-feedback-roxo{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1440\:shadow-border-feedback-error{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:shadow-border-feedback-success{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:shadow-border-2-functional-aoki{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1440\:shadow-border-2-functional-aoki-dark{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1440\:shadow-border-2-functional-aoki-hocus{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1440\:shadow-border-2-functional-aoki-active{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1440\:shadow-border-2-functional-aoki-light{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1440\:shadow-border-2-functional-kermit{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1440\:shadow-border-4-functional-aoki{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1440\:shadow-border-4-functional-aoki-dark{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1440\:shadow-border-4-functional-aoki-hocus{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1440\:shadow-border-4-functional-aoki-active{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1440\:shadow-border-4-functional-aoki-light{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1440\:shadow-border-4-functional-kermit{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1440\:shadow-border-functional-aoki{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1440\:shadow-border-functional-aoki-dark{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1440\:shadow-border-functional-aoki-hocus{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1440\:shadow-border-functional-aoki-active{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1440\:shadow-border-functional-aoki-light{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1440\:shadow-border-functional-kermit{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1440\:shadow-border-2-mixlabPlus-light{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1440\:shadow-border-4-mixlabPlus-light{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1440\:shadow-border-mixlabPlus-light{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1440\:shadow-border-2-primary-orange-light{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1440\:shadow-border-4-primary-orange-light{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1440\:shadow-border-primary-orange-light{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1440\:shadow-border-2-off-white{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1440\:shadow-border-4-off-white{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1440\:shadow-border-off-white{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .s1440\:hover\:shadow-border-2-black:hover{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1440\:hover\:shadow-border-4-black:hover{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1440\:hover\:shadow-border-black:hover{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1440\:hover\:shadow-border-2-transparent:hover{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1440\:hover\:shadow-border-4-transparent:hover{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1440\:hover\:shadow-border-transparent:hover{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1440\:hover\:shadow-border-2-error:hover{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:hover\:shadow-border-4-error:hover{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:hover\:shadow-border-error:hover{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:hover\:shadow-border-2-success:hover{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:hover\:shadow-border-4-success:hover{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:hover\:shadow-border-success:hover{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:hover\:shadow-border-2-white-10:hover{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1440\:hover\:shadow-border-2-white-20:hover{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1440\:hover\:shadow-border-2-white:hover{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1440\:hover\:shadow-border-4-white-10:hover{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1440\:hover\:shadow-border-4-white-20:hover{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1440\:hover\:shadow-border-4-white:hover{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1440\:hover\:shadow-border-white-10:hover{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1440\:hover\:shadow-border-white-20:hover{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1440\:hover\:shadow-border-white:hover{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1440\:hover\:shadow-border-2-cheeto:hover{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1440\:hover\:shadow-border-2-cheeto-very-light:hover{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1440\:hover\:shadow-border-2-cheeto-light:hover{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1440\:hover\:shadow-border-2-cheeto-dark:hover{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1440\:hover\:shadow-border-2-cheeto-hocus:hover{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1440\:hover\:shadow-border-2-cheeto-active:hover{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1440\:hover\:shadow-border-2-cheeto-ml-plus:hover{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1440\:hover\:shadow-border-2-cheeto-banner:hover{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1440\:hover\:shadow-border-4-cheeto:hover{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1440\:hover\:shadow-border-4-cheeto-very-light:hover{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1440\:hover\:shadow-border-4-cheeto-light:hover{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1440\:hover\:shadow-border-4-cheeto-dark:hover{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1440\:hover\:shadow-border-4-cheeto-hocus:hover{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1440\:hover\:shadow-border-4-cheeto-active:hover{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1440\:hover\:shadow-border-4-cheeto-ml-plus:hover{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1440\:hover\:shadow-border-4-cheeto-banner:hover{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1440\:hover\:shadow-border-cheeto:hover{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1440\:hover\:shadow-border-cheeto-very-light:hover{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1440\:hover\:shadow-border-cheeto-light:hover{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1440\:hover\:shadow-border-cheeto-dark:hover{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1440\:hover\:shadow-border-cheeto-hocus:hover{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1440\:hover\:shadow-border-cheeto-active:hover{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1440\:hover\:shadow-border-cheeto-ml-plus:hover{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1440\:hover\:shadow-border-cheeto-banner:hover{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1440\:hover\:shadow-border-2-gracy-1:hover{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1440\:hover\:shadow-border-2-gracy-10:hover{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1440\:hover\:shadow-border-2-gracy-20:hover{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1440\:hover\:shadow-border-2-gracy-30:hover{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1440\:hover\:shadow-border-2-gracy-40:hover{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1440\:hover\:shadow-border-2-gracy-50:hover{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1440\:hover\:shadow-border-2-gracy-60:hover{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1440\:hover\:shadow-border-2-gracy-70:hover{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1440\:hover\:shadow-border-2-gracy-80:hover{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1440\:hover\:shadow-border-2-gracy-90:hover{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1440\:hover\:shadow-border-2-gracy-100:hover{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1440\:hover\:shadow-border-2-gracy:hover{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1440\:hover\:shadow-border-2-gracy-overlay-90:hover{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1440\:hover\:shadow-border-4-gracy-1:hover{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1440\:hover\:shadow-border-4-gracy-10:hover{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1440\:hover\:shadow-border-4-gracy-20:hover{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1440\:hover\:shadow-border-4-gracy-30:hover{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1440\:hover\:shadow-border-4-gracy-40:hover{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1440\:hover\:shadow-border-4-gracy-50:hover{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1440\:hover\:shadow-border-4-gracy-60:hover{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1440\:hover\:shadow-border-4-gracy-70:hover{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1440\:hover\:shadow-border-4-gracy-80:hover{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1440\:hover\:shadow-border-4-gracy-90:hover{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1440\:hover\:shadow-border-4-gracy-100:hover{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1440\:hover\:shadow-border-4-gracy:hover{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1440\:hover\:shadow-border-4-gracy-overlay-90:hover{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1440\:hover\:shadow-border-gracy-1:hover{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1440\:hover\:shadow-border-gracy-10:hover{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1440\:hover\:shadow-border-gracy-20:hover{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1440\:hover\:shadow-border-gracy-30:hover{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1440\:hover\:shadow-border-gracy-40:hover{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1440\:hover\:shadow-border-gracy-50:hover{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1440\:hover\:shadow-border-gracy-60:hover{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1440\:hover\:shadow-border-gracy-70:hover{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1440\:hover\:shadow-border-gracy-80:hover{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1440\:hover\:shadow-border-gracy-90:hover{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1440\:hover\:shadow-border-gracy-100:hover{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1440\:hover\:shadow-border-gracy:hover{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1440\:hover\:shadow-border-gracy-overlay-90:hover{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1440\:hover\:shadow-border-2-login-0:hover{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1440\:hover\:shadow-border-2-login-1:hover{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:hover\:shadow-border-2-login-2:hover{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1440\:hover\:shadow-border-2-login-3:hover{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:hover\:shadow-border-2-login-4:hover{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:hover\:shadow-border-2-login-5:hover{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1440\:hover\:shadow-border-2-login-6:hover{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:hover\:shadow-border-2-login-bold:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-strip:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-stripColors:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-trap:hover{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1440\:hover\:shadow-border-2-login-zalgo:hover{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1440\:hover\:shadow-border-2-login-zebra:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-rainbow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-random:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-america:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-reset:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-dim:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-italic:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-underline:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-inverse:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-hidden:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-strikethrough:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-black:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-red:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-green:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-yellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-blue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-magenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-cyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-white:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-gray:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-grey:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-brightRed:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-brightGreen:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-brightYellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-brightBlue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-brightMagenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-brightCyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-brightWhite:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgBlack:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgRed:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgGreen:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgYellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgBlue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgMagenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgCyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgWhite:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgGray:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgGrey:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgBrightRed:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgBrightGreen:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgBrightYellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgBrightBlue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgBrightMagenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgBrightCyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-bgBrightWhite:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-blackBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-redBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-greenBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-yellowBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-blueBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-magentaBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-cyanBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-login-whiteBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-0:hover{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1440\:hover\:shadow-border-4-login-1:hover{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:hover\:shadow-border-4-login-2:hover{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1440\:hover\:shadow-border-4-login-3:hover{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:hover\:shadow-border-4-login-4:hover{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:hover\:shadow-border-4-login-5:hover{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1440\:hover\:shadow-border-4-login-6:hover{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:hover\:shadow-border-4-login-bold:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-strip:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-stripColors:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-trap:hover{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1440\:hover\:shadow-border-4-login-zalgo:hover{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1440\:hover\:shadow-border-4-login-zebra:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-rainbow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-random:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-america:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-reset:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-dim:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-italic:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-underline:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-inverse:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-hidden:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-strikethrough:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-black:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-red:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-green:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-yellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-blue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-magenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-cyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-white:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-gray:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-grey:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-brightRed:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-brightGreen:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-brightYellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-brightBlue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-brightMagenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-brightCyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-brightWhite:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgBlack:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgRed:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgGreen:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgYellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgBlue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgMagenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgCyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgWhite:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgGray:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgGrey:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgBrightRed:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgBrightGreen:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgBrightYellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgBrightBlue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgBrightMagenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgBrightCyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-bgBrightWhite:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-blackBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-redBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-greenBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-yellowBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-blueBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-magentaBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-cyanBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-4-login-whiteBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-0:hover{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1440\:hover\:shadow-border-login-1:hover{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:hover\:shadow-border-login-2:hover{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1440\:hover\:shadow-border-login-3:hover{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:hover\:shadow-border-login-4:hover{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:hover\:shadow-border-login-5:hover{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1440\:hover\:shadow-border-login-6:hover{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:hover\:shadow-border-login-bold:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-strip:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-stripColors:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-trap:hover{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1440\:hover\:shadow-border-login-zalgo:hover{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1440\:hover\:shadow-border-login-zebra:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-rainbow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-random:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-america:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-reset:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-dim:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-italic:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-underline:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-inverse:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-hidden:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-strikethrough:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-black:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-red:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-green:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-yellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-blue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-magenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-cyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-white:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-gray:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-grey:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-brightRed:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-brightGreen:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-brightYellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-brightBlue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-brightMagenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-brightCyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-brightWhite:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgBlack:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgRed:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgGreen:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgYellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgBlue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgMagenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgCyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgWhite:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgGray:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgGrey:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgBrightRed:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgBrightGreen:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgBrightYellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgBrightBlue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgBrightMagenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgBrightCyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-bgBrightWhite:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-blackBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-redBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-greenBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-yellowBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-blueBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-magentaBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-cyanBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-login-whiteBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:hover\:shadow-border-2-olive-light:hover{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1440\:hover\:shadow-border-2-olive-drab:hover{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:hover\:shadow-border-2-olive-dark:hover{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1440\:hover\:shadow-border-4-olive-light:hover{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1440\:hover\:shadow-border-4-olive-drab:hover{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:hover\:shadow-border-4-olive-dark:hover{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1440\:hover\:shadow-border-olive-light:hover{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1440\:hover\:shadow-border-olive-drab:hover{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:hover\:shadow-border-olive-dark:hover{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1440\:hover\:shadow-border-2-daisy-light:hover{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1440\:hover\:shadow-border-4-daisy-light:hover{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1440\:hover\:shadow-border-daisy-light:hover{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1440\:hover\:shadow-border-2-feedback-gumby:hover{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1440\:hover\:shadow-border-2-feedback-daisy:hover{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1440\:hover\:shadow-border-2-feedback-pokey:hover{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1440\:hover\:shadow-border-2-feedback-aster:hover{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1440\:hover\:shadow-border-2-feedback-aster-dark:hover{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1440\:hover\:shadow-border-2-feedback-roxo:hover{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1440\:hover\:shadow-border-2-feedback-error:hover{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:hover\:shadow-border-2-feedback-success:hover{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:hover\:shadow-border-4-feedback-gumby:hover{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1440\:hover\:shadow-border-4-feedback-daisy:hover{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1440\:hover\:shadow-border-4-feedback-pokey:hover{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1440\:hover\:shadow-border-4-feedback-aster:hover{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1440\:hover\:shadow-border-4-feedback-aster-dark:hover{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1440\:hover\:shadow-border-4-feedback-roxo:hover{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1440\:hover\:shadow-border-4-feedback-error:hover{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:hover\:shadow-border-4-feedback-success:hover{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:hover\:shadow-border-feedback-gumby:hover{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1440\:hover\:shadow-border-feedback-daisy:hover{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1440\:hover\:shadow-border-feedback-pokey:hover{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1440\:hover\:shadow-border-feedback-aster:hover{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1440\:hover\:shadow-border-feedback-aster-dark:hover{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1440\:hover\:shadow-border-feedback-roxo:hover{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1440\:hover\:shadow-border-feedback-error:hover{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:hover\:shadow-border-feedback-success:hover{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:hover\:shadow-border-2-functional-aoki:hover{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1440\:hover\:shadow-border-2-functional-aoki-dark:hover{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1440\:hover\:shadow-border-2-functional-aoki-hocus:hover{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1440\:hover\:shadow-border-2-functional-aoki-active:hover{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1440\:hover\:shadow-border-2-functional-aoki-light:hover{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1440\:hover\:shadow-border-2-functional-kermit:hover{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1440\:hover\:shadow-border-4-functional-aoki:hover{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1440\:hover\:shadow-border-4-functional-aoki-dark:hover{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1440\:hover\:shadow-border-4-functional-aoki-hocus:hover{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1440\:hover\:shadow-border-4-functional-aoki-active:hover{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1440\:hover\:shadow-border-4-functional-aoki-light:hover{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1440\:hover\:shadow-border-4-functional-kermit:hover{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1440\:hover\:shadow-border-functional-aoki:hover{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1440\:hover\:shadow-border-functional-aoki-dark:hover{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1440\:hover\:shadow-border-functional-aoki-hocus:hover{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1440\:hover\:shadow-border-functional-aoki-active:hover{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1440\:hover\:shadow-border-functional-aoki-light:hover{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1440\:hover\:shadow-border-functional-kermit:hover{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1440\:hover\:shadow-border-2-mixlabPlus-light:hover{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1440\:hover\:shadow-border-4-mixlabPlus-light:hover{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1440\:hover\:shadow-border-mixlabPlus-light:hover{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1440\:hover\:shadow-border-2-primary-orange-light:hover{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1440\:hover\:shadow-border-4-primary-orange-light:hover{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1440\:hover\:shadow-border-primary-orange-light:hover{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1440\:hover\:shadow-border-2-off-white:hover{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1440\:hover\:shadow-border-4-off-white:hover{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1440\:hover\:shadow-border-off-white:hover{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .s1440\:focus\:shadow-border-2-black:focus{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1440\:focus\:shadow-border-4-black:focus{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1440\:focus\:shadow-border-black:focus{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1440\:focus\:shadow-border-2-transparent:focus{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1440\:focus\:shadow-border-4-transparent:focus{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1440\:focus\:shadow-border-transparent:focus{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1440\:focus\:shadow-border-2-error:focus{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:focus\:shadow-border-4-error:focus{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:focus\:shadow-border-error:focus{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:focus\:shadow-border-2-success:focus{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:focus\:shadow-border-4-success:focus{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:focus\:shadow-border-success:focus{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:focus\:shadow-border-2-white-10:focus{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1440\:focus\:shadow-border-2-white-20:focus{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1440\:focus\:shadow-border-2-white:focus{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1440\:focus\:shadow-border-4-white-10:focus{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1440\:focus\:shadow-border-4-white-20:focus{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1440\:focus\:shadow-border-4-white:focus{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1440\:focus\:shadow-border-white-10:focus{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1440\:focus\:shadow-border-white-20:focus{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1440\:focus\:shadow-border-white:focus{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1440\:focus\:shadow-border-2-cheeto:focus{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1440\:focus\:shadow-border-2-cheeto-very-light:focus{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1440\:focus\:shadow-border-2-cheeto-light:focus{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1440\:focus\:shadow-border-2-cheeto-dark:focus{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1440\:focus\:shadow-border-2-cheeto-hocus:focus{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1440\:focus\:shadow-border-2-cheeto-active:focus{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1440\:focus\:shadow-border-2-cheeto-ml-plus:focus{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1440\:focus\:shadow-border-2-cheeto-banner:focus{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1440\:focus\:shadow-border-4-cheeto:focus{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1440\:focus\:shadow-border-4-cheeto-very-light:focus{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1440\:focus\:shadow-border-4-cheeto-light:focus{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1440\:focus\:shadow-border-4-cheeto-dark:focus{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1440\:focus\:shadow-border-4-cheeto-hocus:focus{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1440\:focus\:shadow-border-4-cheeto-active:focus{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1440\:focus\:shadow-border-4-cheeto-ml-plus:focus{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1440\:focus\:shadow-border-4-cheeto-banner:focus{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1440\:focus\:shadow-border-cheeto:focus{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1440\:focus\:shadow-border-cheeto-very-light:focus{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1440\:focus\:shadow-border-cheeto-light:focus{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1440\:focus\:shadow-border-cheeto-dark:focus{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1440\:focus\:shadow-border-cheeto-hocus:focus{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1440\:focus\:shadow-border-cheeto-active:focus{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1440\:focus\:shadow-border-cheeto-ml-plus:focus{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1440\:focus\:shadow-border-cheeto-banner:focus{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1440\:focus\:shadow-border-2-gracy-1:focus{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1440\:focus\:shadow-border-2-gracy-10:focus{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1440\:focus\:shadow-border-2-gracy-20:focus{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1440\:focus\:shadow-border-2-gracy-30:focus{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1440\:focus\:shadow-border-2-gracy-40:focus{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1440\:focus\:shadow-border-2-gracy-50:focus{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1440\:focus\:shadow-border-2-gracy-60:focus{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1440\:focus\:shadow-border-2-gracy-70:focus{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1440\:focus\:shadow-border-2-gracy-80:focus{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1440\:focus\:shadow-border-2-gracy-90:focus{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1440\:focus\:shadow-border-2-gracy-100:focus{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1440\:focus\:shadow-border-2-gracy:focus{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1440\:focus\:shadow-border-2-gracy-overlay-90:focus{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1440\:focus\:shadow-border-4-gracy-1:focus{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1440\:focus\:shadow-border-4-gracy-10:focus{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1440\:focus\:shadow-border-4-gracy-20:focus{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1440\:focus\:shadow-border-4-gracy-30:focus{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1440\:focus\:shadow-border-4-gracy-40:focus{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1440\:focus\:shadow-border-4-gracy-50:focus{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1440\:focus\:shadow-border-4-gracy-60:focus{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1440\:focus\:shadow-border-4-gracy-70:focus{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1440\:focus\:shadow-border-4-gracy-80:focus{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1440\:focus\:shadow-border-4-gracy-90:focus{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1440\:focus\:shadow-border-4-gracy-100:focus{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1440\:focus\:shadow-border-4-gracy:focus{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1440\:focus\:shadow-border-4-gracy-overlay-90:focus{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1440\:focus\:shadow-border-gracy-1:focus{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1440\:focus\:shadow-border-gracy-10:focus{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1440\:focus\:shadow-border-gracy-20:focus{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1440\:focus\:shadow-border-gracy-30:focus{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1440\:focus\:shadow-border-gracy-40:focus{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1440\:focus\:shadow-border-gracy-50:focus{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1440\:focus\:shadow-border-gracy-60:focus{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1440\:focus\:shadow-border-gracy-70:focus{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1440\:focus\:shadow-border-gracy-80:focus{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1440\:focus\:shadow-border-gracy-90:focus{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1440\:focus\:shadow-border-gracy-100:focus{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1440\:focus\:shadow-border-gracy:focus{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1440\:focus\:shadow-border-gracy-overlay-90:focus{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1440\:focus\:shadow-border-2-login-0:focus{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1440\:focus\:shadow-border-2-login-1:focus{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:focus\:shadow-border-2-login-2:focus{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1440\:focus\:shadow-border-2-login-3:focus{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:focus\:shadow-border-2-login-4:focus{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:focus\:shadow-border-2-login-5:focus{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1440\:focus\:shadow-border-2-login-6:focus{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:focus\:shadow-border-2-login-bold:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-strip:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-stripColors:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-trap:focus{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1440\:focus\:shadow-border-2-login-zalgo:focus{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1440\:focus\:shadow-border-2-login-zebra:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-rainbow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-random:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-america:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-reset:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-dim:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-italic:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-underline:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-inverse:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-hidden:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-strikethrough:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-black:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-red:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-green:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-yellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-blue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-magenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-cyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-white:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-gray:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-grey:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-brightRed:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-brightGreen:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-brightYellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-brightBlue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-brightMagenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-brightCyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-brightWhite:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgBlack:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgRed:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgGreen:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgYellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgBlue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgMagenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgCyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgWhite:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgGray:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgGrey:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgBrightRed:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgBrightGreen:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgBrightYellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgBrightBlue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgBrightMagenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgBrightCyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-bgBrightWhite:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-blackBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-redBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-greenBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-yellowBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-blueBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-magentaBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-cyanBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-login-whiteBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-0:focus{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1440\:focus\:shadow-border-4-login-1:focus{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:focus\:shadow-border-4-login-2:focus{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1440\:focus\:shadow-border-4-login-3:focus{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:focus\:shadow-border-4-login-4:focus{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:focus\:shadow-border-4-login-5:focus{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1440\:focus\:shadow-border-4-login-6:focus{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:focus\:shadow-border-4-login-bold:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-strip:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-stripColors:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-trap:focus{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1440\:focus\:shadow-border-4-login-zalgo:focus{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1440\:focus\:shadow-border-4-login-zebra:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-rainbow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-random:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-america:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-reset:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-dim:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-italic:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-underline:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-inverse:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-hidden:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-strikethrough:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-black:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-red:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-green:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-yellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-blue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-magenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-cyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-white:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-gray:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-grey:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-brightRed:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-brightGreen:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-brightYellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-brightBlue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-brightMagenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-brightCyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-brightWhite:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgBlack:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgRed:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgGreen:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgYellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgBlue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgMagenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgCyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgWhite:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgGray:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgGrey:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgBrightRed:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgBrightGreen:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgBrightYellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgBrightBlue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgBrightMagenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgBrightCyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-bgBrightWhite:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-blackBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-redBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-greenBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-yellowBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-blueBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-magentaBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-cyanBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-4-login-whiteBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-0:focus{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1440\:focus\:shadow-border-login-1:focus{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:focus\:shadow-border-login-2:focus{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1440\:focus\:shadow-border-login-3:focus{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:focus\:shadow-border-login-4:focus{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:focus\:shadow-border-login-5:focus{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1440\:focus\:shadow-border-login-6:focus{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:focus\:shadow-border-login-bold:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-strip:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-stripColors:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-trap:focus{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1440\:focus\:shadow-border-login-zalgo:focus{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1440\:focus\:shadow-border-login-zebra:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-rainbow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-random:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-america:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-reset:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-dim:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-italic:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-underline:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-inverse:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-hidden:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-strikethrough:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-black:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-red:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-green:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-yellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-blue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-magenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-cyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-white:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-gray:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-grey:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-brightRed:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-brightGreen:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-brightYellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-brightBlue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-brightMagenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-brightCyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-brightWhite:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgBlack:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgRed:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgGreen:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgYellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgBlue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgMagenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgCyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgWhite:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgGray:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgGrey:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgBrightRed:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgBrightGreen:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgBrightYellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgBrightBlue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgBrightMagenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgBrightCyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-bgBrightWhite:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-blackBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-redBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-greenBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-yellowBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-blueBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-magentaBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-cyanBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-login-whiteBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:focus\:shadow-border-2-olive-light:focus{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1440\:focus\:shadow-border-2-olive-drab:focus{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:focus\:shadow-border-2-olive-dark:focus{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1440\:focus\:shadow-border-4-olive-light:focus{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1440\:focus\:shadow-border-4-olive-drab:focus{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:focus\:shadow-border-4-olive-dark:focus{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1440\:focus\:shadow-border-olive-light:focus{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1440\:focus\:shadow-border-olive-drab:focus{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:focus\:shadow-border-olive-dark:focus{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1440\:focus\:shadow-border-2-daisy-light:focus{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1440\:focus\:shadow-border-4-daisy-light:focus{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1440\:focus\:shadow-border-daisy-light:focus{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1440\:focus\:shadow-border-2-feedback-gumby:focus{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1440\:focus\:shadow-border-2-feedback-daisy:focus{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1440\:focus\:shadow-border-2-feedback-pokey:focus{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1440\:focus\:shadow-border-2-feedback-aster:focus{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1440\:focus\:shadow-border-2-feedback-aster-dark:focus{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1440\:focus\:shadow-border-2-feedback-roxo:focus{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1440\:focus\:shadow-border-2-feedback-error:focus{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:focus\:shadow-border-2-feedback-success:focus{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:focus\:shadow-border-4-feedback-gumby:focus{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1440\:focus\:shadow-border-4-feedback-daisy:focus{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1440\:focus\:shadow-border-4-feedback-pokey:focus{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1440\:focus\:shadow-border-4-feedback-aster:focus{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1440\:focus\:shadow-border-4-feedback-aster-dark:focus{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1440\:focus\:shadow-border-4-feedback-roxo:focus{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1440\:focus\:shadow-border-4-feedback-error:focus{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:focus\:shadow-border-4-feedback-success:focus{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:focus\:shadow-border-feedback-gumby:focus{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1440\:focus\:shadow-border-feedback-daisy:focus{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1440\:focus\:shadow-border-feedback-pokey:focus{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1440\:focus\:shadow-border-feedback-aster:focus{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1440\:focus\:shadow-border-feedback-aster-dark:focus{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1440\:focus\:shadow-border-feedback-roxo:focus{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1440\:focus\:shadow-border-feedback-error:focus{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:focus\:shadow-border-feedback-success:focus{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:focus\:shadow-border-2-functional-aoki:focus{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1440\:focus\:shadow-border-2-functional-aoki-dark:focus{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1440\:focus\:shadow-border-2-functional-aoki-hocus:focus{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1440\:focus\:shadow-border-2-functional-aoki-active:focus{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1440\:focus\:shadow-border-2-functional-aoki-light:focus{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1440\:focus\:shadow-border-2-functional-kermit:focus{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1440\:focus\:shadow-border-4-functional-aoki:focus{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1440\:focus\:shadow-border-4-functional-aoki-dark:focus{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1440\:focus\:shadow-border-4-functional-aoki-hocus:focus{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1440\:focus\:shadow-border-4-functional-aoki-active:focus{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1440\:focus\:shadow-border-4-functional-aoki-light:focus{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1440\:focus\:shadow-border-4-functional-kermit:focus{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1440\:focus\:shadow-border-functional-aoki:focus{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1440\:focus\:shadow-border-functional-aoki-dark:focus{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1440\:focus\:shadow-border-functional-aoki-hocus:focus{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1440\:focus\:shadow-border-functional-aoki-active:focus{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1440\:focus\:shadow-border-functional-aoki-light:focus{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1440\:focus\:shadow-border-functional-kermit:focus{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1440\:focus\:shadow-border-2-mixlabPlus-light:focus{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1440\:focus\:shadow-border-4-mixlabPlus-light:focus{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1440\:focus\:shadow-border-mixlabPlus-light:focus{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1440\:focus\:shadow-border-2-primary-orange-light:focus{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1440\:focus\:shadow-border-4-primary-orange-light:focus{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1440\:focus\:shadow-border-primary-orange-light:focus{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1440\:focus\:shadow-border-2-off-white:focus{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1440\:focus\:shadow-border-4-off-white:focus{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1440\:focus\:shadow-border-off-white:focus{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .s1440\:active\:shadow-border-2-black:active{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1440\:active\:shadow-border-4-black:active{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1440\:active\:shadow-border-black:active{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1440\:active\:shadow-border-2-transparent:active{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1440\:active\:shadow-border-4-transparent:active{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1440\:active\:shadow-border-transparent:active{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1440\:active\:shadow-border-2-error:active{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:active\:shadow-border-4-error:active{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:active\:shadow-border-error:active{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:active\:shadow-border-2-success:active{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:active\:shadow-border-4-success:active{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:active\:shadow-border-success:active{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:active\:shadow-border-2-white-10:active{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1440\:active\:shadow-border-2-white-20:active{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1440\:active\:shadow-border-2-white:active{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1440\:active\:shadow-border-4-white-10:active{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1440\:active\:shadow-border-4-white-20:active{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1440\:active\:shadow-border-4-white:active{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1440\:active\:shadow-border-white-10:active{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1440\:active\:shadow-border-white-20:active{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1440\:active\:shadow-border-white:active{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1440\:active\:shadow-border-2-cheeto:active{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1440\:active\:shadow-border-2-cheeto-very-light:active{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1440\:active\:shadow-border-2-cheeto-light:active{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1440\:active\:shadow-border-2-cheeto-dark:active{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1440\:active\:shadow-border-2-cheeto-hocus:active{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1440\:active\:shadow-border-2-cheeto-active:active{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1440\:active\:shadow-border-2-cheeto-ml-plus:active{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1440\:active\:shadow-border-2-cheeto-banner:active{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1440\:active\:shadow-border-4-cheeto:active{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1440\:active\:shadow-border-4-cheeto-very-light:active{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1440\:active\:shadow-border-4-cheeto-light:active{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1440\:active\:shadow-border-4-cheeto-dark:active{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1440\:active\:shadow-border-4-cheeto-hocus:active{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1440\:active\:shadow-border-4-cheeto-active:active{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1440\:active\:shadow-border-4-cheeto-ml-plus:active{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1440\:active\:shadow-border-4-cheeto-banner:active{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1440\:active\:shadow-border-cheeto:active{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1440\:active\:shadow-border-cheeto-very-light:active{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1440\:active\:shadow-border-cheeto-light:active{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1440\:active\:shadow-border-cheeto-dark:active{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1440\:active\:shadow-border-cheeto-hocus:active{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1440\:active\:shadow-border-cheeto-active:active{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1440\:active\:shadow-border-cheeto-ml-plus:active{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1440\:active\:shadow-border-cheeto-banner:active{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1440\:active\:shadow-border-2-gracy-1:active{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1440\:active\:shadow-border-2-gracy-10:active{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1440\:active\:shadow-border-2-gracy-20:active{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1440\:active\:shadow-border-2-gracy-30:active{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1440\:active\:shadow-border-2-gracy-40:active{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1440\:active\:shadow-border-2-gracy-50:active{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1440\:active\:shadow-border-2-gracy-60:active{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1440\:active\:shadow-border-2-gracy-70:active{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1440\:active\:shadow-border-2-gracy-80:active{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1440\:active\:shadow-border-2-gracy-90:active{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1440\:active\:shadow-border-2-gracy-100:active{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1440\:active\:shadow-border-2-gracy:active{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1440\:active\:shadow-border-2-gracy-overlay-90:active{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1440\:active\:shadow-border-4-gracy-1:active{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1440\:active\:shadow-border-4-gracy-10:active{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1440\:active\:shadow-border-4-gracy-20:active{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1440\:active\:shadow-border-4-gracy-30:active{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1440\:active\:shadow-border-4-gracy-40:active{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1440\:active\:shadow-border-4-gracy-50:active{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1440\:active\:shadow-border-4-gracy-60:active{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1440\:active\:shadow-border-4-gracy-70:active{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1440\:active\:shadow-border-4-gracy-80:active{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1440\:active\:shadow-border-4-gracy-90:active{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1440\:active\:shadow-border-4-gracy-100:active{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1440\:active\:shadow-border-4-gracy:active{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1440\:active\:shadow-border-4-gracy-overlay-90:active{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1440\:active\:shadow-border-gracy-1:active{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1440\:active\:shadow-border-gracy-10:active{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1440\:active\:shadow-border-gracy-20:active{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1440\:active\:shadow-border-gracy-30:active{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1440\:active\:shadow-border-gracy-40:active{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1440\:active\:shadow-border-gracy-50:active{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1440\:active\:shadow-border-gracy-60:active{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1440\:active\:shadow-border-gracy-70:active{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1440\:active\:shadow-border-gracy-80:active{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1440\:active\:shadow-border-gracy-90:active{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1440\:active\:shadow-border-gracy-100:active{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1440\:active\:shadow-border-gracy:active{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1440\:active\:shadow-border-gracy-overlay-90:active{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1440\:active\:shadow-border-2-login-0:active{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1440\:active\:shadow-border-2-login-1:active{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:active\:shadow-border-2-login-2:active{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1440\:active\:shadow-border-2-login-3:active{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:active\:shadow-border-2-login-4:active{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:active\:shadow-border-2-login-5:active{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1440\:active\:shadow-border-2-login-6:active{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:active\:shadow-border-2-login-bold:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-strip:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-stripColors:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-trap:active{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1440\:active\:shadow-border-2-login-zalgo:active{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1440\:active\:shadow-border-2-login-zebra:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-rainbow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-random:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-america:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-reset:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-dim:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-italic:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-underline:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-inverse:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-hidden:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-strikethrough:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-black:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-red:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-green:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-yellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-blue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-magenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-cyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-white:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-gray:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-grey:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-brightRed:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-brightGreen:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-brightYellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-brightBlue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-brightMagenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-brightCyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-brightWhite:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgBlack:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgRed:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgGreen:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgYellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgBlue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgMagenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgCyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgWhite:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgGray:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgGrey:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgBrightRed:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgBrightGreen:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgBrightYellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgBrightBlue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgBrightMagenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgBrightCyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-bgBrightWhite:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-blackBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-redBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-greenBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-yellowBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-blueBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-magentaBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-cyanBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-login-whiteBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-0:active{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1440\:active\:shadow-border-4-login-1:active{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:active\:shadow-border-4-login-2:active{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1440\:active\:shadow-border-4-login-3:active{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:active\:shadow-border-4-login-4:active{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:active\:shadow-border-4-login-5:active{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1440\:active\:shadow-border-4-login-6:active{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:active\:shadow-border-4-login-bold:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-strip:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-stripColors:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-trap:active{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1440\:active\:shadow-border-4-login-zalgo:active{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1440\:active\:shadow-border-4-login-zebra:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-rainbow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-random:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-america:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-reset:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-dim:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-italic:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-underline:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-inverse:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-hidden:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-strikethrough:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-black:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-red:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-green:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-yellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-blue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-magenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-cyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-white:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-gray:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-grey:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-brightRed:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-brightGreen:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-brightYellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-brightBlue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-brightMagenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-brightCyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-brightWhite:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgBlack:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgRed:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgGreen:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgYellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgBlue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgMagenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgCyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgWhite:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgGray:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgGrey:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgBrightRed:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgBrightGreen:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgBrightYellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgBrightBlue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgBrightMagenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgBrightCyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-bgBrightWhite:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-blackBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-redBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-greenBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-yellowBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-blueBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-magentaBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-cyanBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-4-login-whiteBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-0:active{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1440\:active\:shadow-border-login-1:active{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:active\:shadow-border-login-2:active{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1440\:active\:shadow-border-login-3:active{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:active\:shadow-border-login-4:active{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:active\:shadow-border-login-5:active{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1440\:active\:shadow-border-login-6:active{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:active\:shadow-border-login-bold:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-strip:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-stripColors:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-trap:active{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1440\:active\:shadow-border-login-zalgo:active{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1440\:active\:shadow-border-login-zebra:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-rainbow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-random:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-america:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-reset:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-dim:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-italic:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-underline:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-inverse:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-hidden:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-strikethrough:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-black:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-red:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-green:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-yellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-blue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-magenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-cyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-white:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-gray:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-grey:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-brightRed:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-brightGreen:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-brightYellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-brightBlue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-brightMagenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-brightCyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-brightWhite:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgBlack:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgRed:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgGreen:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgYellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgBlue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgMagenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgCyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgWhite:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgGray:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgGrey:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgBrightRed:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgBrightGreen:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgBrightYellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgBrightBlue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgBrightMagenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgBrightCyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-bgBrightWhite:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-blackBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-redBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-greenBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-yellowBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-blueBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-magentaBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-cyanBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-login-whiteBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:active\:shadow-border-2-olive-light:active{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1440\:active\:shadow-border-2-olive-drab:active{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:active\:shadow-border-2-olive-dark:active{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1440\:active\:shadow-border-4-olive-light:active{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1440\:active\:shadow-border-4-olive-drab:active{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:active\:shadow-border-4-olive-dark:active{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1440\:active\:shadow-border-olive-light:active{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1440\:active\:shadow-border-olive-drab:active{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:active\:shadow-border-olive-dark:active{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1440\:active\:shadow-border-2-daisy-light:active{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1440\:active\:shadow-border-4-daisy-light:active{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1440\:active\:shadow-border-daisy-light:active{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1440\:active\:shadow-border-2-feedback-gumby:active{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1440\:active\:shadow-border-2-feedback-daisy:active{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1440\:active\:shadow-border-2-feedback-pokey:active{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1440\:active\:shadow-border-2-feedback-aster:active{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1440\:active\:shadow-border-2-feedback-aster-dark:active{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1440\:active\:shadow-border-2-feedback-roxo:active{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1440\:active\:shadow-border-2-feedback-error:active{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:active\:shadow-border-2-feedback-success:active{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:active\:shadow-border-4-feedback-gumby:active{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1440\:active\:shadow-border-4-feedback-daisy:active{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1440\:active\:shadow-border-4-feedback-pokey:active{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1440\:active\:shadow-border-4-feedback-aster:active{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1440\:active\:shadow-border-4-feedback-aster-dark:active{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1440\:active\:shadow-border-4-feedback-roxo:active{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1440\:active\:shadow-border-4-feedback-error:active{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:active\:shadow-border-4-feedback-success:active{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:active\:shadow-border-feedback-gumby:active{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1440\:active\:shadow-border-feedback-daisy:active{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1440\:active\:shadow-border-feedback-pokey:active{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1440\:active\:shadow-border-feedback-aster:active{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1440\:active\:shadow-border-feedback-aster-dark:active{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1440\:active\:shadow-border-feedback-roxo:active{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1440\:active\:shadow-border-feedback-error:active{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:active\:shadow-border-feedback-success:active{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:active\:shadow-border-2-functional-aoki:active{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1440\:active\:shadow-border-2-functional-aoki-dark:active{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1440\:active\:shadow-border-2-functional-aoki-hocus:active{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1440\:active\:shadow-border-2-functional-aoki-active:active{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1440\:active\:shadow-border-2-functional-aoki-light:active{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1440\:active\:shadow-border-2-functional-kermit:active{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1440\:active\:shadow-border-4-functional-aoki:active{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1440\:active\:shadow-border-4-functional-aoki-dark:active{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1440\:active\:shadow-border-4-functional-aoki-hocus:active{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1440\:active\:shadow-border-4-functional-aoki-active:active{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1440\:active\:shadow-border-4-functional-aoki-light:active{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1440\:active\:shadow-border-4-functional-kermit:active{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1440\:active\:shadow-border-functional-aoki:active{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1440\:active\:shadow-border-functional-aoki-dark:active{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1440\:active\:shadow-border-functional-aoki-hocus:active{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1440\:active\:shadow-border-functional-aoki-active:active{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1440\:active\:shadow-border-functional-aoki-light:active{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1440\:active\:shadow-border-functional-kermit:active{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1440\:active\:shadow-border-2-mixlabPlus-light:active{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1440\:active\:shadow-border-4-mixlabPlus-light:active{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1440\:active\:shadow-border-mixlabPlus-light:active{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1440\:active\:shadow-border-2-primary-orange-light:active{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1440\:active\:shadow-border-4-primary-orange-light:active{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1440\:active\:shadow-border-primary-orange-light:active{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1440\:active\:shadow-border-2-off-white:active{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1440\:active\:shadow-border-4-off-white:active{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1440\:active\:shadow-border-off-white:active{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .s1440\:first\:shadow-border-2-black:first-child{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1440\:first\:shadow-border-4-black:first-child{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1440\:first\:shadow-border-black:first-child{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1440\:first\:shadow-border-2-transparent:first-child{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1440\:first\:shadow-border-4-transparent:first-child{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1440\:first\:shadow-border-transparent:first-child{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1440\:first\:shadow-border-2-error:first-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:first\:shadow-border-4-error:first-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:first\:shadow-border-error:first-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:first\:shadow-border-2-success:first-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:first\:shadow-border-4-success:first-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:first\:shadow-border-success:first-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:first\:shadow-border-2-white-10:first-child{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1440\:first\:shadow-border-2-white-20:first-child{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1440\:first\:shadow-border-2-white:first-child{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1440\:first\:shadow-border-4-white-10:first-child{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1440\:first\:shadow-border-4-white-20:first-child{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1440\:first\:shadow-border-4-white:first-child{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1440\:first\:shadow-border-white-10:first-child{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1440\:first\:shadow-border-white-20:first-child{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1440\:first\:shadow-border-white:first-child{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1440\:first\:shadow-border-2-cheeto:first-child{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1440\:first\:shadow-border-2-cheeto-very-light:first-child{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1440\:first\:shadow-border-2-cheeto-light:first-child{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1440\:first\:shadow-border-2-cheeto-dark:first-child{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1440\:first\:shadow-border-2-cheeto-hocus:first-child{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1440\:first\:shadow-border-2-cheeto-active:first-child{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1440\:first\:shadow-border-2-cheeto-ml-plus:first-child{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1440\:first\:shadow-border-2-cheeto-banner:first-child{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1440\:first\:shadow-border-4-cheeto:first-child{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1440\:first\:shadow-border-4-cheeto-very-light:first-child{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1440\:first\:shadow-border-4-cheeto-light:first-child{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1440\:first\:shadow-border-4-cheeto-dark:first-child{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1440\:first\:shadow-border-4-cheeto-hocus:first-child{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1440\:first\:shadow-border-4-cheeto-active:first-child{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1440\:first\:shadow-border-4-cheeto-ml-plus:first-child{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1440\:first\:shadow-border-4-cheeto-banner:first-child{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1440\:first\:shadow-border-cheeto:first-child{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1440\:first\:shadow-border-cheeto-very-light:first-child{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1440\:first\:shadow-border-cheeto-light:first-child{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1440\:first\:shadow-border-cheeto-dark:first-child{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1440\:first\:shadow-border-cheeto-hocus:first-child{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1440\:first\:shadow-border-cheeto-active:first-child{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1440\:first\:shadow-border-cheeto-ml-plus:first-child{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1440\:first\:shadow-border-cheeto-banner:first-child{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1440\:first\:shadow-border-2-gracy-1:first-child{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1440\:first\:shadow-border-2-gracy-10:first-child{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1440\:first\:shadow-border-2-gracy-20:first-child{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1440\:first\:shadow-border-2-gracy-30:first-child{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1440\:first\:shadow-border-2-gracy-40:first-child{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1440\:first\:shadow-border-2-gracy-50:first-child{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1440\:first\:shadow-border-2-gracy-60:first-child{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1440\:first\:shadow-border-2-gracy-70:first-child{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1440\:first\:shadow-border-2-gracy-80:first-child{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1440\:first\:shadow-border-2-gracy-90:first-child{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1440\:first\:shadow-border-2-gracy-100:first-child{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1440\:first\:shadow-border-2-gracy:first-child{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1440\:first\:shadow-border-2-gracy-overlay-90:first-child{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1440\:first\:shadow-border-4-gracy-1:first-child{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1440\:first\:shadow-border-4-gracy-10:first-child{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1440\:first\:shadow-border-4-gracy-20:first-child{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1440\:first\:shadow-border-4-gracy-30:first-child{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1440\:first\:shadow-border-4-gracy-40:first-child{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1440\:first\:shadow-border-4-gracy-50:first-child{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1440\:first\:shadow-border-4-gracy-60:first-child{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1440\:first\:shadow-border-4-gracy-70:first-child{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1440\:first\:shadow-border-4-gracy-80:first-child{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1440\:first\:shadow-border-4-gracy-90:first-child{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1440\:first\:shadow-border-4-gracy-100:first-child{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1440\:first\:shadow-border-4-gracy:first-child{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1440\:first\:shadow-border-4-gracy-overlay-90:first-child{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1440\:first\:shadow-border-gracy-1:first-child{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1440\:first\:shadow-border-gracy-10:first-child{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1440\:first\:shadow-border-gracy-20:first-child{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1440\:first\:shadow-border-gracy-30:first-child{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1440\:first\:shadow-border-gracy-40:first-child{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1440\:first\:shadow-border-gracy-50:first-child{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1440\:first\:shadow-border-gracy-60:first-child{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1440\:first\:shadow-border-gracy-70:first-child{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1440\:first\:shadow-border-gracy-80:first-child{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1440\:first\:shadow-border-gracy-90:first-child{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1440\:first\:shadow-border-gracy-100:first-child{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1440\:first\:shadow-border-gracy:first-child{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1440\:first\:shadow-border-gracy-overlay-90:first-child{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1440\:first\:shadow-border-2-login-0:first-child{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1440\:first\:shadow-border-2-login-1:first-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:first\:shadow-border-2-login-2:first-child{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1440\:first\:shadow-border-2-login-3:first-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:first\:shadow-border-2-login-4:first-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:first\:shadow-border-2-login-5:first-child{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1440\:first\:shadow-border-2-login-6:first-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:first\:shadow-border-2-login-bold:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-strip:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-stripColors:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-trap:first-child{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1440\:first\:shadow-border-2-login-zalgo:first-child{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1440\:first\:shadow-border-2-login-zebra:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-rainbow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-random:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-america:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-reset:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-dim:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-italic:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-underline:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-inverse:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-hidden:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-strikethrough:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-black:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-red:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-green:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-yellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-blue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-magenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-cyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-white:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-gray:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-grey:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-brightRed:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-brightGreen:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-brightYellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-brightBlue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-brightMagenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-brightCyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-brightWhite:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgBlack:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgRed:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgGreen:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgYellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgBlue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgMagenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgCyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgWhite:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgGray:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgGrey:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgBrightRed:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgBrightGreen:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgBrightYellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgBrightBlue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgBrightMagenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgBrightCyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-bgBrightWhite:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-blackBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-redBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-greenBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-yellowBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-blueBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-magentaBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-cyanBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-login-whiteBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-0:first-child{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1440\:first\:shadow-border-4-login-1:first-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:first\:shadow-border-4-login-2:first-child{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1440\:first\:shadow-border-4-login-3:first-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:first\:shadow-border-4-login-4:first-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:first\:shadow-border-4-login-5:first-child{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1440\:first\:shadow-border-4-login-6:first-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:first\:shadow-border-4-login-bold:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-strip:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-stripColors:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-trap:first-child{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1440\:first\:shadow-border-4-login-zalgo:first-child{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1440\:first\:shadow-border-4-login-zebra:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-rainbow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-random:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-america:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-reset:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-dim:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-italic:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-underline:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-inverse:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-hidden:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-strikethrough:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-black:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-red:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-green:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-yellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-blue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-magenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-cyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-white:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-gray:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-grey:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-brightRed:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-brightGreen:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-brightYellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-brightBlue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-brightMagenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-brightCyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-brightWhite:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgBlack:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgRed:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgGreen:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgYellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgBlue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgMagenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgCyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgWhite:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgGray:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgGrey:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgBrightRed:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgBrightGreen:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgBrightYellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgBrightBlue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgBrightMagenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgBrightCyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-bgBrightWhite:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-blackBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-redBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-greenBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-yellowBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-blueBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-magentaBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-cyanBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-4-login-whiteBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-0:first-child{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1440\:first\:shadow-border-login-1:first-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:first\:shadow-border-login-2:first-child{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1440\:first\:shadow-border-login-3:first-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:first\:shadow-border-login-4:first-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:first\:shadow-border-login-5:first-child{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1440\:first\:shadow-border-login-6:first-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:first\:shadow-border-login-bold:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-strip:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-stripColors:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-trap:first-child{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1440\:first\:shadow-border-login-zalgo:first-child{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1440\:first\:shadow-border-login-zebra:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-rainbow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-random:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-america:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-reset:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-dim:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-italic:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-underline:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-inverse:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-hidden:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-strikethrough:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-black:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-red:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-green:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-yellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-blue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-magenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-cyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-white:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-gray:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-grey:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-brightRed:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-brightGreen:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-brightYellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-brightBlue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-brightMagenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-brightCyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-brightWhite:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgBlack:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgRed:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgGreen:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgYellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgBlue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgMagenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgCyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgWhite:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgGray:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgGrey:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgBrightRed:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgBrightGreen:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgBrightYellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgBrightBlue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgBrightMagenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgBrightCyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-bgBrightWhite:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-blackBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-redBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-greenBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-yellowBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-blueBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-magentaBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-cyanBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-login-whiteBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:first\:shadow-border-2-olive-light:first-child{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1440\:first\:shadow-border-2-olive-drab:first-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:first\:shadow-border-2-olive-dark:first-child{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1440\:first\:shadow-border-4-olive-light:first-child{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1440\:first\:shadow-border-4-olive-drab:first-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:first\:shadow-border-4-olive-dark:first-child{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1440\:first\:shadow-border-olive-light:first-child{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1440\:first\:shadow-border-olive-drab:first-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:first\:shadow-border-olive-dark:first-child{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1440\:first\:shadow-border-2-daisy-light:first-child{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1440\:first\:shadow-border-4-daisy-light:first-child{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1440\:first\:shadow-border-daisy-light:first-child{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1440\:first\:shadow-border-2-feedback-gumby:first-child{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1440\:first\:shadow-border-2-feedback-daisy:first-child{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1440\:first\:shadow-border-2-feedback-pokey:first-child{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1440\:first\:shadow-border-2-feedback-aster:first-child{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1440\:first\:shadow-border-2-feedback-aster-dark:first-child{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1440\:first\:shadow-border-2-feedback-roxo:first-child{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1440\:first\:shadow-border-2-feedback-error:first-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:first\:shadow-border-2-feedback-success:first-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:first\:shadow-border-4-feedback-gumby:first-child{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1440\:first\:shadow-border-4-feedback-daisy:first-child{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1440\:first\:shadow-border-4-feedback-pokey:first-child{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1440\:first\:shadow-border-4-feedback-aster:first-child{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1440\:first\:shadow-border-4-feedback-aster-dark:first-child{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1440\:first\:shadow-border-4-feedback-roxo:first-child{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1440\:first\:shadow-border-4-feedback-error:first-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:first\:shadow-border-4-feedback-success:first-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:first\:shadow-border-feedback-gumby:first-child{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1440\:first\:shadow-border-feedback-daisy:first-child{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1440\:first\:shadow-border-feedback-pokey:first-child{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1440\:first\:shadow-border-feedback-aster:first-child{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1440\:first\:shadow-border-feedback-aster-dark:first-child{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1440\:first\:shadow-border-feedback-roxo:first-child{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1440\:first\:shadow-border-feedback-error:first-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:first\:shadow-border-feedback-success:first-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:first\:shadow-border-2-functional-aoki:first-child{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1440\:first\:shadow-border-2-functional-aoki-dark:first-child{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1440\:first\:shadow-border-2-functional-aoki-hocus:first-child{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1440\:first\:shadow-border-2-functional-aoki-active:first-child{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1440\:first\:shadow-border-2-functional-aoki-light:first-child{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1440\:first\:shadow-border-2-functional-kermit:first-child{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1440\:first\:shadow-border-4-functional-aoki:first-child{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1440\:first\:shadow-border-4-functional-aoki-dark:first-child{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1440\:first\:shadow-border-4-functional-aoki-hocus:first-child{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1440\:first\:shadow-border-4-functional-aoki-active:first-child{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1440\:first\:shadow-border-4-functional-aoki-light:first-child{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1440\:first\:shadow-border-4-functional-kermit:first-child{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1440\:first\:shadow-border-functional-aoki:first-child{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1440\:first\:shadow-border-functional-aoki-dark:first-child{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1440\:first\:shadow-border-functional-aoki-hocus:first-child{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1440\:first\:shadow-border-functional-aoki-active:first-child{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1440\:first\:shadow-border-functional-aoki-light:first-child{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1440\:first\:shadow-border-functional-kermit:first-child{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1440\:first\:shadow-border-2-mixlabPlus-light:first-child{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1440\:first\:shadow-border-4-mixlabPlus-light:first-child{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1440\:first\:shadow-border-mixlabPlus-light:first-child{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1440\:first\:shadow-border-2-primary-orange-light:first-child{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1440\:first\:shadow-border-4-primary-orange-light:first-child{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1440\:first\:shadow-border-primary-orange-light:first-child{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1440\:first\:shadow-border-2-off-white:first-child{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1440\:first\:shadow-border-4-off-white:first-child{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1440\:first\:shadow-border-off-white:first-child{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .s1440\:last\:shadow-border-2-black:last-child{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1440\:last\:shadow-border-4-black:last-child{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1440\:last\:shadow-border-black:last-child{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1440\:last\:shadow-border-2-transparent:last-child{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1440\:last\:shadow-border-4-transparent:last-child{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1440\:last\:shadow-border-transparent:last-child{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1440\:last\:shadow-border-2-error:last-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:last\:shadow-border-4-error:last-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:last\:shadow-border-error:last-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:last\:shadow-border-2-success:last-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:last\:shadow-border-4-success:last-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:last\:shadow-border-success:last-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:last\:shadow-border-2-white-10:last-child{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1440\:last\:shadow-border-2-white-20:last-child{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1440\:last\:shadow-border-2-white:last-child{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1440\:last\:shadow-border-4-white-10:last-child{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1440\:last\:shadow-border-4-white-20:last-child{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1440\:last\:shadow-border-4-white:last-child{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1440\:last\:shadow-border-white-10:last-child{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1440\:last\:shadow-border-white-20:last-child{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1440\:last\:shadow-border-white:last-child{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1440\:last\:shadow-border-2-cheeto:last-child{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1440\:last\:shadow-border-2-cheeto-very-light:last-child{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1440\:last\:shadow-border-2-cheeto-light:last-child{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1440\:last\:shadow-border-2-cheeto-dark:last-child{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1440\:last\:shadow-border-2-cheeto-hocus:last-child{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1440\:last\:shadow-border-2-cheeto-active:last-child{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1440\:last\:shadow-border-2-cheeto-ml-plus:last-child{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1440\:last\:shadow-border-2-cheeto-banner:last-child{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1440\:last\:shadow-border-4-cheeto:last-child{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1440\:last\:shadow-border-4-cheeto-very-light:last-child{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1440\:last\:shadow-border-4-cheeto-light:last-child{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1440\:last\:shadow-border-4-cheeto-dark:last-child{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1440\:last\:shadow-border-4-cheeto-hocus:last-child{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1440\:last\:shadow-border-4-cheeto-active:last-child{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1440\:last\:shadow-border-4-cheeto-ml-plus:last-child{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1440\:last\:shadow-border-4-cheeto-banner:last-child{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1440\:last\:shadow-border-cheeto:last-child{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1440\:last\:shadow-border-cheeto-very-light:last-child{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1440\:last\:shadow-border-cheeto-light:last-child{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1440\:last\:shadow-border-cheeto-dark:last-child{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1440\:last\:shadow-border-cheeto-hocus:last-child{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1440\:last\:shadow-border-cheeto-active:last-child{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1440\:last\:shadow-border-cheeto-ml-plus:last-child{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1440\:last\:shadow-border-cheeto-banner:last-child{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1440\:last\:shadow-border-2-gracy-1:last-child{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1440\:last\:shadow-border-2-gracy-10:last-child{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1440\:last\:shadow-border-2-gracy-20:last-child{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1440\:last\:shadow-border-2-gracy-30:last-child{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1440\:last\:shadow-border-2-gracy-40:last-child{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1440\:last\:shadow-border-2-gracy-50:last-child{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1440\:last\:shadow-border-2-gracy-60:last-child{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1440\:last\:shadow-border-2-gracy-70:last-child{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1440\:last\:shadow-border-2-gracy-80:last-child{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1440\:last\:shadow-border-2-gracy-90:last-child{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1440\:last\:shadow-border-2-gracy-100:last-child{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1440\:last\:shadow-border-2-gracy:last-child{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1440\:last\:shadow-border-2-gracy-overlay-90:last-child{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1440\:last\:shadow-border-4-gracy-1:last-child{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1440\:last\:shadow-border-4-gracy-10:last-child{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1440\:last\:shadow-border-4-gracy-20:last-child{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1440\:last\:shadow-border-4-gracy-30:last-child{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1440\:last\:shadow-border-4-gracy-40:last-child{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1440\:last\:shadow-border-4-gracy-50:last-child{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1440\:last\:shadow-border-4-gracy-60:last-child{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1440\:last\:shadow-border-4-gracy-70:last-child{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1440\:last\:shadow-border-4-gracy-80:last-child{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1440\:last\:shadow-border-4-gracy-90:last-child{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1440\:last\:shadow-border-4-gracy-100:last-child{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1440\:last\:shadow-border-4-gracy:last-child{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1440\:last\:shadow-border-4-gracy-overlay-90:last-child{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1440\:last\:shadow-border-gracy-1:last-child{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1440\:last\:shadow-border-gracy-10:last-child{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1440\:last\:shadow-border-gracy-20:last-child{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1440\:last\:shadow-border-gracy-30:last-child{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1440\:last\:shadow-border-gracy-40:last-child{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1440\:last\:shadow-border-gracy-50:last-child{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1440\:last\:shadow-border-gracy-60:last-child{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1440\:last\:shadow-border-gracy-70:last-child{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1440\:last\:shadow-border-gracy-80:last-child{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1440\:last\:shadow-border-gracy-90:last-child{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1440\:last\:shadow-border-gracy-100:last-child{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1440\:last\:shadow-border-gracy:last-child{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1440\:last\:shadow-border-gracy-overlay-90:last-child{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1440\:last\:shadow-border-2-login-0:last-child{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1440\:last\:shadow-border-2-login-1:last-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:last\:shadow-border-2-login-2:last-child{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1440\:last\:shadow-border-2-login-3:last-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1440\:last\:shadow-border-2-login-4:last-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:last\:shadow-border-2-login-5:last-child{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1440\:last\:shadow-border-2-login-6:last-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1440\:last\:shadow-border-2-login-bold:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-strip:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-stripColors:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-trap:last-child{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1440\:last\:shadow-border-2-login-zalgo:last-child{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1440\:last\:shadow-border-2-login-zebra:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-rainbow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-random:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-america:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-reset:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-dim:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-italic:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-underline:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-inverse:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-hidden:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-strikethrough:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-black:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-red:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-green:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-yellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-blue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-magenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-cyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-white:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-gray:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-grey:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-brightRed:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-brightGreen:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-brightYellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-brightBlue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-brightMagenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-brightCyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-brightWhite:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgBlack:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgRed:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgGreen:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgYellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgBlue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgMagenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgCyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgWhite:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgGray:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgGrey:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgBrightRed:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgBrightGreen:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgBrightYellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgBrightBlue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgBrightMagenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgBrightCyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-bgBrightWhite:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-blackBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-redBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-greenBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-yellowBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-blueBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-magentaBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-cyanBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-login-whiteBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-0:last-child{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1440\:last\:shadow-border-4-login-1:last-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:last\:shadow-border-4-login-2:last-child{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1440\:last\:shadow-border-4-login-3:last-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1440\:last\:shadow-border-4-login-4:last-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:last\:shadow-border-4-login-5:last-child{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1440\:last\:shadow-border-4-login-6:last-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1440\:last\:shadow-border-4-login-bold:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-strip:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-stripColors:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-trap:last-child{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1440\:last\:shadow-border-4-login-zalgo:last-child{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1440\:last\:shadow-border-4-login-zebra:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-rainbow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-random:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-america:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-reset:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-dim:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-italic:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-underline:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-inverse:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-hidden:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-strikethrough:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-black:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-red:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-green:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-yellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-blue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-magenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-cyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-white:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-gray:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-grey:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-brightRed:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-brightGreen:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-brightYellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-brightBlue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-brightMagenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-brightCyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-brightWhite:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgBlack:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgRed:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgGreen:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgYellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgBlue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgMagenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgCyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgWhite:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgGray:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgGrey:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgBrightRed:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgBrightGreen:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgBrightYellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgBrightBlue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgBrightMagenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgBrightCyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-bgBrightWhite:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-blackBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-redBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-greenBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-yellowBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-blueBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-magentaBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-cyanBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-4-login-whiteBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-0:last-child{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1440\:last\:shadow-border-login-1:last-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:last\:shadow-border-login-2:last-child{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1440\:last\:shadow-border-login-3:last-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1440\:last\:shadow-border-login-4:last-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:last\:shadow-border-login-5:last-child{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1440\:last\:shadow-border-login-6:last-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1440\:last\:shadow-border-login-bold:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-strip:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-stripColors:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-trap:last-child{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1440\:last\:shadow-border-login-zalgo:last-child{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1440\:last\:shadow-border-login-zebra:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-rainbow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-random:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-america:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-reset:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-dim:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-italic:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-underline:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-inverse:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-hidden:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-strikethrough:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-black:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-red:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-green:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-yellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-blue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-magenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-cyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-white:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-gray:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-grey:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-brightRed:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-brightGreen:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-brightYellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-brightBlue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-brightMagenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-brightCyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-brightWhite:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgBlack:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgRed:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgGreen:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgYellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgBlue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgMagenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgCyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgWhite:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgGray:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgGrey:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgBrightRed:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgBrightGreen:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgBrightYellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgBrightBlue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgBrightMagenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgBrightCyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-bgBrightWhite:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-blackBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-redBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-greenBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-yellowBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-blueBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-magentaBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-cyanBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-login-whiteBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1440\:last\:shadow-border-2-olive-light:last-child{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1440\:last\:shadow-border-2-olive-drab:last-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:last\:shadow-border-2-olive-dark:last-child{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1440\:last\:shadow-border-4-olive-light:last-child{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1440\:last\:shadow-border-4-olive-drab:last-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:last\:shadow-border-4-olive-dark:last-child{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1440\:last\:shadow-border-olive-light:last-child{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1440\:last\:shadow-border-olive-drab:last-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:last\:shadow-border-olive-dark:last-child{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1440\:last\:shadow-border-2-daisy-light:last-child{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1440\:last\:shadow-border-4-daisy-light:last-child{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1440\:last\:shadow-border-daisy-light:last-child{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1440\:last\:shadow-border-2-feedback-gumby:last-child{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1440\:last\:shadow-border-2-feedback-daisy:last-child{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1440\:last\:shadow-border-2-feedback-pokey:last-child{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1440\:last\:shadow-border-2-feedback-aster:last-child{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1440\:last\:shadow-border-2-feedback-aster-dark:last-child{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1440\:last\:shadow-border-2-feedback-roxo:last-child{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1440\:last\:shadow-border-2-feedback-error:last-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1440\:last\:shadow-border-2-feedback-success:last-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1440\:last\:shadow-border-4-feedback-gumby:last-child{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1440\:last\:shadow-border-4-feedback-daisy:last-child{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1440\:last\:shadow-border-4-feedback-pokey:last-child{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1440\:last\:shadow-border-4-feedback-aster:last-child{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1440\:last\:shadow-border-4-feedback-aster-dark:last-child{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1440\:last\:shadow-border-4-feedback-roxo:last-child{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1440\:last\:shadow-border-4-feedback-error:last-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1440\:last\:shadow-border-4-feedback-success:last-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1440\:last\:shadow-border-feedback-gumby:last-child{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1440\:last\:shadow-border-feedback-daisy:last-child{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1440\:last\:shadow-border-feedback-pokey:last-child{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1440\:last\:shadow-border-feedback-aster:last-child{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1440\:last\:shadow-border-feedback-aster-dark:last-child{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1440\:last\:shadow-border-feedback-roxo:last-child{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1440\:last\:shadow-border-feedback-error:last-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1440\:last\:shadow-border-feedback-success:last-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1440\:last\:shadow-border-2-functional-aoki:last-child{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1440\:last\:shadow-border-2-functional-aoki-dark:last-child{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1440\:last\:shadow-border-2-functional-aoki-hocus:last-child{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1440\:last\:shadow-border-2-functional-aoki-active:last-child{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1440\:last\:shadow-border-2-functional-aoki-light:last-child{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1440\:last\:shadow-border-2-functional-kermit:last-child{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1440\:last\:shadow-border-4-functional-aoki:last-child{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1440\:last\:shadow-border-4-functional-aoki-dark:last-child{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1440\:last\:shadow-border-4-functional-aoki-hocus:last-child{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1440\:last\:shadow-border-4-functional-aoki-active:last-child{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1440\:last\:shadow-border-4-functional-aoki-light:last-child{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1440\:last\:shadow-border-4-functional-kermit:last-child{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1440\:last\:shadow-border-functional-aoki:last-child{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1440\:last\:shadow-border-functional-aoki-dark:last-child{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1440\:last\:shadow-border-functional-aoki-hocus:last-child{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1440\:last\:shadow-border-functional-aoki-active:last-child{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1440\:last\:shadow-border-functional-aoki-light:last-child{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1440\:last\:shadow-border-functional-kermit:last-child{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1440\:last\:shadow-border-2-mixlabPlus-light:last-child{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1440\:last\:shadow-border-4-mixlabPlus-light:last-child{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1440\:last\:shadow-border-mixlabPlus-light:last-child{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1440\:last\:shadow-border-2-primary-orange-light:last-child{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1440\:last\:shadow-border-4-primary-orange-light:last-child{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1440\:last\:shadow-border-primary-orange-light:last-child{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1440\:last\:shadow-border-2-off-white:last-child{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1440\:last\:shadow-border-4-off-white:last-child{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1440\:last\:shadow-border-off-white:last-child{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }
}

@media (min-width: 1910px){
  .s1920\:container{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1920\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1920\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1920\:container{
      max-width: 1910px;
    }
  }

  .s1920\:hover\:container:hover{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1920\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1920\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1920\:container{
      max-width: 1910px;
    }
  }

  .s1920\:focus\:container:focus{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1920\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1920\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1920\:container{
      max-width: 1910px;
    }
  }

  .s1920\:active\:container:active{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1920\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1920\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1920\:container{
      max-width: 1910px;
    }
  }

  .s1920\:first\:container:first-child{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1920\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1920\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1920\:container{
      max-width: 1910px;
    }
  }

  .s1920\:last\:container:last-child{
    width: 100%;
  }

  @media (min-width: 640px){
    .s1920\:container{
      max-width: 640px;
    }
  }

  @media (min-width: 1430px){
    .s1920\:container{
      max-width: 1430px;
    }
  }

  @media (min-width: 1910px){
    .s1920\:container{
      max-width: 1910px;
    }
  }

  .s1920\:space-y-0 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1920\:space-x-0 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-1 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1920\:space-x-1 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-2 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1920\:space-x-2 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-3 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1920\:space-x-3 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-4 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1920\:space-x-4 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-5 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1920\:space-x-5 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-6 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1920\:space-x-6 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-8 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1920\:space-x-8 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-10 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1920\:space-x-10 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-12 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1920\:space-x-12 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-14 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1920\:space-x-14 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-16 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1920\:space-x-16 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-20 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1920\:space-x-20 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-24 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1920\:space-x-24 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-32 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1920\:space-x-32 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-40 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1920\:space-x-40 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-48 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1920\:space-x-48 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-56 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1920\:space-x-56 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-64 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1920\:space-x-64 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-px > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1920\:space-x-px > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-1 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-1 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-2 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-2 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-3 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-3 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-4 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-4 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-5 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-5 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-6 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-6 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-8 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-8 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-10 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-10 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-12 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-12 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-14 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-14 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-16 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-16 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-20 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-20 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-24 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-24 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-32 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-32 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-40 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-40 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-48 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-48 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-56 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-56 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-64 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1920\:-space-x-64 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:-space-y-px > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1920\:-space-x-px > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:space-y-reverse > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1920\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1920\:hover\:space-y-0:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-0:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-1:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-1:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-2:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-2:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-3:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-3:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-4:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-4:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-5:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-5:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-6:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-6:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-8:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-8:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-10:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-10:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-12:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-12:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-14:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-14:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-16:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-16:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-20:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-20:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-24:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-24:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-32:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-32:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-40:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-40:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-48:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-48:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-56:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-56:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-64:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-64:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-px:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1920\:hover\:space-x-px:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-1:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-1:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-2:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-2:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-3:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-3:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-4:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-4:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-5:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-5:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-6:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-6:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-8:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-8:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-10:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-10:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-12:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-12:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-14:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-14:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-16:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-16:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-20:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-20:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-24:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-24:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-32:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-32:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-40:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-40:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-48:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-48:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-56:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-56:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-64:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-64:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:-space-y-px:hover > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1920\:hover\:-space-x-px:hover > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:hover\:space-y-reverse:hover > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1920\:hover\:space-x-reverse:hover > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1920\:focus\:space-y-0:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-0:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-1:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-1:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-2:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-2:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-3:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-3:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-4:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-4:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-5:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-5:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-6:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-6:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-8:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-8:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-10:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-10:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-12:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-12:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-14:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-14:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-16:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-16:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-20:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-20:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-24:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-24:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-32:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-32:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-40:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-40:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-48:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-48:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-56:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-56:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-64:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-64:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-px:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1920\:focus\:space-x-px:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-1:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-1:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-2:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-2:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-3:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-3:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-4:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-4:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-5:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-5:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-6:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-6:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-8:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-8:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-10:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-10:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-12:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-12:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-14:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-14:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-16:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-16:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-20:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-20:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-24:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-24:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-32:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-32:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-40:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-40:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-48:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-48:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-56:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-56:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-64:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-64:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:-space-y-px:focus > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1920\:focus\:-space-x-px:focus > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:focus\:space-y-reverse:focus > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1920\:focus\:space-x-reverse:focus > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1920\:active\:space-y-0:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-0:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-1:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-1:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-2:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-2:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-3:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-3:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-4:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-4:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-5:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-5:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-6:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-6:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-8:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-8:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-10:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-10:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-12:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-12:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-14:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-14:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-16:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-16:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-20:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-20:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-24:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-24:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-32:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-32:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-40:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-40:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-48:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-48:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-56:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-56:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-64:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-64:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-px:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1920\:active\:space-x-px:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-1:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-1:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-2:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-2:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-3:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-3:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-4:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-4:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-5:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-5:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-6:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-6:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-8:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-8:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-10:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-10:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-12:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-12:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-14:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-14:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-16:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-16:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-20:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-20:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-24:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-24:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-32:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-32:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-40:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-40:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-48:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-48:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-56:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-56:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-64:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-64:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:-space-y-px:active > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1920\:active\:-space-x-px:active > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:active\:space-y-reverse:active > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1920\:active\:space-x-reverse:active > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1920\:first\:space-y-0:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-0:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-1:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-1:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-2:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-2:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-3:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-3:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-4:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-4:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-5:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-5:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-6:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-6:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-8:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-8:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-10:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-10:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-12:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-12:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-14:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-14:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-16:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-16:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-20:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-20:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-24:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-24:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-32:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-32:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-40:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-40:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-48:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-48:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-56:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-56:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-64:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-64:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-px:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1920\:first\:space-x-px:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-1:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-1:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-2:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-2:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-3:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-3:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-4:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-4:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-5:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-5:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-6:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-6:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-8:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-8:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-10:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-10:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-12:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-12:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-14:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-14:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-16:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-16:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-20:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-20:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-24:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-24:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-32:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-32:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-40:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-40:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-48:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-48:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-56:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-56:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-64:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-64:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:-space-y-px:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1920\:first\:-space-x-px:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:first\:space-y-reverse:first-child > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1920\:first\:space-x-reverse:first-child > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1920\:last\:space-y-0:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-0:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0px * var(--space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-1:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-1:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-2:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-2:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-3:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-3:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-4:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-4:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-5:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-5:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-6:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-6:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-8:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-8:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2rem * var(--space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-10:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-10:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-12:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-12:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3rem * var(--space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-14:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-14:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-16:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(4rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-16:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(4rem * var(--space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-20:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(5rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-20:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(5rem * var(--space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-24:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(6rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-24:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(6rem * var(--space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-32:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(8rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-32:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(8rem * var(--space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-40:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(10rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-40:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(10rem * var(--space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-48:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(12rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-48:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(12rem * var(--space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-56:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(14rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-56:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(14rem * var(--space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-64:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(16rem * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-64:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(16rem * var(--space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-px:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1px * var(--space-y-reverse));
  }

  .s1920\:last\:space-x-px:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(1px * var(--space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-1:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-1:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-2:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-2:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-3:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-3:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-4:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-4:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1rem * var(--space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-5:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-5:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-6:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-6:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-8:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-8:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2rem * var(--space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-10:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-10:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-12:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-12:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3rem * var(--space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-14:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-14:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-16:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-4rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-16:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-4rem * var(--space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-20:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-5rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-20:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-5rem * var(--space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-24:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-6rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-24:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-6rem * var(--space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-32:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-8rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-32:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-8rem * var(--space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-40:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-10rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-40:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-10rem * var(--space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-48:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-12rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-48:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-12rem * var(--space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-56:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-14rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-56:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-14rem * var(--space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-64:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-16rem * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-64:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-16rem * var(--space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:-space-y-px:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-1px * var(--space-y-reverse));
  }

  .s1920\:last\:-space-x-px:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-1px * var(--space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse)));
  }

  .s1920\:last\:space-y-reverse:last-child > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .s1920\:last\:space-x-reverse:last-child > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .s1920\:divide-y-0 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1920\:divide-x-0 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:divide-y-2 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1920\:divide-x-2 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:divide-y-4 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1920\:divide-x-4 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:divide-y-8 > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1920\:divide-x-8 > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:divide-y > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1920\:divide-x > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1920\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1920\:hover\:divide-y-0:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1920\:hover\:divide-x-0:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:hover\:divide-y-2:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1920\:hover\:divide-x-2:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:hover\:divide-y-4:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1920\:hover\:divide-x-4:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:hover\:divide-y-8:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1920\:hover\:divide-x-8:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:hover\:divide-y:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1920\:hover\:divide-x:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:hover\:divide-y-reverse:hover > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1920\:hover\:divide-x-reverse:hover > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1920\:focus\:divide-y-0:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1920\:focus\:divide-x-0:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:focus\:divide-y-2:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1920\:focus\:divide-x-2:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:focus\:divide-y-4:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1920\:focus\:divide-x-4:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:focus\:divide-y-8:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1920\:focus\:divide-x-8:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:focus\:divide-y:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1920\:focus\:divide-x:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:focus\:divide-y-reverse:focus > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1920\:focus\:divide-x-reverse:focus > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1920\:active\:divide-y-0:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1920\:active\:divide-x-0:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:active\:divide-y-2:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1920\:active\:divide-x-2:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:active\:divide-y-4:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1920\:active\:divide-x-4:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:active\:divide-y-8:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1920\:active\:divide-x-8:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:active\:divide-y:active > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1920\:active\:divide-x:active > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:active\:divide-y-reverse:active > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1920\:active\:divide-x-reverse:active > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1920\:first\:divide-y-0:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1920\:first\:divide-x-0:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:first\:divide-y-2:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1920\:first\:divide-x-2:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:first\:divide-y-4:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1920\:first\:divide-x-4:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:first\:divide-y-8:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1920\:first\:divide-x-8:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:first\:divide-y:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1920\:first\:divide-x:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:first\:divide-y-reverse:first-child > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1920\:first\:divide-x-reverse:first-child > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1920\:last\:divide-y-0:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(0px * var(--divide-y-reverse));
  }

  .s1920\:last\:divide-x-0:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(0px * var(--divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:last\:divide-y-2:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(2px * var(--divide-y-reverse));
  }

  .s1920\:last\:divide-x-2:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(2px * var(--divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:last\:divide-y-4:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(4px * var(--divide-y-reverse));
  }

  .s1920\:last\:divide-x-4:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(4px * var(--divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:last\:divide-y-8:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(8px * var(--divide-y-reverse));
  }

  .s1920\:last\:divide-x-8:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(8px * var(--divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:last\:divide-y:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width: calc(1px * var(--divide-y-reverse));
  }

  .s1920\:last\:divide-x:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .s1920\:last\:divide-y-reverse:last-child > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .s1920\:last\:divide-x-reverse:last-child > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .s1920\:divide-black > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1920\:divide-transparent > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1920\:divide-error > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:divide-success > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:divide-white-10 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1920\:divide-white-20 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1920\:divide-white > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1920\:divide-cheeto > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1920\:divide-cheeto-very-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1920\:divide-cheeto-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1920\:divide-cheeto-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1920\:divide-cheeto-hocus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1920\:divide-cheeto-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1920\:divide-cheeto-ml-plus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1920\:divide-cheeto-banner > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1920\:divide-gracy-1 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1920\:divide-gracy-10 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1920\:divide-gracy-20 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1920\:divide-gracy-30 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1920\:divide-gracy-40 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1920\:divide-gracy-50 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1920\:divide-gracy-60 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1920\:divide-gracy-70 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1920\:divide-gracy-80 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1920\:divide-gracy-90 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1920\:divide-gracy-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1920\:divide-gracy > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1920\:divide-gracy-overlay-90 > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:divide-login > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1920\:divide-olive-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1920\:divide-olive-drab > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:divide-olive-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1920\:divide-daisy-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1920\:divide-feedback-gumby > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1920\:divide-feedback-daisy > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1920\:divide-feedback-pokey > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1920\:divide-feedback-aster > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1920\:divide-feedback-aster-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1920\:divide-feedback-roxo > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1920\:divide-feedback-error > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:divide-feedback-success > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:divide-functional-aoki > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1920\:divide-functional-aoki-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1920\:divide-functional-aoki-hocus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1920\:divide-functional-aoki-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1920\:divide-functional-aoki-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1920\:divide-functional-kermit > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1920\:divide-mixlabPlus-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1920\:divide-primary-orange-light > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1920\:divide-off-white > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1920\:hover\:divide-black:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1920\:hover\:divide-transparent:hover > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1920\:hover\:divide-error:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:hover\:divide-success:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:hover\:divide-white-10:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1920\:hover\:divide-white-20:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1920\:hover\:divide-white:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1920\:hover\:divide-cheeto:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1920\:hover\:divide-cheeto-very-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1920\:hover\:divide-cheeto-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1920\:hover\:divide-cheeto-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1920\:hover\:divide-cheeto-hocus:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1920\:hover\:divide-cheeto-active:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1920\:hover\:divide-cheeto-ml-plus:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1920\:hover\:divide-cheeto-banner:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-1:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-10:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-20:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-30:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-40:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-50:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-60:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-70:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-80:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-90:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-100:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1920\:hover\:divide-gracy-overlay-90:hover > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:hover\:divide-login:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1920\:hover\:divide-olive-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1920\:hover\:divide-olive-drab:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:hover\:divide-olive-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1920\:hover\:divide-daisy-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1920\:hover\:divide-feedback-gumby:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1920\:hover\:divide-feedback-daisy:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1920\:hover\:divide-feedback-pokey:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1920\:hover\:divide-feedback-aster:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1920\:hover\:divide-feedback-aster-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1920\:hover\:divide-feedback-roxo:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1920\:hover\:divide-feedback-error:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:hover\:divide-feedback-success:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:hover\:divide-functional-aoki:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1920\:hover\:divide-functional-aoki-dark:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1920\:hover\:divide-functional-aoki-hocus:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1920\:hover\:divide-functional-aoki-active:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1920\:hover\:divide-functional-aoki-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1920\:hover\:divide-functional-kermit:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1920\:hover\:divide-mixlabPlus-light:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1920\:hover\:divide-primary-orange-light:hover > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1920\:hover\:divide-off-white:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1920\:focus\:divide-black:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1920\:focus\:divide-transparent:focus > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1920\:focus\:divide-error:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:focus\:divide-success:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:focus\:divide-white-10:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1920\:focus\:divide-white-20:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1920\:focus\:divide-white:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1920\:focus\:divide-cheeto:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1920\:focus\:divide-cheeto-very-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1920\:focus\:divide-cheeto-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1920\:focus\:divide-cheeto-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1920\:focus\:divide-cheeto-hocus:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1920\:focus\:divide-cheeto-active:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1920\:focus\:divide-cheeto-ml-plus:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1920\:focus\:divide-cheeto-banner:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-1:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-10:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-20:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-30:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-40:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-50:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-60:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-70:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-80:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-90:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-100:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1920\:focus\:divide-gracy-overlay-90:focus > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:focus\:divide-login:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1920\:focus\:divide-olive-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1920\:focus\:divide-olive-drab:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:focus\:divide-olive-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1920\:focus\:divide-daisy-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1920\:focus\:divide-feedback-gumby:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1920\:focus\:divide-feedback-daisy:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1920\:focus\:divide-feedback-pokey:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1920\:focus\:divide-feedback-aster:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1920\:focus\:divide-feedback-aster-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1920\:focus\:divide-feedback-roxo:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1920\:focus\:divide-feedback-error:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:focus\:divide-feedback-success:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:focus\:divide-functional-aoki:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1920\:focus\:divide-functional-aoki-dark:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1920\:focus\:divide-functional-aoki-hocus:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1920\:focus\:divide-functional-aoki-active:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1920\:focus\:divide-functional-aoki-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1920\:focus\:divide-functional-kermit:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1920\:focus\:divide-mixlabPlus-light:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1920\:focus\:divide-primary-orange-light:focus > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1920\:focus\:divide-off-white:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1920\:active\:divide-black:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1920\:active\:divide-transparent:active > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1920\:active\:divide-error:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:active\:divide-success:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:active\:divide-white-10:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1920\:active\:divide-white-20:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1920\:active\:divide-white:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1920\:active\:divide-cheeto:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1920\:active\:divide-cheeto-very-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1920\:active\:divide-cheeto-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1920\:active\:divide-cheeto-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1920\:active\:divide-cheeto-hocus:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1920\:active\:divide-cheeto-active:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1920\:active\:divide-cheeto-ml-plus:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1920\:active\:divide-cheeto-banner:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-1:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-10:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-20:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-30:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-40:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-50:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-60:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-70:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-80:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-90:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-100:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1920\:active\:divide-gracy-overlay-90:active > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:active\:divide-login:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1920\:active\:divide-olive-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1920\:active\:divide-olive-drab:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:active\:divide-olive-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1920\:active\:divide-daisy-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1920\:active\:divide-feedback-gumby:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1920\:active\:divide-feedback-daisy:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1920\:active\:divide-feedback-pokey:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1920\:active\:divide-feedback-aster:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1920\:active\:divide-feedback-aster-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1920\:active\:divide-feedback-roxo:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1920\:active\:divide-feedback-error:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:active\:divide-feedback-success:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:active\:divide-functional-aoki:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1920\:active\:divide-functional-aoki-dark:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1920\:active\:divide-functional-aoki-hocus:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1920\:active\:divide-functional-aoki-active:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1920\:active\:divide-functional-aoki-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1920\:active\:divide-functional-kermit:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1920\:active\:divide-mixlabPlus-light:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1920\:active\:divide-primary-orange-light:active > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1920\:active\:divide-off-white:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1920\:first\:divide-black:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1920\:first\:divide-transparent:first-child > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1920\:first\:divide-error:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:first\:divide-success:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:first\:divide-white-10:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1920\:first\:divide-white-20:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1920\:first\:divide-white:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1920\:first\:divide-cheeto:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1920\:first\:divide-cheeto-very-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1920\:first\:divide-cheeto-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1920\:first\:divide-cheeto-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1920\:first\:divide-cheeto-hocus:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1920\:first\:divide-cheeto-active:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1920\:first\:divide-cheeto-ml-plus:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1920\:first\:divide-cheeto-banner:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-1:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-10:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-20:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-30:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-40:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-50:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-60:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-70:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-80:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-90:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-100:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1920\:first\:divide-gracy-overlay-90:first-child > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:first\:divide-login:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1920\:first\:divide-olive-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1920\:first\:divide-olive-drab:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:first\:divide-olive-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1920\:first\:divide-daisy-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1920\:first\:divide-feedback-gumby:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1920\:first\:divide-feedback-daisy:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1920\:first\:divide-feedback-pokey:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1920\:first\:divide-feedback-aster:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1920\:first\:divide-feedback-aster-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1920\:first\:divide-feedback-roxo:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1920\:first\:divide-feedback-error:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:first\:divide-feedback-success:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:first\:divide-functional-aoki:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1920\:first\:divide-functional-aoki-dark:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1920\:first\:divide-functional-aoki-hocus:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1920\:first\:divide-functional-aoki-active:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1920\:first\:divide-functional-aoki-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1920\:first\:divide-functional-kermit:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1920\:first\:divide-mixlabPlus-light:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1920\:first\:divide-primary-orange-light:first-child > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1920\:first\:divide-off-white:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1920\:last\:divide-black:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--divide-opacity));
  }

  .s1920\:last\:divide-transparent:last-child > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .s1920\:last\:divide-error:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:last\:divide-success:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:last\:divide-white-10:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--divide-opacity));
  }

  .s1920\:last\:divide-white-20:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--divide-opacity));
  }

  .s1920\:last\:divide-white:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .s1920\:last\:divide-cheeto:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--divide-opacity));
  }

  .s1920\:last\:divide-cheeto-very-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--divide-opacity));
  }

  .s1920\:last\:divide-cheeto-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--divide-opacity));
  }

  .s1920\:last\:divide-cheeto-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--divide-opacity));
  }

  .s1920\:last\:divide-cheeto-hocus:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--divide-opacity));
  }

  .s1920\:last\:divide-cheeto-active:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--divide-opacity));
  }

  .s1920\:last\:divide-cheeto-ml-plus:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--divide-opacity));
  }

  .s1920\:last\:divide-cheeto-banner:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-1:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-10:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-20:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-30:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-40:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-50:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-60:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-70:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-80:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-90:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-100:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--divide-opacity));
  }

  .s1920\:last\:divide-gracy-overlay-90:last-child > :not(template) ~ :not(template){
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:last\:divide-login:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--divide-opacity));
  }

  .s1920\:last\:divide-olive-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--divide-opacity));
  }

  .s1920\:last\:divide-olive-drab:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:last\:divide-olive-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--divide-opacity));
  }

  .s1920\:last\:divide-daisy-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--divide-opacity));
  }

  .s1920\:last\:divide-feedback-gumby:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--divide-opacity));
  }

  .s1920\:last\:divide-feedback-daisy:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--divide-opacity));
  }

  .s1920\:last\:divide-feedback-pokey:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--divide-opacity));
  }

  .s1920\:last\:divide-feedback-aster:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--divide-opacity));
  }

  .s1920\:last\:divide-feedback-aster-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--divide-opacity));
  }

  .s1920\:last\:divide-feedback-roxo:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--divide-opacity));
  }

  .s1920\:last\:divide-feedback-error:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--divide-opacity));
  }

  .s1920\:last\:divide-feedback-success:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--divide-opacity));
  }

  .s1920\:last\:divide-functional-aoki:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--divide-opacity));
  }

  .s1920\:last\:divide-functional-aoki-dark:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--divide-opacity));
  }

  .s1920\:last\:divide-functional-aoki-hocus:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--divide-opacity));
  }

  .s1920\:last\:divide-functional-aoki-active:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--divide-opacity));
  }

  .s1920\:last\:divide-functional-aoki-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--divide-opacity));
  }

  .s1920\:last\:divide-functional-kermit:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--divide-opacity));
  }

  .s1920\:last\:divide-mixlabPlus-light:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--divide-opacity));
  }

  .s1920\:last\:divide-primary-orange-light:last-child > :not(template) ~ :not(template){
    border-color: ;
  }

  .s1920\:last\:divide-off-white:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--divide-opacity));
  }

  .s1920\:divide-solid > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1920\:divide-dashed > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1920\:divide-dotted > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1920\:divide-double > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1920\:divide-none > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1920\:hover\:divide-solid:hover > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1920\:hover\:divide-dashed:hover > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1920\:hover\:divide-dotted:hover > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1920\:hover\:divide-double:hover > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1920\:hover\:divide-none:hover > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1920\:focus\:divide-solid:focus > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1920\:focus\:divide-dashed:focus > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1920\:focus\:divide-dotted:focus > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1920\:focus\:divide-double:focus > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1920\:focus\:divide-none:focus > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1920\:active\:divide-solid:active > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1920\:active\:divide-dashed:active > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1920\:active\:divide-dotted:active > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1920\:active\:divide-double:active > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1920\:active\:divide-none:active > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1920\:first\:divide-solid:first-child > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1920\:first\:divide-dashed:first-child > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1920\:first\:divide-dotted:first-child > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1920\:first\:divide-double:first-child > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1920\:first\:divide-none:first-child > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1920\:last\:divide-solid:last-child > :not(template) ~ :not(template){
    border-style: solid;
  }

  .s1920\:last\:divide-dashed:last-child > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .s1920\:last\:divide-dotted:last-child > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .s1920\:last\:divide-double:last-child > :not(template) ~ :not(template){
    border-style: double;
  }

  .s1920\:last\:divide-none:last-child > :not(template) ~ :not(template){
    border-style: none;
  }

  .s1920\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1920\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1920\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1920\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1920\:divide-opacity-80 > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1920\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1920\:hover\:divide-opacity-0:hover > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1920\:hover\:divide-opacity-25:hover > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1920\:hover\:divide-opacity-50:hover > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1920\:hover\:divide-opacity-75:hover > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1920\:hover\:divide-opacity-80:hover > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1920\:hover\:divide-opacity-100:hover > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1920\:focus\:divide-opacity-0:focus > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1920\:focus\:divide-opacity-25:focus > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1920\:focus\:divide-opacity-50:focus > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1920\:focus\:divide-opacity-75:focus > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1920\:focus\:divide-opacity-80:focus > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1920\:focus\:divide-opacity-100:focus > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1920\:active\:divide-opacity-0:active > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1920\:active\:divide-opacity-25:active > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1920\:active\:divide-opacity-50:active > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1920\:active\:divide-opacity-75:active > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1920\:active\:divide-opacity-80:active > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1920\:active\:divide-opacity-100:active > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1920\:first\:divide-opacity-0:first-child > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1920\:first\:divide-opacity-25:first-child > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1920\:first\:divide-opacity-50:first-child > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1920\:first\:divide-opacity-75:first-child > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1920\:first\:divide-opacity-80:first-child > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1920\:first\:divide-opacity-100:first-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1920\:last\:divide-opacity-0:last-child > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .s1920\:last\:divide-opacity-25:last-child > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .s1920\:last\:divide-opacity-50:last-child > :not(template) ~ :not(template){
    --divide-opacity: .5;
  }

  .s1920\:last\:divide-opacity-75:last-child > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .s1920\:last\:divide-opacity-80:last-child > :not(template) ~ :not(template){
    --divide-opacity: .8;
  }

  .s1920\:last\:divide-opacity-100:last-child > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .s1920\: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;
  }

  .s1920\:not-sr-only{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1920\:hover\:sr-only:hover{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .s1920\:hover\:not-sr-only:hover{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1920\: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;
  }

  .s1920\:focus\:not-sr-only:focus{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1920\:active\:sr-only:active{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .s1920\:active\:not-sr-only:active{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1920\:first\:sr-only:first-child{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .s1920\:first\:not-sr-only:first-child{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1920\:last\:sr-only:last-child{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .s1920\:last\:not-sr-only:last-child{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .s1920\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1920\:hover\:appearance-none:hover{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1920\:focus\:appearance-none:focus{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1920\:active\:appearance-none:active{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1920\:first\:appearance-none:first-child{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1920\:last\:appearance-none:last-child{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .s1920\:bg-fixed{
    background-attachment: fixed;
  }

  .s1920\:bg-local{
    background-attachment: local;
  }

  .s1920\:bg-scroll{
    background-attachment: scroll;
  }

  .s1920\:hover\:bg-fixed:hover{
    background-attachment: fixed;
  }

  .s1920\:hover\:bg-local:hover{
    background-attachment: local;
  }

  .s1920\:hover\:bg-scroll:hover{
    background-attachment: scroll;
  }

  .s1920\:focus\:bg-fixed:focus{
    background-attachment: fixed;
  }

  .s1920\:focus\:bg-local:focus{
    background-attachment: local;
  }

  .s1920\:focus\:bg-scroll:focus{
    background-attachment: scroll;
  }

  .s1920\:active\:bg-fixed:active{
    background-attachment: fixed;
  }

  .s1920\:active\:bg-local:active{
    background-attachment: local;
  }

  .s1920\:active\:bg-scroll:active{
    background-attachment: scroll;
  }

  .s1920\:first\:bg-fixed:first-child{
    background-attachment: fixed;
  }

  .s1920\:first\:bg-local:first-child{
    background-attachment: local;
  }

  .s1920\:first\:bg-scroll:first-child{
    background-attachment: scroll;
  }

  .s1920\:last\:bg-fixed:last-child{
    background-attachment: fixed;
  }

  .s1920\:last\:bg-local:last-child{
    background-attachment: local;
  }

  .s1920\:last\:bg-scroll:last-child{
    background-attachment: scroll;
  }

  .s1920\:bg-clip-border{
    background-clip: border-box;
  }

  .s1920\:bg-clip-padding{
    background-clip: padding-box;
  }

  .s1920\:bg-clip-content{
    background-clip: content-box;
  }

  .s1920\:bg-clip-text{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1920\:hover\:bg-clip-border:hover{
    background-clip: border-box;
  }

  .s1920\:hover\:bg-clip-padding:hover{
    background-clip: padding-box;
  }

  .s1920\:hover\:bg-clip-content:hover{
    background-clip: content-box;
  }

  .s1920\:hover\:bg-clip-text:hover{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1920\:focus\:bg-clip-border:focus{
    background-clip: border-box;
  }

  .s1920\:focus\:bg-clip-padding:focus{
    background-clip: padding-box;
  }

  .s1920\:focus\:bg-clip-content:focus{
    background-clip: content-box;
  }

  .s1920\:focus\:bg-clip-text:focus{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1920\:active\:bg-clip-border:active{
    background-clip: border-box;
  }

  .s1920\:active\:bg-clip-padding:active{
    background-clip: padding-box;
  }

  .s1920\:active\:bg-clip-content:active{
    background-clip: content-box;
  }

  .s1920\:active\:bg-clip-text:active{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1920\:first\:bg-clip-border:first-child{
    background-clip: border-box;
  }

  .s1920\:first\:bg-clip-padding:first-child{
    background-clip: padding-box;
  }

  .s1920\:first\:bg-clip-content:first-child{
    background-clip: content-box;
  }

  .s1920\:first\:bg-clip-text:first-child{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1920\:last\:bg-clip-border:last-child{
    background-clip: border-box;
  }

  .s1920\:last\:bg-clip-padding:last-child{
    background-clip: padding-box;
  }

  .s1920\:last\:bg-clip-content:last-child{
    background-clip: content-box;
  }

  .s1920\:last\:bg-clip-text:last-child{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .s1920\:bg-black{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1920\:bg-transparent{
    background-color: transparent;
  }

  .s1920\:bg-error{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:bg-success{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:bg-white-10{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1920\:bg-white-20{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1920\:bg-white{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1920\:bg-cheeto{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1920\:bg-cheeto-very-light{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1920\:bg-cheeto-light{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1920\:bg-cheeto-dark{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1920\:bg-cheeto-hocus{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1920\:bg-cheeto-active{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1920\:bg-cheeto-ml-plus{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1920\:bg-cheeto-banner{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1920\:bg-gracy-1{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1920\:bg-gracy-10{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1920\:bg-gracy-20{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1920\:bg-gracy-30{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1920\:bg-gracy-40{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1920\:bg-gracy-50{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1920\:bg-gracy-60{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1920\:bg-gracy-70{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1920\:bg-gracy-80{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1920\:bg-gracy-90{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1920\:bg-gracy-100{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1920\:bg-gracy{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1920\:bg-gracy-overlay-90{
    background-color: rgba(50,49,50,0.5);
  }

  .s1920\:bg-login{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1920\:bg-olive-light{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1920\:bg-olive-drab{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:bg-olive-dark{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1920\:bg-daisy-light{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1920\:bg-feedback-gumby{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1920\:bg-feedback-daisy{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1920\:bg-feedback-pokey{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1920\:bg-feedback-aster{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1920\:bg-feedback-aster-dark{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1920\:bg-feedback-roxo{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1920\:bg-feedback-error{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:bg-feedback-success{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:bg-functional-aoki{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1920\:bg-functional-aoki-dark{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1920\:bg-functional-aoki-hocus{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1920\:bg-functional-aoki-active{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1920\:bg-functional-aoki-light{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1920\:bg-functional-kermit{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1920\:bg-mixlabPlus-light{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1920\:bg-primary-orange-light{
    background-color: ;
  }

  .s1920\:bg-off-white{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1920\:hover\:bg-black:hover{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1920\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .s1920\:hover\:bg-error:hover{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:hover\:bg-success:hover{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:hover\:bg-white-10:hover{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1920\:hover\:bg-white-20:hover{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1920\:hover\:bg-white:hover{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1920\:hover\:bg-cheeto:hover{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1920\:hover\:bg-cheeto-very-light:hover{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1920\:hover\:bg-cheeto-light:hover{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1920\:hover\:bg-cheeto-dark:hover{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1920\:hover\:bg-cheeto-hocus:hover{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1920\:hover\:bg-cheeto-active:hover{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1920\:hover\:bg-cheeto-ml-plus:hover{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1920\:hover\:bg-cheeto-banner:hover{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-1:hover{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-10:hover{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-20:hover{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-30:hover{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-40:hover{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-50:hover{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-60:hover{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-70:hover{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-80:hover{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-90:hover{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-100:hover{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy:hover{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1920\:hover\:bg-gracy-overlay-90:hover{
    background-color: rgba(50,49,50,0.5);
  }

  .s1920\:hover\:bg-login:hover{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1920\:hover\:bg-olive-light:hover{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1920\:hover\:bg-olive-drab:hover{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:hover\:bg-olive-dark:hover{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1920\:hover\:bg-daisy-light:hover{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1920\:hover\:bg-feedback-gumby:hover{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1920\:hover\:bg-feedback-daisy:hover{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1920\:hover\:bg-feedback-pokey:hover{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1920\:hover\:bg-feedback-aster:hover{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1920\:hover\:bg-feedback-aster-dark:hover{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1920\:hover\:bg-feedback-roxo:hover{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1920\:hover\:bg-feedback-error:hover{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:hover\:bg-feedback-success:hover{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:hover\:bg-functional-aoki:hover{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1920\:hover\:bg-functional-aoki-dark:hover{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1920\:hover\:bg-functional-aoki-hocus:hover{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1920\:hover\:bg-functional-aoki-active:hover{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1920\:hover\:bg-functional-aoki-light:hover{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1920\:hover\:bg-functional-kermit:hover{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1920\:hover\:bg-mixlabPlus-light:hover{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1920\:hover\:bg-primary-orange-light:hover{
    background-color: ;
  }

  .s1920\:hover\:bg-off-white:hover{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1920\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1920\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .s1920\:focus\:bg-error:focus{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:focus\:bg-success:focus{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:focus\:bg-white-10:focus{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1920\:focus\:bg-white-20:focus{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1920\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1920\:focus\:bg-cheeto:focus{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1920\:focus\:bg-cheeto-very-light:focus{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1920\:focus\:bg-cheeto-light:focus{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1920\:focus\:bg-cheeto-dark:focus{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1920\:focus\:bg-cheeto-hocus:focus{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1920\:focus\:bg-cheeto-active:focus{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1920\:focus\:bg-cheeto-ml-plus:focus{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1920\:focus\:bg-cheeto-banner:focus{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-1:focus{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-10:focus{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-20:focus{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-30:focus{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-40:focus{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-50:focus{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-60:focus{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-70:focus{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-80:focus{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-90:focus{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-100:focus{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy:focus{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1920\:focus\:bg-gracy-overlay-90:focus{
    background-color: rgba(50,49,50,0.5);
  }

  .s1920\:focus\:bg-login:focus{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1920\:focus\:bg-olive-light:focus{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1920\:focus\:bg-olive-drab:focus{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:focus\:bg-olive-dark:focus{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1920\:focus\:bg-daisy-light:focus{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1920\:focus\:bg-feedback-gumby:focus{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1920\:focus\:bg-feedback-daisy:focus{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1920\:focus\:bg-feedback-pokey:focus{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1920\:focus\:bg-feedback-aster:focus{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1920\:focus\:bg-feedback-aster-dark:focus{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1920\:focus\:bg-feedback-roxo:focus{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1920\:focus\:bg-feedback-error:focus{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:focus\:bg-feedback-success:focus{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:focus\:bg-functional-aoki:focus{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1920\:focus\:bg-functional-aoki-dark:focus{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1920\:focus\:bg-functional-aoki-hocus:focus{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1920\:focus\:bg-functional-aoki-active:focus{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1920\:focus\:bg-functional-aoki-light:focus{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1920\:focus\:bg-functional-kermit:focus{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1920\:focus\:bg-mixlabPlus-light:focus{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1920\:focus\:bg-primary-orange-light:focus{
    background-color: ;
  }

  .s1920\:focus\:bg-off-white:focus{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1920\:active\:bg-black:active{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1920\:active\:bg-transparent:active{
    background-color: transparent;
  }

  .s1920\:active\:bg-error:active{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:active\:bg-success:active{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:active\:bg-white-10:active{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1920\:active\:bg-white-20:active{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1920\:active\:bg-white:active{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1920\:active\:bg-cheeto:active{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1920\:active\:bg-cheeto-very-light:active{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1920\:active\:bg-cheeto-light:active{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1920\:active\:bg-cheeto-dark:active{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1920\:active\:bg-cheeto-hocus:active{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1920\:active\:bg-cheeto-active:active{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1920\:active\:bg-cheeto-ml-plus:active{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1920\:active\:bg-cheeto-banner:active{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-1:active{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-10:active{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-20:active{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-30:active{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-40:active{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-50:active{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-60:active{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-70:active{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-80:active{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-90:active{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-100:active{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy:active{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1920\:active\:bg-gracy-overlay-90:active{
    background-color: rgba(50,49,50,0.5);
  }

  .s1920\:active\:bg-login:active{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1920\:active\:bg-olive-light:active{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1920\:active\:bg-olive-drab:active{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:active\:bg-olive-dark:active{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1920\:active\:bg-daisy-light:active{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1920\:active\:bg-feedback-gumby:active{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1920\:active\:bg-feedback-daisy:active{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1920\:active\:bg-feedback-pokey:active{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1920\:active\:bg-feedback-aster:active{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1920\:active\:bg-feedback-aster-dark:active{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1920\:active\:bg-feedback-roxo:active{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1920\:active\:bg-feedback-error:active{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:active\:bg-feedback-success:active{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:active\:bg-functional-aoki:active{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1920\:active\:bg-functional-aoki-dark:active{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1920\:active\:bg-functional-aoki-hocus:active{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1920\:active\:bg-functional-aoki-active:active{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1920\:active\:bg-functional-aoki-light:active{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1920\:active\:bg-functional-kermit:active{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1920\:active\:bg-mixlabPlus-light:active{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1920\:active\:bg-primary-orange-light:active{
    background-color: ;
  }

  .s1920\:active\:bg-off-white:active{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1920\:first\:bg-black:first-child{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1920\:first\:bg-transparent:first-child{
    background-color: transparent;
  }

  .s1920\:first\:bg-error:first-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:first\:bg-success:first-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:first\:bg-white-10:first-child{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1920\:first\:bg-white-20:first-child{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1920\:first\:bg-white:first-child{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1920\:first\:bg-cheeto:first-child{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1920\:first\:bg-cheeto-very-light:first-child{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1920\:first\:bg-cheeto-light:first-child{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1920\:first\:bg-cheeto-dark:first-child{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1920\:first\:bg-cheeto-hocus:first-child{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1920\:first\:bg-cheeto-active:first-child{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1920\:first\:bg-cheeto-ml-plus:first-child{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1920\:first\:bg-cheeto-banner:first-child{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-1:first-child{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-10:first-child{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-20:first-child{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-30:first-child{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-40:first-child{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-50:first-child{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-60:first-child{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-70:first-child{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-80:first-child{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-90:first-child{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-100:first-child{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy:first-child{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1920\:first\:bg-gracy-overlay-90:first-child{
    background-color: rgba(50,49,50,0.5);
  }

  .s1920\:first\:bg-login:first-child{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1920\:first\:bg-olive-light:first-child{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1920\:first\:bg-olive-drab:first-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:first\:bg-olive-dark:first-child{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1920\:first\:bg-daisy-light:first-child{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1920\:first\:bg-feedback-gumby:first-child{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1920\:first\:bg-feedback-daisy:first-child{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1920\:first\:bg-feedback-pokey:first-child{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1920\:first\:bg-feedback-aster:first-child{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1920\:first\:bg-feedback-aster-dark:first-child{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1920\:first\:bg-feedback-roxo:first-child{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1920\:first\:bg-feedback-error:first-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:first\:bg-feedback-success:first-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:first\:bg-functional-aoki:first-child{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1920\:first\:bg-functional-aoki-dark:first-child{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1920\:first\:bg-functional-aoki-hocus:first-child{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1920\:first\:bg-functional-aoki-active:first-child{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1920\:first\:bg-functional-aoki-light:first-child{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1920\:first\:bg-functional-kermit:first-child{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1920\:first\:bg-mixlabPlus-light:first-child{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1920\:first\:bg-primary-orange-light:first-child{
    background-color: ;
  }

  .s1920\:first\:bg-off-white:first-child{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1920\:last\:bg-black:last-child{
    --bg-opacity: 1;
    background-color: #000000;
    background-color: rgba(0, 0, 0, var(--bg-opacity));
  }

  .s1920\:last\:bg-transparent:last-child{
    background-color: transparent;
  }

  .s1920\:last\:bg-error:last-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:last\:bg-success:last-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:last\:bg-white-10:last-child{
    --bg-opacity: 1;
    background-color: #FBFBFB;
    background-color: rgba(251, 251, 251, var(--bg-opacity));
  }

  .s1920\:last\:bg-white-20:last-child{
    --bg-opacity: 1;
    background-color: #ECECEC;
    background-color: rgba(236, 236, 236, var(--bg-opacity));
  }

  .s1920\:last\:bg-white:last-child{
    --bg-opacity: 1;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .s1920\:last\:bg-cheeto:last-child{
    --bg-opacity: 1;
    background-color: #f7a500;
    background-color: rgba(247, 165, 0, var(--bg-opacity));
  }

  .s1920\:last\:bg-cheeto-very-light:last-child{
    --bg-opacity: 1;
    background-color: #fffaf2;
    background-color: rgba(255, 250, 242, var(--bg-opacity));
  }

  .s1920\:last\:bg-cheeto-light:last-child{
    --bg-opacity: 1;
    background-color: #ffd649;
    background-color: rgba(255, 214, 73, var(--bg-opacity));
  }

  .s1920\:last\:bg-cheeto-dark:last-child{
    --bg-opacity: 1;
    background-color: #bf7600;
    background-color: rgba(191, 118, 0, var(--bg-opacity));
  }

  .s1920\:last\:bg-cheeto-hocus:last-child{
    --bg-opacity: 1;
    background-color: #f8bd0f;
    background-color: rgba(248, 189, 15, var(--bg-opacity));
  }

  .s1920\:last\:bg-cheeto-active:last-child{
    --bg-opacity: 1;
    background-color: #f8d61b;
    background-color: rgba(248, 214, 27, var(--bg-opacity));
  }

  .s1920\:last\:bg-cheeto-ml-plus:last-child{
    --bg-opacity: 1;
    background-color: #FBEFCA;
    background-color: rgba(251, 239, 202, var(--bg-opacity));
  }

  .s1920\:last\:bg-cheeto-banner:last-child{
    --bg-opacity: 1;
    background-color: #fef7e5;
    background-color: rgba(254, 247, 229, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-1:last-child{
    --bg-opacity: 1;
    background-color: #f8f8fa;
    background-color: rgba(248, 248, 250, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-10:last-child{
    --bg-opacity: 1;
    background-color: #faf7fd;
    background-color: rgba(250, 247, 253, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-20:last-child{
    --bg-opacity: 1;
    background-color: #e0dde3;
    background-color: rgba(224, 221, 227, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-30:last-child{
    --bg-opacity: 1;
    background-color: #c8c5ca;
    background-color: rgba(200, 197, 202, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-40:last-child{
    --bg-opacity: 1;
    background-color: #aeacb0;
    background-color: rgba(174, 172, 176, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-50:last-child{
    --bg-opacity: 1;
    background-color: #969497;
    background-color: rgba(150, 148, 151, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-60:last-child{
    --bg-opacity: 1;
    background-color: #7c7b7e;
    background-color: rgba(124, 123, 126, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-70:last-child{
    --bg-opacity: 1;
    background-color: #646265;
    background-color: rgba(100, 98, 101, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-80:last-child{
    --bg-opacity: 1;
    background-color: #4a494b;
    background-color: rgba(74, 73, 75, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-90:last-child{
    --bg-opacity: 1;
    background-color: #323132;
    background-color: rgba(50, 49, 50, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-100:last-child{
    --bg-opacity: 1;
    background-color: #181818;
    background-color: rgba(24, 24, 24, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy:last-child{
    --bg-opacity: 1;
    background-color: #6F7878;
    background-color: rgba(111, 120, 120, var(--bg-opacity));
  }

  .s1920\:last\:bg-gracy-overlay-90:last-child{
    background-color: rgba(50,49,50,0.5);
  }

  .s1920\:last\:bg-login:last-child{
    --bg-opacity: 1;
    background-color: #FDF7E7;
    background-color: rgba(253, 247, 231, var(--bg-opacity));
  }

  .s1920\:last\:bg-olive-light:last-child{
    --bg-opacity: 1;
    background-color: #DFF5F6;
    background-color: rgba(223, 245, 246, var(--bg-opacity));
  }

  .s1920\:last\:bg-olive-drab:last-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:last\:bg-olive-dark:last-child{
    --bg-opacity: 1;
    background-color: #096348;
    background-color: rgba(9, 99, 72, var(--bg-opacity));
  }

  .s1920\:last\:bg-daisy-light:last-child{
    --bg-opacity: 1;
    background-color: #fffce1;
    background-color: rgba(255, 252, 225, var(--bg-opacity));
  }

  .s1920\:last\:bg-feedback-gumby:last-child{
    --bg-opacity: 1;
    background-color: #c8e6c9;
    background-color: rgba(200, 230, 201, var(--bg-opacity));
  }

  .s1920\:last\:bg-feedback-daisy:last-child{
    --bg-opacity: 1;
    background-color: #fff9c4;
    background-color: rgba(255, 249, 196, var(--bg-opacity));
  }

  .s1920\:last\:bg-feedback-pokey:last-child{
    --bg-opacity: 1;
    background-color: #ffcdd2;
    background-color: rgba(255, 205, 210, var(--bg-opacity));
  }

  .s1920\:last\:bg-feedback-aster:last-child{
    --bg-opacity: 1;
    background-color: #b3e5fc;
    background-color: rgba(179, 229, 252, var(--bg-opacity));
  }

  .s1920\:last\:bg-feedback-aster-dark:last-child{
    --bg-opacity: 1;
    background-color: #03567C;
    background-color: rgba(3, 86, 124, var(--bg-opacity));
  }

  .s1920\:last\:bg-feedback-roxo:last-child{
    --bg-opacity: 1;
    background-color: #d1c4e9;
    background-color: rgba(209, 196, 233, var(--bg-opacity));
  }

  .s1920\:last\:bg-feedback-error:last-child{
    --bg-opacity: 1;
    background-color: #f44336;
    background-color: rgba(244, 67, 54, var(--bg-opacity));
  }

  .s1920\:last\:bg-feedback-success:last-child{
    --bg-opacity: 1;
    background-color: #5ca02c;
    background-color: rgba(92, 160, 44, var(--bg-opacity));
  }

  .s1920\:last\:bg-functional-aoki:last-child{
    --bg-opacity: 1;
    background-color: #6f2ca0;
    background-color: rgba(111, 44, 160, var(--bg-opacity));
  }

  .s1920\:last\:bg-functional-aoki-dark:last-child{
    --bg-opacity: 1;
    background-color: #3e0071;
    background-color: rgba(62, 0, 113, var(--bg-opacity));
  }

  .s1920\:last\:bg-functional-aoki-hocus:last-child{
    --bg-opacity: 1;
    background-color: #9035af;
    background-color: rgba(144, 53, 175, var(--bg-opacity));
  }

  .s1920\:last\:bg-functional-aoki-active:last-child{
    --bg-opacity: 1;
    background-color: #a04fbc;
    background-color: rgba(160, 79, 188, var(--bg-opacity));
  }

  .s1920\:last\:bg-functional-aoki-light:last-child{
    --bg-opacity: 1;
    background-color: #a15ad2;
    background-color: rgba(161, 90, 210, var(--bg-opacity));
  }

  .s1920\:last\:bg-functional-kermit:last-child{
    --bg-opacity: 1;
    background-color: #5aa120;
    background-color: rgba(90, 161, 32, var(--bg-opacity));
  }

  .s1920\:last\:bg-mixlabPlus-light:last-child{
    --bg-opacity: 1;
    background-color: #FFFEF9;
    background-color: rgba(255, 254, 249, var(--bg-opacity));
  }

  .s1920\:last\:bg-primary-orange-light:last-child{
    background-color: ;
  }

  .s1920\:last\:bg-off-white:last-child{
    --bg-opacity: 1;
    background-color: #FAF9F6;
    background-color: rgba(250, 249, 246, var(--bg-opacity));
  }

  .s1920\:bg-none{
    background-image: none;
  }

  .s1920\:bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1920\:bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1920\:bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1920\:bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1920\:bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1920\:bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1920\:bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1920\:bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1920\:hover\:bg-none:hover{
    background-image: none;
  }

  .s1920\:hover\:bg-gradient-to-t:hover{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1920\:hover\:bg-gradient-to-tr:hover{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1920\:hover\:bg-gradient-to-r:hover{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1920\:hover\:bg-gradient-to-br:hover{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1920\:hover\:bg-gradient-to-b:hover{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1920\:hover\:bg-gradient-to-bl:hover{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1920\:hover\:bg-gradient-to-l:hover{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1920\:hover\:bg-gradient-to-tl:hover{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1920\:focus\:bg-none:focus{
    background-image: none;
  }

  .s1920\:focus\:bg-gradient-to-t:focus{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1920\:focus\:bg-gradient-to-tr:focus{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1920\:focus\:bg-gradient-to-r:focus{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1920\:focus\:bg-gradient-to-br:focus{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1920\:focus\:bg-gradient-to-b:focus{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1920\:focus\:bg-gradient-to-bl:focus{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1920\:focus\:bg-gradient-to-l:focus{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1920\:focus\:bg-gradient-to-tl:focus{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1920\:active\:bg-none:active{
    background-image: none;
  }

  .s1920\:active\:bg-gradient-to-t:active{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1920\:active\:bg-gradient-to-tr:active{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1920\:active\:bg-gradient-to-r:active{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1920\:active\:bg-gradient-to-br:active{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1920\:active\:bg-gradient-to-b:active{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1920\:active\:bg-gradient-to-bl:active{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1920\:active\:bg-gradient-to-l:active{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1920\:active\:bg-gradient-to-tl:active{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1920\:first\:bg-none:first-child{
    background-image: none;
  }

  .s1920\:first\:bg-gradient-to-t:first-child{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1920\:first\:bg-gradient-to-tr:first-child{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1920\:first\:bg-gradient-to-r:first-child{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1920\:first\:bg-gradient-to-br:first-child{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1920\:first\:bg-gradient-to-b:first-child{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1920\:first\:bg-gradient-to-bl:first-child{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1920\:first\:bg-gradient-to-l:first-child{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1920\:first\:bg-gradient-to-tl:first-child{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1920\:last\:bg-none:last-child{
    background-image: none;
  }

  .s1920\:last\:bg-gradient-to-t:last-child{
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .s1920\:last\:bg-gradient-to-tr:last-child{
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .s1920\:last\:bg-gradient-to-r:last-child{
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .s1920\:last\:bg-gradient-to-br:last-child{
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .s1920\:last\:bg-gradient-to-b:last-child{
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .s1920\:last\:bg-gradient-to-bl:last-child{
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .s1920\:last\:bg-gradient-to-l:last-child{
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .s1920\:last\:bg-gradient-to-tl:last-child{
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .s1920\:from-black{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:from-transparent{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:from-error{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:from-success{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:from-white-10{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:from-white-20{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:from-white{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:from-cheeto{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:from-cheeto-very-light{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:from-cheeto-light{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:from-cheeto-dark{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:from-cheeto-hocus{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:from-cheeto-active{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:from-cheeto-ml-plus{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:from-cheeto-banner{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:from-gracy-1{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:from-gracy-10{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:from-gracy-20{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:from-gracy-30{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:from-gracy-40{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:from-gracy-50{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:from-gracy-60{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:from-gracy-70{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:from-gracy-80{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:from-gracy-90{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:from-gracy-100{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:from-gracy{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:from-gracy-overlay-90{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:from-login{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:from-olive-light{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:from-olive-drab{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:from-olive-dark{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:from-daisy-light{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:from-feedback-gumby{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:from-feedback-daisy{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:from-feedback-pokey{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:from-feedback-aster{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:from-feedback-aster-dark{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:from-feedback-roxo{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:from-feedback-error{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:from-feedback-success{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:from-functional-aoki{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:from-functional-aoki-dark{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:from-functional-aoki-hocus{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:from-functional-aoki-active{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:from-functional-aoki-light{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:from-functional-kermit{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:from-mixlabPlus-light{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:from-primary-orange-light{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:from-off-white{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:via-black{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:via-transparent{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:via-error{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:via-success{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:via-white-10{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:via-white-20{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:via-white{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:via-cheeto{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:via-cheeto-very-light{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:via-cheeto-light{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:via-cheeto-dark{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:via-cheeto-hocus{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:via-cheeto-active{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:via-cheeto-ml-plus{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:via-cheeto-banner{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:via-gracy-1{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:via-gracy-10{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:via-gracy-20{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:via-gracy-30{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:via-gracy-40{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:via-gracy-50{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:via-gracy-60{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:via-gracy-70{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:via-gracy-80{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:via-gracy-90{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:via-gracy-100{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:via-gracy{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:via-gracy-overlay-90{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:via-login{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:via-olive-light{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:via-olive-drab{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:via-olive-dark{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:via-daisy-light{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:via-feedback-gumby{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:via-feedback-daisy{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:via-feedback-pokey{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:via-feedback-aster{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:via-feedback-aster-dark{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:via-feedback-roxo{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:via-feedback-error{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:via-feedback-success{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:via-functional-aoki{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:via-functional-aoki-dark{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:via-functional-aoki-hocus{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:via-functional-aoki-active{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:via-functional-aoki-light{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:via-functional-kermit{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:via-mixlabPlus-light{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:via-primary-orange-light{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:via-off-white{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:to-black{
    --gradient-to-color: #000000;
  }

  .s1920\:to-transparent{
    --gradient-to-color: transparent;
  }

  .s1920\:to-error{
    --gradient-to-color: #f44336;
  }

  .s1920\:to-success{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:to-white-10{
    --gradient-to-color: #FBFBFB;
  }

  .s1920\:to-white-20{
    --gradient-to-color: #ECECEC;
  }

  .s1920\:to-white{
    --gradient-to-color: #FFFFFF;
  }

  .s1920\:to-cheeto{
    --gradient-to-color: #f7a500;
  }

  .s1920\:to-cheeto-very-light{
    --gradient-to-color: #fffaf2;
  }

  .s1920\:to-cheeto-light{
    --gradient-to-color: #ffd649;
  }

  .s1920\:to-cheeto-dark{
    --gradient-to-color: #bf7600;
  }

  .s1920\:to-cheeto-hocus{
    --gradient-to-color: #f8bd0f;
  }

  .s1920\:to-cheeto-active{
    --gradient-to-color: #f8d61b;
  }

  .s1920\:to-cheeto-ml-plus{
    --gradient-to-color: #FBEFCA;
  }

  .s1920\:to-cheeto-banner{
    --gradient-to-color: #fef7e5;
  }

  .s1920\:to-gracy-1{
    --gradient-to-color: #f8f8fa;
  }

  .s1920\:to-gracy-10{
    --gradient-to-color: #faf7fd;
  }

  .s1920\:to-gracy-20{
    --gradient-to-color: #e0dde3;
  }

  .s1920\:to-gracy-30{
    --gradient-to-color: #c8c5ca;
  }

  .s1920\:to-gracy-40{
    --gradient-to-color: #aeacb0;
  }

  .s1920\:to-gracy-50{
    --gradient-to-color: #969497;
  }

  .s1920\:to-gracy-60{
    --gradient-to-color: #7c7b7e;
  }

  .s1920\:to-gracy-70{
    --gradient-to-color: #646265;
  }

  .s1920\:to-gracy-80{
    --gradient-to-color: #4a494b;
  }

  .s1920\:to-gracy-90{
    --gradient-to-color: #323132;
  }

  .s1920\:to-gracy-100{
    --gradient-to-color: #181818;
  }

  .s1920\:to-gracy{
    --gradient-to-color: #6F7878;
  }

  .s1920\:to-gracy-overlay-90{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1920\:to-login{
    --gradient-to-color: #FDF7E7;
  }

  .s1920\:to-olive-light{
    --gradient-to-color: #DFF5F6;
  }

  .s1920\:to-olive-drab{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:to-olive-dark{
    --gradient-to-color: #096348;
  }

  .s1920\:to-daisy-light{
    --gradient-to-color: #fffce1;
  }

  .s1920\:to-feedback-gumby{
    --gradient-to-color: #c8e6c9;
  }

  .s1920\:to-feedback-daisy{
    --gradient-to-color: #fff9c4;
  }

  .s1920\:to-feedback-pokey{
    --gradient-to-color: #ffcdd2;
  }

  .s1920\:to-feedback-aster{
    --gradient-to-color: #b3e5fc;
  }

  .s1920\:to-feedback-aster-dark{
    --gradient-to-color: #03567C;
  }

  .s1920\:to-feedback-roxo{
    --gradient-to-color: #d1c4e9;
  }

  .s1920\:to-feedback-error{
    --gradient-to-color: #f44336;
  }

  .s1920\:to-feedback-success{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:to-functional-aoki{
    --gradient-to-color: #6f2ca0;
  }

  .s1920\:to-functional-aoki-dark{
    --gradient-to-color: #3e0071;
  }

  .s1920\:to-functional-aoki-hocus{
    --gradient-to-color: #9035af;
  }

  .s1920\:to-functional-aoki-active{
    --gradient-to-color: #a04fbc;
  }

  .s1920\:to-functional-aoki-light{
    --gradient-to-color: #a15ad2;
  }

  .s1920\:to-functional-kermit{
    --gradient-to-color: #5aa120;
  }

  .s1920\:to-mixlabPlus-light{
    --gradient-to-color: #FFFEF9;
  }

  .s1920\:to-primary-orange-light{
    --gradient-to-color: ;
  }

  .s1920\:to-off-white{
    --gradient-to-color: #FAF9F6;
  }

  .s1920\:hover\:from-black:hover{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:hover\:from-transparent:hover{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:hover\:from-error:hover{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:hover\:from-success:hover{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:hover\:from-white-10:hover{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:hover\:from-white-20:hover{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:hover\:from-white:hover{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:hover\:from-cheeto:hover{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:hover\:from-cheeto-very-light:hover{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:hover\:from-cheeto-light:hover{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:hover\:from-cheeto-dark:hover{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:hover\:from-cheeto-hocus:hover{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:hover\:from-cheeto-active:hover{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:hover\:from-cheeto-ml-plus:hover{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:hover\:from-cheeto-banner:hover{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:hover\:from-gracy-1:hover{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:hover\:from-gracy-10:hover{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:hover\:from-gracy-20:hover{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:hover\:from-gracy-30:hover{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:hover\:from-gracy-40:hover{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:hover\:from-gracy-50:hover{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:hover\:from-gracy-60:hover{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:hover\:from-gracy-70:hover{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:hover\:from-gracy-80:hover{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:hover\:from-gracy-90:hover{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:hover\:from-gracy-100:hover{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:hover\:from-gracy:hover{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:hover\:from-gracy-overlay-90:hover{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:hover\:from-login:hover{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:hover\:from-olive-light:hover{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:hover\:from-olive-drab:hover{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:hover\:from-olive-dark:hover{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:hover\:from-daisy-light:hover{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:hover\:from-feedback-gumby:hover{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:hover\:from-feedback-daisy:hover{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:hover\:from-feedback-pokey:hover{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:hover\:from-feedback-aster:hover{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:hover\:from-feedback-aster-dark:hover{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:hover\:from-feedback-roxo:hover{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:hover\:from-feedback-error:hover{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:hover\:from-feedback-success:hover{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:hover\:from-functional-aoki:hover{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:hover\:from-functional-aoki-dark:hover{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:hover\:from-functional-aoki-hocus:hover{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:hover\:from-functional-aoki-active:hover{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:hover\:from-functional-aoki-light:hover{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:hover\:from-functional-kermit:hover{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:hover\:from-mixlabPlus-light:hover{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:hover\:from-primary-orange-light:hover{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:hover\:from-off-white:hover{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:hover\:via-black:hover{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:hover\:via-transparent:hover{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:hover\:via-error:hover{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:hover\:via-success:hover{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:hover\:via-white-10:hover{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:hover\:via-white-20:hover{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:hover\:via-white:hover{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:hover\:via-cheeto:hover{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:hover\:via-cheeto-very-light:hover{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:hover\:via-cheeto-light:hover{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:hover\:via-cheeto-dark:hover{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:hover\:via-cheeto-hocus:hover{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:hover\:via-cheeto-active:hover{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:hover\:via-cheeto-ml-plus:hover{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:hover\:via-cheeto-banner:hover{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:hover\:via-gracy-1:hover{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:hover\:via-gracy-10:hover{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:hover\:via-gracy-20:hover{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:hover\:via-gracy-30:hover{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:hover\:via-gracy-40:hover{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:hover\:via-gracy-50:hover{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:hover\:via-gracy-60:hover{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:hover\:via-gracy-70:hover{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:hover\:via-gracy-80:hover{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:hover\:via-gracy-90:hover{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:hover\:via-gracy-100:hover{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:hover\:via-gracy:hover{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:hover\:via-gracy-overlay-90:hover{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:hover\:via-login:hover{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:hover\:via-olive-light:hover{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:hover\:via-olive-drab:hover{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:hover\:via-olive-dark:hover{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:hover\:via-daisy-light:hover{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:hover\:via-feedback-gumby:hover{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:hover\:via-feedback-daisy:hover{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:hover\:via-feedback-pokey:hover{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:hover\:via-feedback-aster:hover{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:hover\:via-feedback-aster-dark:hover{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:hover\:via-feedback-roxo:hover{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:hover\:via-feedback-error:hover{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:hover\:via-feedback-success:hover{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:hover\:via-functional-aoki:hover{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:hover\:via-functional-aoki-dark:hover{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:hover\:via-functional-aoki-hocus:hover{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:hover\:via-functional-aoki-active:hover{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:hover\:via-functional-aoki-light:hover{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:hover\:via-functional-kermit:hover{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:hover\:via-mixlabPlus-light:hover{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:hover\:via-primary-orange-light:hover{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:hover\:via-off-white:hover{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:hover\:to-black:hover{
    --gradient-to-color: #000000;
  }

  .s1920\:hover\:to-transparent:hover{
    --gradient-to-color: transparent;
  }

  .s1920\:hover\:to-error:hover{
    --gradient-to-color: #f44336;
  }

  .s1920\:hover\:to-success:hover{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:hover\:to-white-10:hover{
    --gradient-to-color: #FBFBFB;
  }

  .s1920\:hover\:to-white-20:hover{
    --gradient-to-color: #ECECEC;
  }

  .s1920\:hover\:to-white:hover{
    --gradient-to-color: #FFFFFF;
  }

  .s1920\:hover\:to-cheeto:hover{
    --gradient-to-color: #f7a500;
  }

  .s1920\:hover\:to-cheeto-very-light:hover{
    --gradient-to-color: #fffaf2;
  }

  .s1920\:hover\:to-cheeto-light:hover{
    --gradient-to-color: #ffd649;
  }

  .s1920\:hover\:to-cheeto-dark:hover{
    --gradient-to-color: #bf7600;
  }

  .s1920\:hover\:to-cheeto-hocus:hover{
    --gradient-to-color: #f8bd0f;
  }

  .s1920\:hover\:to-cheeto-active:hover{
    --gradient-to-color: #f8d61b;
  }

  .s1920\:hover\:to-cheeto-ml-plus:hover{
    --gradient-to-color: #FBEFCA;
  }

  .s1920\:hover\:to-cheeto-banner:hover{
    --gradient-to-color: #fef7e5;
  }

  .s1920\:hover\:to-gracy-1:hover{
    --gradient-to-color: #f8f8fa;
  }

  .s1920\:hover\:to-gracy-10:hover{
    --gradient-to-color: #faf7fd;
  }

  .s1920\:hover\:to-gracy-20:hover{
    --gradient-to-color: #e0dde3;
  }

  .s1920\:hover\:to-gracy-30:hover{
    --gradient-to-color: #c8c5ca;
  }

  .s1920\:hover\:to-gracy-40:hover{
    --gradient-to-color: #aeacb0;
  }

  .s1920\:hover\:to-gracy-50:hover{
    --gradient-to-color: #969497;
  }

  .s1920\:hover\:to-gracy-60:hover{
    --gradient-to-color: #7c7b7e;
  }

  .s1920\:hover\:to-gracy-70:hover{
    --gradient-to-color: #646265;
  }

  .s1920\:hover\:to-gracy-80:hover{
    --gradient-to-color: #4a494b;
  }

  .s1920\:hover\:to-gracy-90:hover{
    --gradient-to-color: #323132;
  }

  .s1920\:hover\:to-gracy-100:hover{
    --gradient-to-color: #181818;
  }

  .s1920\:hover\:to-gracy:hover{
    --gradient-to-color: #6F7878;
  }

  .s1920\:hover\:to-gracy-overlay-90:hover{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1920\:hover\:to-login:hover{
    --gradient-to-color: #FDF7E7;
  }

  .s1920\:hover\:to-olive-light:hover{
    --gradient-to-color: #DFF5F6;
  }

  .s1920\:hover\:to-olive-drab:hover{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:hover\:to-olive-dark:hover{
    --gradient-to-color: #096348;
  }

  .s1920\:hover\:to-daisy-light:hover{
    --gradient-to-color: #fffce1;
  }

  .s1920\:hover\:to-feedback-gumby:hover{
    --gradient-to-color: #c8e6c9;
  }

  .s1920\:hover\:to-feedback-daisy:hover{
    --gradient-to-color: #fff9c4;
  }

  .s1920\:hover\:to-feedback-pokey:hover{
    --gradient-to-color: #ffcdd2;
  }

  .s1920\:hover\:to-feedback-aster:hover{
    --gradient-to-color: #b3e5fc;
  }

  .s1920\:hover\:to-feedback-aster-dark:hover{
    --gradient-to-color: #03567C;
  }

  .s1920\:hover\:to-feedback-roxo:hover{
    --gradient-to-color: #d1c4e9;
  }

  .s1920\:hover\:to-feedback-error:hover{
    --gradient-to-color: #f44336;
  }

  .s1920\:hover\:to-feedback-success:hover{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:hover\:to-functional-aoki:hover{
    --gradient-to-color: #6f2ca0;
  }

  .s1920\:hover\:to-functional-aoki-dark:hover{
    --gradient-to-color: #3e0071;
  }

  .s1920\:hover\:to-functional-aoki-hocus:hover{
    --gradient-to-color: #9035af;
  }

  .s1920\:hover\:to-functional-aoki-active:hover{
    --gradient-to-color: #a04fbc;
  }

  .s1920\:hover\:to-functional-aoki-light:hover{
    --gradient-to-color: #a15ad2;
  }

  .s1920\:hover\:to-functional-kermit:hover{
    --gradient-to-color: #5aa120;
  }

  .s1920\:hover\:to-mixlabPlus-light:hover{
    --gradient-to-color: #FFFEF9;
  }

  .s1920\:hover\:to-primary-orange-light:hover{
    --gradient-to-color: ;
  }

  .s1920\:hover\:to-off-white:hover{
    --gradient-to-color: #FAF9F6;
  }

  .s1920\:focus\:from-black:focus{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:focus\:from-transparent:focus{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:focus\:from-error:focus{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:focus\:from-success:focus{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:focus\:from-white-10:focus{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:focus\:from-white-20:focus{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:focus\:from-white:focus{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:focus\:from-cheeto:focus{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:focus\:from-cheeto-very-light:focus{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:focus\:from-cheeto-light:focus{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:focus\:from-cheeto-dark:focus{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:focus\:from-cheeto-hocus:focus{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:focus\:from-cheeto-active:focus{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:focus\:from-cheeto-ml-plus:focus{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:focus\:from-cheeto-banner:focus{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:focus\:from-gracy-1:focus{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:focus\:from-gracy-10:focus{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:focus\:from-gracy-20:focus{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:focus\:from-gracy-30:focus{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:focus\:from-gracy-40:focus{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:focus\:from-gracy-50:focus{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:focus\:from-gracy-60:focus{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:focus\:from-gracy-70:focus{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:focus\:from-gracy-80:focus{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:focus\:from-gracy-90:focus{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:focus\:from-gracy-100:focus{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:focus\:from-gracy:focus{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:focus\:from-gracy-overlay-90:focus{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:focus\:from-login:focus{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:focus\:from-olive-light:focus{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:focus\:from-olive-drab:focus{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:focus\:from-olive-dark:focus{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:focus\:from-daisy-light:focus{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:focus\:from-feedback-gumby:focus{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:focus\:from-feedback-daisy:focus{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:focus\:from-feedback-pokey:focus{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:focus\:from-feedback-aster:focus{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:focus\:from-feedback-aster-dark:focus{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:focus\:from-feedback-roxo:focus{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:focus\:from-feedback-error:focus{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:focus\:from-feedback-success:focus{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:focus\:from-functional-aoki:focus{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:focus\:from-functional-aoki-dark:focus{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:focus\:from-functional-aoki-hocus:focus{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:focus\:from-functional-aoki-active:focus{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:focus\:from-functional-aoki-light:focus{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:focus\:from-functional-kermit:focus{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:focus\:from-mixlabPlus-light:focus{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:focus\:from-primary-orange-light:focus{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:focus\:from-off-white:focus{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:focus\:via-black:focus{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:focus\:via-transparent:focus{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:focus\:via-error:focus{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:focus\:via-success:focus{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:focus\:via-white-10:focus{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:focus\:via-white-20:focus{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:focus\:via-white:focus{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:focus\:via-cheeto:focus{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:focus\:via-cheeto-very-light:focus{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:focus\:via-cheeto-light:focus{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:focus\:via-cheeto-dark:focus{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:focus\:via-cheeto-hocus:focus{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:focus\:via-cheeto-active:focus{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:focus\:via-cheeto-ml-plus:focus{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:focus\:via-cheeto-banner:focus{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:focus\:via-gracy-1:focus{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:focus\:via-gracy-10:focus{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:focus\:via-gracy-20:focus{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:focus\:via-gracy-30:focus{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:focus\:via-gracy-40:focus{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:focus\:via-gracy-50:focus{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:focus\:via-gracy-60:focus{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:focus\:via-gracy-70:focus{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:focus\:via-gracy-80:focus{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:focus\:via-gracy-90:focus{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:focus\:via-gracy-100:focus{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:focus\:via-gracy:focus{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:focus\:via-gracy-overlay-90:focus{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:focus\:via-login:focus{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:focus\:via-olive-light:focus{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:focus\:via-olive-drab:focus{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:focus\:via-olive-dark:focus{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:focus\:via-daisy-light:focus{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:focus\:via-feedback-gumby:focus{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:focus\:via-feedback-daisy:focus{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:focus\:via-feedback-pokey:focus{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:focus\:via-feedback-aster:focus{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:focus\:via-feedback-aster-dark:focus{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:focus\:via-feedback-roxo:focus{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:focus\:via-feedback-error:focus{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:focus\:via-feedback-success:focus{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:focus\:via-functional-aoki:focus{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:focus\:via-functional-aoki-dark:focus{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:focus\:via-functional-aoki-hocus:focus{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:focus\:via-functional-aoki-active:focus{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:focus\:via-functional-aoki-light:focus{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:focus\:via-functional-kermit:focus{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:focus\:via-mixlabPlus-light:focus{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:focus\:via-primary-orange-light:focus{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:focus\:via-off-white:focus{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:focus\:to-black:focus{
    --gradient-to-color: #000000;
  }

  .s1920\:focus\:to-transparent:focus{
    --gradient-to-color: transparent;
  }

  .s1920\:focus\:to-error:focus{
    --gradient-to-color: #f44336;
  }

  .s1920\:focus\:to-success:focus{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:focus\:to-white-10:focus{
    --gradient-to-color: #FBFBFB;
  }

  .s1920\:focus\:to-white-20:focus{
    --gradient-to-color: #ECECEC;
  }

  .s1920\:focus\:to-white:focus{
    --gradient-to-color: #FFFFFF;
  }

  .s1920\:focus\:to-cheeto:focus{
    --gradient-to-color: #f7a500;
  }

  .s1920\:focus\:to-cheeto-very-light:focus{
    --gradient-to-color: #fffaf2;
  }

  .s1920\:focus\:to-cheeto-light:focus{
    --gradient-to-color: #ffd649;
  }

  .s1920\:focus\:to-cheeto-dark:focus{
    --gradient-to-color: #bf7600;
  }

  .s1920\:focus\:to-cheeto-hocus:focus{
    --gradient-to-color: #f8bd0f;
  }

  .s1920\:focus\:to-cheeto-active:focus{
    --gradient-to-color: #f8d61b;
  }

  .s1920\:focus\:to-cheeto-ml-plus:focus{
    --gradient-to-color: #FBEFCA;
  }

  .s1920\:focus\:to-cheeto-banner:focus{
    --gradient-to-color: #fef7e5;
  }

  .s1920\:focus\:to-gracy-1:focus{
    --gradient-to-color: #f8f8fa;
  }

  .s1920\:focus\:to-gracy-10:focus{
    --gradient-to-color: #faf7fd;
  }

  .s1920\:focus\:to-gracy-20:focus{
    --gradient-to-color: #e0dde3;
  }

  .s1920\:focus\:to-gracy-30:focus{
    --gradient-to-color: #c8c5ca;
  }

  .s1920\:focus\:to-gracy-40:focus{
    --gradient-to-color: #aeacb0;
  }

  .s1920\:focus\:to-gracy-50:focus{
    --gradient-to-color: #969497;
  }

  .s1920\:focus\:to-gracy-60:focus{
    --gradient-to-color: #7c7b7e;
  }

  .s1920\:focus\:to-gracy-70:focus{
    --gradient-to-color: #646265;
  }

  .s1920\:focus\:to-gracy-80:focus{
    --gradient-to-color: #4a494b;
  }

  .s1920\:focus\:to-gracy-90:focus{
    --gradient-to-color: #323132;
  }

  .s1920\:focus\:to-gracy-100:focus{
    --gradient-to-color: #181818;
  }

  .s1920\:focus\:to-gracy:focus{
    --gradient-to-color: #6F7878;
  }

  .s1920\:focus\:to-gracy-overlay-90:focus{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1920\:focus\:to-login:focus{
    --gradient-to-color: #FDF7E7;
  }

  .s1920\:focus\:to-olive-light:focus{
    --gradient-to-color: #DFF5F6;
  }

  .s1920\:focus\:to-olive-drab:focus{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:focus\:to-olive-dark:focus{
    --gradient-to-color: #096348;
  }

  .s1920\:focus\:to-daisy-light:focus{
    --gradient-to-color: #fffce1;
  }

  .s1920\:focus\:to-feedback-gumby:focus{
    --gradient-to-color: #c8e6c9;
  }

  .s1920\:focus\:to-feedback-daisy:focus{
    --gradient-to-color: #fff9c4;
  }

  .s1920\:focus\:to-feedback-pokey:focus{
    --gradient-to-color: #ffcdd2;
  }

  .s1920\:focus\:to-feedback-aster:focus{
    --gradient-to-color: #b3e5fc;
  }

  .s1920\:focus\:to-feedback-aster-dark:focus{
    --gradient-to-color: #03567C;
  }

  .s1920\:focus\:to-feedback-roxo:focus{
    --gradient-to-color: #d1c4e9;
  }

  .s1920\:focus\:to-feedback-error:focus{
    --gradient-to-color: #f44336;
  }

  .s1920\:focus\:to-feedback-success:focus{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:focus\:to-functional-aoki:focus{
    --gradient-to-color: #6f2ca0;
  }

  .s1920\:focus\:to-functional-aoki-dark:focus{
    --gradient-to-color: #3e0071;
  }

  .s1920\:focus\:to-functional-aoki-hocus:focus{
    --gradient-to-color: #9035af;
  }

  .s1920\:focus\:to-functional-aoki-active:focus{
    --gradient-to-color: #a04fbc;
  }

  .s1920\:focus\:to-functional-aoki-light:focus{
    --gradient-to-color: #a15ad2;
  }

  .s1920\:focus\:to-functional-kermit:focus{
    --gradient-to-color: #5aa120;
  }

  .s1920\:focus\:to-mixlabPlus-light:focus{
    --gradient-to-color: #FFFEF9;
  }

  .s1920\:focus\:to-primary-orange-light:focus{
    --gradient-to-color: ;
  }

  .s1920\:focus\:to-off-white:focus{
    --gradient-to-color: #FAF9F6;
  }

  .s1920\:active\:from-black:active{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:active\:from-transparent:active{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:active\:from-error:active{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:active\:from-success:active{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:active\:from-white-10:active{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:active\:from-white-20:active{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:active\:from-white:active{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:active\:from-cheeto:active{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:active\:from-cheeto-very-light:active{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:active\:from-cheeto-light:active{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:active\:from-cheeto-dark:active{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:active\:from-cheeto-hocus:active{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:active\:from-cheeto-active:active{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:active\:from-cheeto-ml-plus:active{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:active\:from-cheeto-banner:active{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:active\:from-gracy-1:active{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:active\:from-gracy-10:active{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:active\:from-gracy-20:active{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:active\:from-gracy-30:active{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:active\:from-gracy-40:active{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:active\:from-gracy-50:active{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:active\:from-gracy-60:active{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:active\:from-gracy-70:active{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:active\:from-gracy-80:active{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:active\:from-gracy-90:active{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:active\:from-gracy-100:active{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:active\:from-gracy:active{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:active\:from-gracy-overlay-90:active{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:active\:from-login:active{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:active\:from-olive-light:active{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:active\:from-olive-drab:active{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:active\:from-olive-dark:active{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:active\:from-daisy-light:active{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:active\:from-feedback-gumby:active{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:active\:from-feedback-daisy:active{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:active\:from-feedback-pokey:active{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:active\:from-feedback-aster:active{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:active\:from-feedback-aster-dark:active{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:active\:from-feedback-roxo:active{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:active\:from-feedback-error:active{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:active\:from-feedback-success:active{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:active\:from-functional-aoki:active{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:active\:from-functional-aoki-dark:active{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:active\:from-functional-aoki-hocus:active{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:active\:from-functional-aoki-active:active{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:active\:from-functional-aoki-light:active{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:active\:from-functional-kermit:active{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:active\:from-mixlabPlus-light:active{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:active\:from-primary-orange-light:active{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:active\:from-off-white:active{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:active\:via-black:active{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:active\:via-transparent:active{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:active\:via-error:active{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:active\:via-success:active{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:active\:via-white-10:active{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:active\:via-white-20:active{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:active\:via-white:active{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:active\:via-cheeto:active{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:active\:via-cheeto-very-light:active{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:active\:via-cheeto-light:active{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:active\:via-cheeto-dark:active{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:active\:via-cheeto-hocus:active{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:active\:via-cheeto-active:active{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:active\:via-cheeto-ml-plus:active{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:active\:via-cheeto-banner:active{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:active\:via-gracy-1:active{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:active\:via-gracy-10:active{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:active\:via-gracy-20:active{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:active\:via-gracy-30:active{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:active\:via-gracy-40:active{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:active\:via-gracy-50:active{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:active\:via-gracy-60:active{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:active\:via-gracy-70:active{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:active\:via-gracy-80:active{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:active\:via-gracy-90:active{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:active\:via-gracy-100:active{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:active\:via-gracy:active{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:active\:via-gracy-overlay-90:active{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:active\:via-login:active{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:active\:via-olive-light:active{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:active\:via-olive-drab:active{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:active\:via-olive-dark:active{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:active\:via-daisy-light:active{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:active\:via-feedback-gumby:active{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:active\:via-feedback-daisy:active{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:active\:via-feedback-pokey:active{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:active\:via-feedback-aster:active{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:active\:via-feedback-aster-dark:active{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:active\:via-feedback-roxo:active{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:active\:via-feedback-error:active{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:active\:via-feedback-success:active{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:active\:via-functional-aoki:active{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:active\:via-functional-aoki-dark:active{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:active\:via-functional-aoki-hocus:active{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:active\:via-functional-aoki-active:active{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:active\:via-functional-aoki-light:active{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:active\:via-functional-kermit:active{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:active\:via-mixlabPlus-light:active{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:active\:via-primary-orange-light:active{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:active\:via-off-white:active{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:active\:to-black:active{
    --gradient-to-color: #000000;
  }

  .s1920\:active\:to-transparent:active{
    --gradient-to-color: transparent;
  }

  .s1920\:active\:to-error:active{
    --gradient-to-color: #f44336;
  }

  .s1920\:active\:to-success:active{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:active\:to-white-10:active{
    --gradient-to-color: #FBFBFB;
  }

  .s1920\:active\:to-white-20:active{
    --gradient-to-color: #ECECEC;
  }

  .s1920\:active\:to-white:active{
    --gradient-to-color: #FFFFFF;
  }

  .s1920\:active\:to-cheeto:active{
    --gradient-to-color: #f7a500;
  }

  .s1920\:active\:to-cheeto-very-light:active{
    --gradient-to-color: #fffaf2;
  }

  .s1920\:active\:to-cheeto-light:active{
    --gradient-to-color: #ffd649;
  }

  .s1920\:active\:to-cheeto-dark:active{
    --gradient-to-color: #bf7600;
  }

  .s1920\:active\:to-cheeto-hocus:active{
    --gradient-to-color: #f8bd0f;
  }

  .s1920\:active\:to-cheeto-active:active{
    --gradient-to-color: #f8d61b;
  }

  .s1920\:active\:to-cheeto-ml-plus:active{
    --gradient-to-color: #FBEFCA;
  }

  .s1920\:active\:to-cheeto-banner:active{
    --gradient-to-color: #fef7e5;
  }

  .s1920\:active\:to-gracy-1:active{
    --gradient-to-color: #f8f8fa;
  }

  .s1920\:active\:to-gracy-10:active{
    --gradient-to-color: #faf7fd;
  }

  .s1920\:active\:to-gracy-20:active{
    --gradient-to-color: #e0dde3;
  }

  .s1920\:active\:to-gracy-30:active{
    --gradient-to-color: #c8c5ca;
  }

  .s1920\:active\:to-gracy-40:active{
    --gradient-to-color: #aeacb0;
  }

  .s1920\:active\:to-gracy-50:active{
    --gradient-to-color: #969497;
  }

  .s1920\:active\:to-gracy-60:active{
    --gradient-to-color: #7c7b7e;
  }

  .s1920\:active\:to-gracy-70:active{
    --gradient-to-color: #646265;
  }

  .s1920\:active\:to-gracy-80:active{
    --gradient-to-color: #4a494b;
  }

  .s1920\:active\:to-gracy-90:active{
    --gradient-to-color: #323132;
  }

  .s1920\:active\:to-gracy-100:active{
    --gradient-to-color: #181818;
  }

  .s1920\:active\:to-gracy:active{
    --gradient-to-color: #6F7878;
  }

  .s1920\:active\:to-gracy-overlay-90:active{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1920\:active\:to-login:active{
    --gradient-to-color: #FDF7E7;
  }

  .s1920\:active\:to-olive-light:active{
    --gradient-to-color: #DFF5F6;
  }

  .s1920\:active\:to-olive-drab:active{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:active\:to-olive-dark:active{
    --gradient-to-color: #096348;
  }

  .s1920\:active\:to-daisy-light:active{
    --gradient-to-color: #fffce1;
  }

  .s1920\:active\:to-feedback-gumby:active{
    --gradient-to-color: #c8e6c9;
  }

  .s1920\:active\:to-feedback-daisy:active{
    --gradient-to-color: #fff9c4;
  }

  .s1920\:active\:to-feedback-pokey:active{
    --gradient-to-color: #ffcdd2;
  }

  .s1920\:active\:to-feedback-aster:active{
    --gradient-to-color: #b3e5fc;
  }

  .s1920\:active\:to-feedback-aster-dark:active{
    --gradient-to-color: #03567C;
  }

  .s1920\:active\:to-feedback-roxo:active{
    --gradient-to-color: #d1c4e9;
  }

  .s1920\:active\:to-feedback-error:active{
    --gradient-to-color: #f44336;
  }

  .s1920\:active\:to-feedback-success:active{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:active\:to-functional-aoki:active{
    --gradient-to-color: #6f2ca0;
  }

  .s1920\:active\:to-functional-aoki-dark:active{
    --gradient-to-color: #3e0071;
  }

  .s1920\:active\:to-functional-aoki-hocus:active{
    --gradient-to-color: #9035af;
  }

  .s1920\:active\:to-functional-aoki-active:active{
    --gradient-to-color: #a04fbc;
  }

  .s1920\:active\:to-functional-aoki-light:active{
    --gradient-to-color: #a15ad2;
  }

  .s1920\:active\:to-functional-kermit:active{
    --gradient-to-color: #5aa120;
  }

  .s1920\:active\:to-mixlabPlus-light:active{
    --gradient-to-color: #FFFEF9;
  }

  .s1920\:active\:to-primary-orange-light:active{
    --gradient-to-color: ;
  }

  .s1920\:active\:to-off-white:active{
    --gradient-to-color: #FAF9F6;
  }

  .s1920\:first\:from-black:first-child{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:first\:from-transparent:first-child{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:first\:from-error:first-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:first\:from-success:first-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:first\:from-white-10:first-child{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:first\:from-white-20:first-child{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:first\:from-white:first-child{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:first\:from-cheeto:first-child{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:first\:from-cheeto-very-light:first-child{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:first\:from-cheeto-light:first-child{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:first\:from-cheeto-dark:first-child{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:first\:from-cheeto-hocus:first-child{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:first\:from-cheeto-active:first-child{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:first\:from-cheeto-ml-plus:first-child{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:first\:from-cheeto-banner:first-child{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:first\:from-gracy-1:first-child{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:first\:from-gracy-10:first-child{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:first\:from-gracy-20:first-child{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:first\:from-gracy-30:first-child{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:first\:from-gracy-40:first-child{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:first\:from-gracy-50:first-child{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:first\:from-gracy-60:first-child{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:first\:from-gracy-70:first-child{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:first\:from-gracy-80:first-child{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:first\:from-gracy-90:first-child{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:first\:from-gracy-100:first-child{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:first\:from-gracy:first-child{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:first\:from-gracy-overlay-90:first-child{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:first\:from-login:first-child{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:first\:from-olive-light:first-child{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:first\:from-olive-drab:first-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:first\:from-olive-dark:first-child{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:first\:from-daisy-light:first-child{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:first\:from-feedback-gumby:first-child{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:first\:from-feedback-daisy:first-child{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:first\:from-feedback-pokey:first-child{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:first\:from-feedback-aster:first-child{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:first\:from-feedback-aster-dark:first-child{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:first\:from-feedback-roxo:first-child{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:first\:from-feedback-error:first-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:first\:from-feedback-success:first-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:first\:from-functional-aoki:first-child{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:first\:from-functional-aoki-dark:first-child{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:first\:from-functional-aoki-hocus:first-child{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:first\:from-functional-aoki-active:first-child{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:first\:from-functional-aoki-light:first-child{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:first\:from-functional-kermit:first-child{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:first\:from-mixlabPlus-light:first-child{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:first\:from-primary-orange-light:first-child{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:first\:from-off-white:first-child{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:first\:via-black:first-child{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:first\:via-transparent:first-child{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:first\:via-error:first-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:first\:via-success:first-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:first\:via-white-10:first-child{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:first\:via-white-20:first-child{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:first\:via-white:first-child{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:first\:via-cheeto:first-child{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:first\:via-cheeto-very-light:first-child{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:first\:via-cheeto-light:first-child{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:first\:via-cheeto-dark:first-child{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:first\:via-cheeto-hocus:first-child{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:first\:via-cheeto-active:first-child{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:first\:via-cheeto-ml-plus:first-child{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:first\:via-cheeto-banner:first-child{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:first\:via-gracy-1:first-child{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:first\:via-gracy-10:first-child{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:first\:via-gracy-20:first-child{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:first\:via-gracy-30:first-child{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:first\:via-gracy-40:first-child{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:first\:via-gracy-50:first-child{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:first\:via-gracy-60:first-child{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:first\:via-gracy-70:first-child{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:first\:via-gracy-80:first-child{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:first\:via-gracy-90:first-child{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:first\:via-gracy-100:first-child{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:first\:via-gracy:first-child{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:first\:via-gracy-overlay-90:first-child{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:first\:via-login:first-child{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:first\:via-olive-light:first-child{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:first\:via-olive-drab:first-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:first\:via-olive-dark:first-child{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:first\:via-daisy-light:first-child{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:first\:via-feedback-gumby:first-child{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:first\:via-feedback-daisy:first-child{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:first\:via-feedback-pokey:first-child{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:first\:via-feedback-aster:first-child{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:first\:via-feedback-aster-dark:first-child{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:first\:via-feedback-roxo:first-child{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:first\:via-feedback-error:first-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:first\:via-feedback-success:first-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:first\:via-functional-aoki:first-child{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:first\:via-functional-aoki-dark:first-child{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:first\:via-functional-aoki-hocus:first-child{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:first\:via-functional-aoki-active:first-child{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:first\:via-functional-aoki-light:first-child{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:first\:via-functional-kermit:first-child{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:first\:via-mixlabPlus-light:first-child{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:first\:via-primary-orange-light:first-child{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:first\:via-off-white:first-child{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:first\:to-black:first-child{
    --gradient-to-color: #000000;
  }

  .s1920\:first\:to-transparent:first-child{
    --gradient-to-color: transparent;
  }

  .s1920\:first\:to-error:first-child{
    --gradient-to-color: #f44336;
  }

  .s1920\:first\:to-success:first-child{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:first\:to-white-10:first-child{
    --gradient-to-color: #FBFBFB;
  }

  .s1920\:first\:to-white-20:first-child{
    --gradient-to-color: #ECECEC;
  }

  .s1920\:first\:to-white:first-child{
    --gradient-to-color: #FFFFFF;
  }

  .s1920\:first\:to-cheeto:first-child{
    --gradient-to-color: #f7a500;
  }

  .s1920\:first\:to-cheeto-very-light:first-child{
    --gradient-to-color: #fffaf2;
  }

  .s1920\:first\:to-cheeto-light:first-child{
    --gradient-to-color: #ffd649;
  }

  .s1920\:first\:to-cheeto-dark:first-child{
    --gradient-to-color: #bf7600;
  }

  .s1920\:first\:to-cheeto-hocus:first-child{
    --gradient-to-color: #f8bd0f;
  }

  .s1920\:first\:to-cheeto-active:first-child{
    --gradient-to-color: #f8d61b;
  }

  .s1920\:first\:to-cheeto-ml-plus:first-child{
    --gradient-to-color: #FBEFCA;
  }

  .s1920\:first\:to-cheeto-banner:first-child{
    --gradient-to-color: #fef7e5;
  }

  .s1920\:first\:to-gracy-1:first-child{
    --gradient-to-color: #f8f8fa;
  }

  .s1920\:first\:to-gracy-10:first-child{
    --gradient-to-color: #faf7fd;
  }

  .s1920\:first\:to-gracy-20:first-child{
    --gradient-to-color: #e0dde3;
  }

  .s1920\:first\:to-gracy-30:first-child{
    --gradient-to-color: #c8c5ca;
  }

  .s1920\:first\:to-gracy-40:first-child{
    --gradient-to-color: #aeacb0;
  }

  .s1920\:first\:to-gracy-50:first-child{
    --gradient-to-color: #969497;
  }

  .s1920\:first\:to-gracy-60:first-child{
    --gradient-to-color: #7c7b7e;
  }

  .s1920\:first\:to-gracy-70:first-child{
    --gradient-to-color: #646265;
  }

  .s1920\:first\:to-gracy-80:first-child{
    --gradient-to-color: #4a494b;
  }

  .s1920\:first\:to-gracy-90:first-child{
    --gradient-to-color: #323132;
  }

  .s1920\:first\:to-gracy-100:first-child{
    --gradient-to-color: #181818;
  }

  .s1920\:first\:to-gracy:first-child{
    --gradient-to-color: #6F7878;
  }

  .s1920\:first\:to-gracy-overlay-90:first-child{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1920\:first\:to-login:first-child{
    --gradient-to-color: #FDF7E7;
  }

  .s1920\:first\:to-olive-light:first-child{
    --gradient-to-color: #DFF5F6;
  }

  .s1920\:first\:to-olive-drab:first-child{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:first\:to-olive-dark:first-child{
    --gradient-to-color: #096348;
  }

  .s1920\:first\:to-daisy-light:first-child{
    --gradient-to-color: #fffce1;
  }

  .s1920\:first\:to-feedback-gumby:first-child{
    --gradient-to-color: #c8e6c9;
  }

  .s1920\:first\:to-feedback-daisy:first-child{
    --gradient-to-color: #fff9c4;
  }

  .s1920\:first\:to-feedback-pokey:first-child{
    --gradient-to-color: #ffcdd2;
  }

  .s1920\:first\:to-feedback-aster:first-child{
    --gradient-to-color: #b3e5fc;
  }

  .s1920\:first\:to-feedback-aster-dark:first-child{
    --gradient-to-color: #03567C;
  }

  .s1920\:first\:to-feedback-roxo:first-child{
    --gradient-to-color: #d1c4e9;
  }

  .s1920\:first\:to-feedback-error:first-child{
    --gradient-to-color: #f44336;
  }

  .s1920\:first\:to-feedback-success:first-child{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:first\:to-functional-aoki:first-child{
    --gradient-to-color: #6f2ca0;
  }

  .s1920\:first\:to-functional-aoki-dark:first-child{
    --gradient-to-color: #3e0071;
  }

  .s1920\:first\:to-functional-aoki-hocus:first-child{
    --gradient-to-color: #9035af;
  }

  .s1920\:first\:to-functional-aoki-active:first-child{
    --gradient-to-color: #a04fbc;
  }

  .s1920\:first\:to-functional-aoki-light:first-child{
    --gradient-to-color: #a15ad2;
  }

  .s1920\:first\:to-functional-kermit:first-child{
    --gradient-to-color: #5aa120;
  }

  .s1920\:first\:to-mixlabPlus-light:first-child{
    --gradient-to-color: #FFFEF9;
  }

  .s1920\:first\:to-primary-orange-light:first-child{
    --gradient-to-color: ;
  }

  .s1920\:first\:to-off-white:first-child{
    --gradient-to-color: #FAF9F6;
  }

  .s1920\:last\:from-black:last-child{
    --gradient-from-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:last\:from-transparent:last-child{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:last\:from-error:last-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:last\:from-success:last-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:last\:from-white-10:last-child{
    --gradient-from-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:last\:from-white-20:last-child{
    --gradient-from-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:last\:from-white:last-child{
    --gradient-from-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:last\:from-cheeto:last-child{
    --gradient-from-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:last\:from-cheeto-very-light:last-child{
    --gradient-from-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:last\:from-cheeto-light:last-child{
    --gradient-from-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:last\:from-cheeto-dark:last-child{
    --gradient-from-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:last\:from-cheeto-hocus:last-child{
    --gradient-from-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:last\:from-cheeto-active:last-child{
    --gradient-from-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:last\:from-cheeto-ml-plus:last-child{
    --gradient-from-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:last\:from-cheeto-banner:last-child{
    --gradient-from-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:last\:from-gracy-1:last-child{
    --gradient-from-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:last\:from-gracy-10:last-child{
    --gradient-from-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:last\:from-gracy-20:last-child{
    --gradient-from-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:last\:from-gracy-30:last-child{
    --gradient-from-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:last\:from-gracy-40:last-child{
    --gradient-from-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:last\:from-gracy-50:last-child{
    --gradient-from-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:last\:from-gracy-60:last-child{
    --gradient-from-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:last\:from-gracy-70:last-child{
    --gradient-from-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:last\:from-gracy-80:last-child{
    --gradient-from-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:last\:from-gracy-90:last-child{
    --gradient-from-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:last\:from-gracy-100:last-child{
    --gradient-from-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:last\:from-gracy:last-child{
    --gradient-from-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:last\:from-gracy-overlay-90:last-child{
    --gradient-from-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:last\:from-login:last-child{
    --gradient-from-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:last\:from-olive-light:last-child{
    --gradient-from-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:last\:from-olive-drab:last-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:last\:from-olive-dark:last-child{
    --gradient-from-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:last\:from-daisy-light:last-child{
    --gradient-from-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:last\:from-feedback-gumby:last-child{
    --gradient-from-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:last\:from-feedback-daisy:last-child{
    --gradient-from-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:last\:from-feedback-pokey:last-child{
    --gradient-from-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:last\:from-feedback-aster:last-child{
    --gradient-from-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:last\:from-feedback-aster-dark:last-child{
    --gradient-from-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:last\:from-feedback-roxo:last-child{
    --gradient-from-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:last\:from-feedback-error:last-child{
    --gradient-from-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:last\:from-feedback-success:last-child{
    --gradient-from-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:last\:from-functional-aoki:last-child{
    --gradient-from-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:last\:from-functional-aoki-dark:last-child{
    --gradient-from-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:last\:from-functional-aoki-hocus:last-child{
    --gradient-from-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:last\:from-functional-aoki-active:last-child{
    --gradient-from-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:last\:from-functional-aoki-light:last-child{
    --gradient-from-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:last\:from-functional-kermit:last-child{
    --gradient-from-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:last\:from-mixlabPlus-light:last-child{
    --gradient-from-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:last\:from-primary-orange-light:last-child{
    --gradient-from-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:last\:from-off-white:last-child{
    --gradient-from-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:last\:via-black:last-child{
    --gradient-via-color: #000000;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:last\:via-transparent:last-child{
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .s1920\:last\:via-error:last-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:last\:via-success:last-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:last\:via-white-10:last-child{
    --gradient-via-color: #FBFBFB;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 251, 251, 0));
  }

  .s1920\:last\:via-white-20:last-child{
    --gradient-via-color: #ECECEC;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 236, 236, 0));
  }

  .s1920\:last\:via-white:last-child{
    --gradient-via-color: #FFFFFF;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:last\:via-cheeto:last-child{
    --gradient-via-color: #f7a500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 165, 0, 0));
  }

  .s1920\:last\:via-cheeto-very-light:last-child{
    --gradient-via-color: #fffaf2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 242, 0));
  }

  .s1920\:last\:via-cheeto-light:last-child{
    --gradient-via-color: #ffd649;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 214, 73, 0));
  }

  .s1920\:last\:via-cheeto-dark:last-child{
    --gradient-via-color: #bf7600;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(191, 118, 0, 0));
  }

  .s1920\:last\:via-cheeto-hocus:last-child{
    --gradient-via-color: #f8bd0f;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 189, 15, 0));
  }

  .s1920\:last\:via-cheeto-active:last-child{
    --gradient-via-color: #f8d61b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 214, 27, 0));
  }

  .s1920\:last\:via-cheeto-ml-plus:last-child{
    --gradient-via-color: #FBEFCA;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 239, 202, 0));
  }

  .s1920\:last\:via-cheeto-banner:last-child{
    --gradient-via-color: #fef7e5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 247, 229, 0));
  }

  .s1920\:last\:via-gracy-1:last-child{
    --gradient-via-color: #f8f8fa;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(248, 248, 250, 0));
  }

  .s1920\:last\:via-gracy-10:last-child{
    --gradient-via-color: #faf7fd;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 247, 253, 0));
  }

  .s1920\:last\:via-gracy-20:last-child{
    --gradient-via-color: #e0dde3;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(224, 221, 227, 0));
  }

  .s1920\:last\:via-gracy-30:last-child{
    --gradient-via-color: #c8c5ca;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 197, 202, 0));
  }

  .s1920\:last\:via-gracy-40:last-child{
    --gradient-via-color: #aeacb0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(174, 172, 176, 0));
  }

  .s1920\:last\:via-gracy-50:last-child{
    --gradient-via-color: #969497;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(150, 148, 151, 0));
  }

  .s1920\:last\:via-gracy-60:last-child{
    --gradient-via-color: #7c7b7e;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 123, 126, 0));
  }

  .s1920\:last\:via-gracy-70:last-child{
    --gradient-via-color: #646265;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 98, 101, 0));
  }

  .s1920\:last\:via-gracy-80:last-child{
    --gradient-via-color: #4a494b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 73, 75, 0));
  }

  .s1920\:last\:via-gracy-90:last-child{
    --gradient-via-color: #323132;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:last\:via-gracy-100:last-child{
    --gradient-via-color: #181818;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(24, 24, 24, 0));
  }

  .s1920\:last\:via-gracy:last-child{
    --gradient-via-color: #6F7878;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 120, 120, 0));
  }

  .s1920\:last\:via-gracy-overlay-90:last-child{
    --gradient-via-color: rgba(50,49,50,0.5);
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(50, 49, 50, 0));
  }

  .s1920\:last\:via-login:last-child{
    --gradient-via-color: #FDF7E7;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(253, 247, 231, 0));
  }

  .s1920\:last\:via-olive-light:last-child{
    --gradient-via-color: #DFF5F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(223, 245, 246, 0));
  }

  .s1920\:last\:via-olive-drab:last-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:last\:via-olive-dark:last-child{
    --gradient-via-color: #096348;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(9, 99, 72, 0));
  }

  .s1920\:last\:via-daisy-light:last-child{
    --gradient-via-color: #fffce1;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 252, 225, 0));
  }

  .s1920\:last\:via-feedback-gumby:last-child{
    --gradient-via-color: #c8e6c9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(200, 230, 201, 0));
  }

  .s1920\:last\:via-feedback-daisy:last-child{
    --gradient-via-color: #fff9c4;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 249, 196, 0));
  }

  .s1920\:last\:via-feedback-pokey:last-child{
    --gradient-via-color: #ffcdd2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 205, 210, 0));
  }

  .s1920\:last\:via-feedback-aster:last-child{
    --gradient-via-color: #b3e5fc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 229, 252, 0));
  }

  .s1920\:last\:via-feedback-aster-dark:last-child{
    --gradient-via-color: #03567C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(3, 86, 124, 0));
  }

  .s1920\:last\:via-feedback-roxo:last-child{
    --gradient-via-color: #d1c4e9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(209, 196, 233, 0));
  }

  .s1920\:last\:via-feedback-error:last-child{
    --gradient-via-color: #f44336;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 67, 54, 0));
  }

  .s1920\:last\:via-feedback-success:last-child{
    --gradient-via-color: #5ca02c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(92, 160, 44, 0));
  }

  .s1920\:last\:via-functional-aoki:last-child{
    --gradient-via-color: #6f2ca0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(111, 44, 160, 0));
  }

  .s1920\:last\:via-functional-aoki-dark:last-child{
    --gradient-via-color: #3e0071;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 0, 113, 0));
  }

  .s1920\:last\:via-functional-aoki-hocus:last-child{
    --gradient-via-color: #9035af;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 53, 175, 0));
  }

  .s1920\:last\:via-functional-aoki-active:last-child{
    --gradient-via-color: #a04fbc;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 79, 188, 0));
  }

  .s1920\:last\:via-functional-aoki-light:last-child{
    --gradient-via-color: #a15ad2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(161, 90, 210, 0));
  }

  .s1920\:last\:via-functional-kermit:last-child{
    --gradient-via-color: #5aa120;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 161, 32, 0));
  }

  .s1920\:last\:via-mixlabPlus-light:last-child{
    --gradient-via-color: #FFFEF9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 254, 249, 0));
  }

  .s1920\:last\:via-primary-orange-light:last-child{
    --gradient-via-color: ;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .s1920\:last\:via-off-white:last-child{
    --gradient-via-color: #FAF9F6;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 249, 246, 0));
  }

  .s1920\:last\:to-black:last-child{
    --gradient-to-color: #000000;
  }

  .s1920\:last\:to-transparent:last-child{
    --gradient-to-color: transparent;
  }

  .s1920\:last\:to-error:last-child{
    --gradient-to-color: #f44336;
  }

  .s1920\:last\:to-success:last-child{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:last\:to-white-10:last-child{
    --gradient-to-color: #FBFBFB;
  }

  .s1920\:last\:to-white-20:last-child{
    --gradient-to-color: #ECECEC;
  }

  .s1920\:last\:to-white:last-child{
    --gradient-to-color: #FFFFFF;
  }

  .s1920\:last\:to-cheeto:last-child{
    --gradient-to-color: #f7a500;
  }

  .s1920\:last\:to-cheeto-very-light:last-child{
    --gradient-to-color: #fffaf2;
  }

  .s1920\:last\:to-cheeto-light:last-child{
    --gradient-to-color: #ffd649;
  }

  .s1920\:last\:to-cheeto-dark:last-child{
    --gradient-to-color: #bf7600;
  }

  .s1920\:last\:to-cheeto-hocus:last-child{
    --gradient-to-color: #f8bd0f;
  }

  .s1920\:last\:to-cheeto-active:last-child{
    --gradient-to-color: #f8d61b;
  }

  .s1920\:last\:to-cheeto-ml-plus:last-child{
    --gradient-to-color: #FBEFCA;
  }

  .s1920\:last\:to-cheeto-banner:last-child{
    --gradient-to-color: #fef7e5;
  }

  .s1920\:last\:to-gracy-1:last-child{
    --gradient-to-color: #f8f8fa;
  }

  .s1920\:last\:to-gracy-10:last-child{
    --gradient-to-color: #faf7fd;
  }

  .s1920\:last\:to-gracy-20:last-child{
    --gradient-to-color: #e0dde3;
  }

  .s1920\:last\:to-gracy-30:last-child{
    --gradient-to-color: #c8c5ca;
  }

  .s1920\:last\:to-gracy-40:last-child{
    --gradient-to-color: #aeacb0;
  }

  .s1920\:last\:to-gracy-50:last-child{
    --gradient-to-color: #969497;
  }

  .s1920\:last\:to-gracy-60:last-child{
    --gradient-to-color: #7c7b7e;
  }

  .s1920\:last\:to-gracy-70:last-child{
    --gradient-to-color: #646265;
  }

  .s1920\:last\:to-gracy-80:last-child{
    --gradient-to-color: #4a494b;
  }

  .s1920\:last\:to-gracy-90:last-child{
    --gradient-to-color: #323132;
  }

  .s1920\:last\:to-gracy-100:last-child{
    --gradient-to-color: #181818;
  }

  .s1920\:last\:to-gracy:last-child{
    --gradient-to-color: #6F7878;
  }

  .s1920\:last\:to-gracy-overlay-90:last-child{
    --gradient-to-color: rgba(50,49,50,0.5);
  }

  .s1920\:last\:to-login:last-child{
    --gradient-to-color: #FDF7E7;
  }

  .s1920\:last\:to-olive-light:last-child{
    --gradient-to-color: #DFF5F6;
  }

  .s1920\:last\:to-olive-drab:last-child{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:last\:to-olive-dark:last-child{
    --gradient-to-color: #096348;
  }

  .s1920\:last\:to-daisy-light:last-child{
    --gradient-to-color: #fffce1;
  }

  .s1920\:last\:to-feedback-gumby:last-child{
    --gradient-to-color: #c8e6c9;
  }

  .s1920\:last\:to-feedback-daisy:last-child{
    --gradient-to-color: #fff9c4;
  }

  .s1920\:last\:to-feedback-pokey:last-child{
    --gradient-to-color: #ffcdd2;
  }

  .s1920\:last\:to-feedback-aster:last-child{
    --gradient-to-color: #b3e5fc;
  }

  .s1920\:last\:to-feedback-aster-dark:last-child{
    --gradient-to-color: #03567C;
  }

  .s1920\:last\:to-feedback-roxo:last-child{
    --gradient-to-color: #d1c4e9;
  }

  .s1920\:last\:to-feedback-error:last-child{
    --gradient-to-color: #f44336;
  }

  .s1920\:last\:to-feedback-success:last-child{
    --gradient-to-color: #5ca02c;
  }

  .s1920\:last\:to-functional-aoki:last-child{
    --gradient-to-color: #6f2ca0;
  }

  .s1920\:last\:to-functional-aoki-dark:last-child{
    --gradient-to-color: #3e0071;
  }

  .s1920\:last\:to-functional-aoki-hocus:last-child{
    --gradient-to-color: #9035af;
  }

  .s1920\:last\:to-functional-aoki-active:last-child{
    --gradient-to-color: #a04fbc;
  }

  .s1920\:last\:to-functional-aoki-light:last-child{
    --gradient-to-color: #a15ad2;
  }

  .s1920\:last\:to-functional-kermit:last-child{
    --gradient-to-color: #5aa120;
  }

  .s1920\:last\:to-mixlabPlus-light:last-child{
    --gradient-to-color: #FFFEF9;
  }

  .s1920\:last\:to-primary-orange-light:last-child{
    --gradient-to-color: ;
  }

  .s1920\:last\:to-off-white:last-child{
    --gradient-to-color: #FAF9F6;
  }

  .s1920\:bg-opacity-0{
    --bg-opacity: 0;
  }

  .s1920\:bg-opacity-25{
    --bg-opacity: 0.25;
  }

  .s1920\:bg-opacity-50{
    --bg-opacity: .5;
  }

  .s1920\:bg-opacity-75{
    --bg-opacity: 0.75;
  }

  .s1920\:bg-opacity-80{
    --bg-opacity: .8;
  }

  .s1920\:bg-opacity-100{
    --bg-opacity: 1;
  }

  .s1920\:hover\:bg-opacity-0:hover{
    --bg-opacity: 0;
  }

  .s1920\:hover\:bg-opacity-25:hover{
    --bg-opacity: 0.25;
  }

  .s1920\:hover\:bg-opacity-50:hover{
    --bg-opacity: .5;
  }

  .s1920\:hover\:bg-opacity-75:hover{
    --bg-opacity: 0.75;
  }

  .s1920\:hover\:bg-opacity-80:hover{
    --bg-opacity: .8;
  }

  .s1920\:hover\:bg-opacity-100:hover{
    --bg-opacity: 1;
  }

  .s1920\:focus\:bg-opacity-0:focus{
    --bg-opacity: 0;
  }

  .s1920\:focus\:bg-opacity-25:focus{
    --bg-opacity: 0.25;
  }

  .s1920\:focus\:bg-opacity-50:focus{
    --bg-opacity: .5;
  }

  .s1920\:focus\:bg-opacity-75:focus{
    --bg-opacity: 0.75;
  }

  .s1920\:focus\:bg-opacity-80:focus{
    --bg-opacity: .8;
  }

  .s1920\:focus\:bg-opacity-100:focus{
    --bg-opacity: 1;
  }

  .s1920\:active\:bg-opacity-0:active{
    --bg-opacity: 0;
  }

  .s1920\:active\:bg-opacity-25:active{
    --bg-opacity: 0.25;
  }

  .s1920\:active\:bg-opacity-50:active{
    --bg-opacity: .5;
  }

  .s1920\:active\:bg-opacity-75:active{
    --bg-opacity: 0.75;
  }

  .s1920\:active\:bg-opacity-80:active{
    --bg-opacity: .8;
  }

  .s1920\:active\:bg-opacity-100:active{
    --bg-opacity: 1;
  }

  .s1920\:first\:bg-opacity-0:first-child{
    --bg-opacity: 0;
  }

  .s1920\:first\:bg-opacity-25:first-child{
    --bg-opacity: 0.25;
  }

  .s1920\:first\:bg-opacity-50:first-child{
    --bg-opacity: .5;
  }

  .s1920\:first\:bg-opacity-75:first-child{
    --bg-opacity: 0.75;
  }

  .s1920\:first\:bg-opacity-80:first-child{
    --bg-opacity: .8;
  }

  .s1920\:first\:bg-opacity-100:first-child{
    --bg-opacity: 1;
  }

  .s1920\:last\:bg-opacity-0:last-child{
    --bg-opacity: 0;
  }

  .s1920\:last\:bg-opacity-25:last-child{
    --bg-opacity: 0.25;
  }

  .s1920\:last\:bg-opacity-50:last-child{
    --bg-opacity: .5;
  }

  .s1920\:last\:bg-opacity-75:last-child{
    --bg-opacity: 0.75;
  }

  .s1920\:last\:bg-opacity-80:last-child{
    --bg-opacity: .8;
  }

  .s1920\:last\:bg-opacity-100:last-child{
    --bg-opacity: 1;
  }

  .s1920\:bg-bottom{
    background-position: bottom;
  }

  .s1920\:bg-center{
    background-position: center;
  }

  .s1920\:bg-left{
    background-position: left;
  }

  .s1920\:bg-left-bottom{
    background-position: left bottom;
  }

  .s1920\:bg-left-top{
    background-position: left top;
  }

  .s1920\:bg-right{
    background-position: right;
  }

  .s1920\:bg-right-bottom{
    background-position: right bottom;
  }

  .s1920\:bg-right-top{
    background-position: right top;
  }

  .s1920\:bg-top{
    background-position: top;
  }

  .s1920\:hover\:bg-bottom:hover{
    background-position: bottom;
  }

  .s1920\:hover\:bg-center:hover{
    background-position: center;
  }

  .s1920\:hover\:bg-left:hover{
    background-position: left;
  }

  .s1920\:hover\:bg-left-bottom:hover{
    background-position: left bottom;
  }

  .s1920\:hover\:bg-left-top:hover{
    background-position: left top;
  }

  .s1920\:hover\:bg-right:hover{
    background-position: right;
  }

  .s1920\:hover\:bg-right-bottom:hover{
    background-position: right bottom;
  }

  .s1920\:hover\:bg-right-top:hover{
    background-position: right top;
  }

  .s1920\:hover\:bg-top:hover{
    background-position: top;
  }

  .s1920\:focus\:bg-bottom:focus{
    background-position: bottom;
  }

  .s1920\:focus\:bg-center:focus{
    background-position: center;
  }

  .s1920\:focus\:bg-left:focus{
    background-position: left;
  }

  .s1920\:focus\:bg-left-bottom:focus{
    background-position: left bottom;
  }

  .s1920\:focus\:bg-left-top:focus{
    background-position: left top;
  }

  .s1920\:focus\:bg-right:focus{
    background-position: right;
  }

  .s1920\:focus\:bg-right-bottom:focus{
    background-position: right bottom;
  }

  .s1920\:focus\:bg-right-top:focus{
    background-position: right top;
  }

  .s1920\:focus\:bg-top:focus{
    background-position: top;
  }

  .s1920\:active\:bg-bottom:active{
    background-position: bottom;
  }

  .s1920\:active\:bg-center:active{
    background-position: center;
  }

  .s1920\:active\:bg-left:active{
    background-position: left;
  }

  .s1920\:active\:bg-left-bottom:active{
    background-position: left bottom;
  }

  .s1920\:active\:bg-left-top:active{
    background-position: left top;
  }

  .s1920\:active\:bg-right:active{
    background-position: right;
  }

  .s1920\:active\:bg-right-bottom:active{
    background-position: right bottom;
  }

  .s1920\:active\:bg-right-top:active{
    background-position: right top;
  }

  .s1920\:active\:bg-top:active{
    background-position: top;
  }

  .s1920\:first\:bg-bottom:first-child{
    background-position: bottom;
  }

  .s1920\:first\:bg-center:first-child{
    background-position: center;
  }

  .s1920\:first\:bg-left:first-child{
    background-position: left;
  }

  .s1920\:first\:bg-left-bottom:first-child{
    background-position: left bottom;
  }

  .s1920\:first\:bg-left-top:first-child{
    background-position: left top;
  }

  .s1920\:first\:bg-right:first-child{
    background-position: right;
  }

  .s1920\:first\:bg-right-bottom:first-child{
    background-position: right bottom;
  }

  .s1920\:first\:bg-right-top:first-child{
    background-position: right top;
  }

  .s1920\:first\:bg-top:first-child{
    background-position: top;
  }

  .s1920\:last\:bg-bottom:last-child{
    background-position: bottom;
  }

  .s1920\:last\:bg-center:last-child{
    background-position: center;
  }

  .s1920\:last\:bg-left:last-child{
    background-position: left;
  }

  .s1920\:last\:bg-left-bottom:last-child{
    background-position: left bottom;
  }

  .s1920\:last\:bg-left-top:last-child{
    background-position: left top;
  }

  .s1920\:last\:bg-right:last-child{
    background-position: right;
  }

  .s1920\:last\:bg-right-bottom:last-child{
    background-position: right bottom;
  }

  .s1920\:last\:bg-right-top:last-child{
    background-position: right top;
  }

  .s1920\:last\:bg-top:last-child{
    background-position: top;
  }

  .s1920\:bg-repeat{
    background-repeat: repeat;
  }

  .s1920\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .s1920\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .s1920\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .s1920\:bg-repeat-round{
    background-repeat: round;
  }

  .s1920\:bg-repeat-space{
    background-repeat: space;
  }

  .s1920\:hover\:bg-repeat:hover{
    background-repeat: repeat;
  }

  .s1920\:hover\:bg-no-repeat:hover{
    background-repeat: no-repeat;
  }

  .s1920\:hover\:bg-repeat-x:hover{
    background-repeat: repeat-x;
  }

  .s1920\:hover\:bg-repeat-y:hover{
    background-repeat: repeat-y;
  }

  .s1920\:hover\:bg-repeat-round:hover{
    background-repeat: round;
  }

  .s1920\:hover\:bg-repeat-space:hover{
    background-repeat: space;
  }

  .s1920\:focus\:bg-repeat:focus{
    background-repeat: repeat;
  }

  .s1920\:focus\:bg-no-repeat:focus{
    background-repeat: no-repeat;
  }

  .s1920\:focus\:bg-repeat-x:focus{
    background-repeat: repeat-x;
  }

  .s1920\:focus\:bg-repeat-y:focus{
    background-repeat: repeat-y;
  }

  .s1920\:focus\:bg-repeat-round:focus{
    background-repeat: round;
  }

  .s1920\:focus\:bg-repeat-space:focus{
    background-repeat: space;
  }

  .s1920\:active\:bg-repeat:active{
    background-repeat: repeat;
  }

  .s1920\:active\:bg-no-repeat:active{
    background-repeat: no-repeat;
  }

  .s1920\:active\:bg-repeat-x:active{
    background-repeat: repeat-x;
  }

  .s1920\:active\:bg-repeat-y:active{
    background-repeat: repeat-y;
  }

  .s1920\:active\:bg-repeat-round:active{
    background-repeat: round;
  }

  .s1920\:active\:bg-repeat-space:active{
    background-repeat: space;
  }

  .s1920\:first\:bg-repeat:first-child{
    background-repeat: repeat;
  }

  .s1920\:first\:bg-no-repeat:first-child{
    background-repeat: no-repeat;
  }

  .s1920\:first\:bg-repeat-x:first-child{
    background-repeat: repeat-x;
  }

  .s1920\:first\:bg-repeat-y:first-child{
    background-repeat: repeat-y;
  }

  .s1920\:first\:bg-repeat-round:first-child{
    background-repeat: round;
  }

  .s1920\:first\:bg-repeat-space:first-child{
    background-repeat: space;
  }

  .s1920\:last\:bg-repeat:last-child{
    background-repeat: repeat;
  }

  .s1920\:last\:bg-no-repeat:last-child{
    background-repeat: no-repeat;
  }

  .s1920\:last\:bg-repeat-x:last-child{
    background-repeat: repeat-x;
  }

  .s1920\:last\:bg-repeat-y:last-child{
    background-repeat: repeat-y;
  }

  .s1920\:last\:bg-repeat-round:last-child{
    background-repeat: round;
  }

  .s1920\:last\:bg-repeat-space:last-child{
    background-repeat: space;
  }

  .s1920\:bg-auto{
    background-size: auto;
  }

  .s1920\:bg-cover{
    background-size: cover;
  }

  .s1920\:bg-contain{
    background-size: contain;
  }

  .s1920\:hover\:bg-auto:hover{
    background-size: auto;
  }

  .s1920\:hover\:bg-cover:hover{
    background-size: cover;
  }

  .s1920\:hover\:bg-contain:hover{
    background-size: contain;
  }

  .s1920\:focus\:bg-auto:focus{
    background-size: auto;
  }

  .s1920\:focus\:bg-cover:focus{
    background-size: cover;
  }

  .s1920\:focus\:bg-contain:focus{
    background-size: contain;
  }

  .s1920\:active\:bg-auto:active{
    background-size: auto;
  }

  .s1920\:active\:bg-cover:active{
    background-size: cover;
  }

  .s1920\:active\:bg-contain:active{
    background-size: contain;
  }

  .s1920\:first\:bg-auto:first-child{
    background-size: auto;
  }

  .s1920\:first\:bg-cover:first-child{
    background-size: cover;
  }

  .s1920\:first\:bg-contain:first-child{
    background-size: contain;
  }

  .s1920\:last\:bg-auto:last-child{
    background-size: auto;
  }

  .s1920\:last\:bg-cover:last-child{
    background-size: cover;
  }

  .s1920\:last\:bg-contain:last-child{
    background-size: contain;
  }

  .s1920\:border-collapse{
    border-collapse: collapse;
  }

  .s1920\:border-separate{
    border-collapse: separate;
  }

  .s1920\:hover\:border-collapse:hover{
    border-collapse: collapse;
  }

  .s1920\:hover\:border-separate:hover{
    border-collapse: separate;
  }

  .s1920\:focus\:border-collapse:focus{
    border-collapse: collapse;
  }

  .s1920\:focus\:border-separate:focus{
    border-collapse: separate;
  }

  .s1920\:active\:border-collapse:active{
    border-collapse: collapse;
  }

  .s1920\:active\:border-separate:active{
    border-collapse: separate;
  }

  .s1920\:first\:border-collapse:first-child{
    border-collapse: collapse;
  }

  .s1920\:first\:border-separate:first-child{
    border-collapse: separate;
  }

  .s1920\:last\:border-collapse:last-child{
    border-collapse: collapse;
  }

  .s1920\:last\:border-separate:last-child{
    border-collapse: separate;
  }

  .s1920\:border-black{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1920\:border-transparent{
    border-color: transparent;
  }

  .s1920\:border-error{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:border-success{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:border-white-10{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1920\:border-white-20{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1920\:border-white{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1920\:border-cheeto{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1920\:border-cheeto-very-light{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1920\:border-cheeto-light{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1920\:border-cheeto-dark{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1920\:border-cheeto-hocus{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1920\:border-cheeto-active{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1920\:border-cheeto-ml-plus{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1920\:border-cheeto-banner{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1920\:border-gracy-1{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1920\:border-gracy-10{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1920\:border-gracy-20{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1920\:border-gracy-30{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1920\:border-gracy-40{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1920\:border-gracy-50{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1920\:border-gracy-60{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1920\:border-gracy-70{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1920\:border-gracy-80{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1920\:border-gracy-90{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1920\:border-gracy-100{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1920\:border-gracy{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1920\:border-gracy-overlay-90{
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:border-login{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1920\:border-olive-light{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1920\:border-olive-drab{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:border-olive-dark{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1920\:border-daisy-light{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1920\:border-feedback-gumby{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1920\:border-feedback-daisy{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1920\:border-feedback-pokey{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1920\:border-feedback-aster{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1920\:border-feedback-aster-dark{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1920\:border-feedback-roxo{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1920\:border-feedback-error{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:border-feedback-success{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:border-functional-aoki{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1920\:border-functional-aoki-dark{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1920\:border-functional-aoki-hocus{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1920\:border-functional-aoki-active{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1920\:border-functional-aoki-light{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1920\:border-functional-kermit{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1920\:border-mixlabPlus-light{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1920\:border-primary-orange-light{
    border-color: ;
  }

  .s1920\:border-off-white{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1920\:hover\:border-black:hover{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1920\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .s1920\:hover\:border-error:hover{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:hover\:border-success:hover{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:hover\:border-white-10:hover{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1920\:hover\:border-white-20:hover{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1920\:hover\:border-white:hover{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1920\:hover\:border-cheeto:hover{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1920\:hover\:border-cheeto-very-light:hover{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1920\:hover\:border-cheeto-light:hover{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1920\:hover\:border-cheeto-dark:hover{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1920\:hover\:border-cheeto-hocus:hover{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1920\:hover\:border-cheeto-active:hover{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1920\:hover\:border-cheeto-ml-plus:hover{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1920\:hover\:border-cheeto-banner:hover{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-1:hover{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-10:hover{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-20:hover{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-30:hover{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-40:hover{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-50:hover{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-60:hover{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-70:hover{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-80:hover{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-90:hover{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-100:hover{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy:hover{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1920\:hover\:border-gracy-overlay-90:hover{
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:hover\:border-login:hover{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1920\:hover\:border-olive-light:hover{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1920\:hover\:border-olive-drab:hover{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:hover\:border-olive-dark:hover{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1920\:hover\:border-daisy-light:hover{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1920\:hover\:border-feedback-gumby:hover{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1920\:hover\:border-feedback-daisy:hover{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1920\:hover\:border-feedback-pokey:hover{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1920\:hover\:border-feedback-aster:hover{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1920\:hover\:border-feedback-aster-dark:hover{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1920\:hover\:border-feedback-roxo:hover{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1920\:hover\:border-feedback-error:hover{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:hover\:border-feedback-success:hover{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:hover\:border-functional-aoki:hover{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1920\:hover\:border-functional-aoki-dark:hover{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1920\:hover\:border-functional-aoki-hocus:hover{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1920\:hover\:border-functional-aoki-active:hover{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1920\:hover\:border-functional-aoki-light:hover{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1920\:hover\:border-functional-kermit:hover{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1920\:hover\:border-mixlabPlus-light:hover{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1920\:hover\:border-primary-orange-light:hover{
    border-color: ;
  }

  .s1920\:hover\:border-off-white:hover{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1920\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1920\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .s1920\:focus\:border-error:focus{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:focus\:border-success:focus{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:focus\:border-white-10:focus{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1920\:focus\:border-white-20:focus{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1920\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1920\:focus\:border-cheeto:focus{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1920\:focus\:border-cheeto-very-light:focus{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1920\:focus\:border-cheeto-light:focus{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1920\:focus\:border-cheeto-dark:focus{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1920\:focus\:border-cheeto-hocus:focus{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1920\:focus\:border-cheeto-active:focus{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1920\:focus\:border-cheeto-ml-plus:focus{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1920\:focus\:border-cheeto-banner:focus{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-1:focus{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-10:focus{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-20:focus{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-30:focus{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-40:focus{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-50:focus{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-60:focus{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-70:focus{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-80:focus{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-90:focus{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-100:focus{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy:focus{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1920\:focus\:border-gracy-overlay-90:focus{
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:focus\:border-login:focus{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1920\:focus\:border-olive-light:focus{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1920\:focus\:border-olive-drab:focus{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:focus\:border-olive-dark:focus{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1920\:focus\:border-daisy-light:focus{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1920\:focus\:border-feedback-gumby:focus{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1920\:focus\:border-feedback-daisy:focus{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1920\:focus\:border-feedback-pokey:focus{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1920\:focus\:border-feedback-aster:focus{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1920\:focus\:border-feedback-aster-dark:focus{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1920\:focus\:border-feedback-roxo:focus{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1920\:focus\:border-feedback-error:focus{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:focus\:border-feedback-success:focus{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:focus\:border-functional-aoki:focus{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1920\:focus\:border-functional-aoki-dark:focus{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1920\:focus\:border-functional-aoki-hocus:focus{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1920\:focus\:border-functional-aoki-active:focus{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1920\:focus\:border-functional-aoki-light:focus{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1920\:focus\:border-functional-kermit:focus{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1920\:focus\:border-mixlabPlus-light:focus{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1920\:focus\:border-primary-orange-light:focus{
    border-color: ;
  }

  .s1920\:focus\:border-off-white:focus{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1920\:active\:border-black:active{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1920\:active\:border-transparent:active{
    border-color: transparent;
  }

  .s1920\:active\:border-error:active{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:active\:border-success:active{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:active\:border-white-10:active{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1920\:active\:border-white-20:active{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1920\:active\:border-white:active{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1920\:active\:border-cheeto:active{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1920\:active\:border-cheeto-very-light:active{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1920\:active\:border-cheeto-light:active{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1920\:active\:border-cheeto-dark:active{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1920\:active\:border-cheeto-hocus:active{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1920\:active\:border-cheeto-active:active{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1920\:active\:border-cheeto-ml-plus:active{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1920\:active\:border-cheeto-banner:active{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-1:active{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-10:active{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-20:active{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-30:active{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-40:active{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-50:active{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-60:active{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-70:active{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-80:active{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-90:active{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-100:active{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1920\:active\:border-gracy:active{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1920\:active\:border-gracy-overlay-90:active{
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:active\:border-login:active{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1920\:active\:border-olive-light:active{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1920\:active\:border-olive-drab:active{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:active\:border-olive-dark:active{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1920\:active\:border-daisy-light:active{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1920\:active\:border-feedback-gumby:active{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1920\:active\:border-feedback-daisy:active{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1920\:active\:border-feedback-pokey:active{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1920\:active\:border-feedback-aster:active{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1920\:active\:border-feedback-aster-dark:active{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1920\:active\:border-feedback-roxo:active{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1920\:active\:border-feedback-error:active{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:active\:border-feedback-success:active{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:active\:border-functional-aoki:active{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1920\:active\:border-functional-aoki-dark:active{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1920\:active\:border-functional-aoki-hocus:active{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1920\:active\:border-functional-aoki-active:active{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1920\:active\:border-functional-aoki-light:active{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1920\:active\:border-functional-kermit:active{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1920\:active\:border-mixlabPlus-light:active{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1920\:active\:border-primary-orange-light:active{
    border-color: ;
  }

  .s1920\:active\:border-off-white:active{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1920\:first\:border-black:first-child{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1920\:first\:border-transparent:first-child{
    border-color: transparent;
  }

  .s1920\:first\:border-error:first-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:first\:border-success:first-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:first\:border-white-10:first-child{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1920\:first\:border-white-20:first-child{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1920\:first\:border-white:first-child{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1920\:first\:border-cheeto:first-child{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1920\:first\:border-cheeto-very-light:first-child{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1920\:first\:border-cheeto-light:first-child{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1920\:first\:border-cheeto-dark:first-child{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1920\:first\:border-cheeto-hocus:first-child{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1920\:first\:border-cheeto-active:first-child{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1920\:first\:border-cheeto-ml-plus:first-child{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1920\:first\:border-cheeto-banner:first-child{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-1:first-child{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-10:first-child{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-20:first-child{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-30:first-child{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-40:first-child{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-50:first-child{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-60:first-child{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-70:first-child{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-80:first-child{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-90:first-child{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-100:first-child{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1920\:first\:border-gracy:first-child{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1920\:first\:border-gracy-overlay-90:first-child{
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:first\:border-login:first-child{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1920\:first\:border-olive-light:first-child{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1920\:first\:border-olive-drab:first-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:first\:border-olive-dark:first-child{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1920\:first\:border-daisy-light:first-child{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1920\:first\:border-feedback-gumby:first-child{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1920\:first\:border-feedback-daisy:first-child{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1920\:first\:border-feedback-pokey:first-child{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1920\:first\:border-feedback-aster:first-child{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1920\:first\:border-feedback-aster-dark:first-child{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1920\:first\:border-feedback-roxo:first-child{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1920\:first\:border-feedback-error:first-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:first\:border-feedback-success:first-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:first\:border-functional-aoki:first-child{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1920\:first\:border-functional-aoki-dark:first-child{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1920\:first\:border-functional-aoki-hocus:first-child{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1920\:first\:border-functional-aoki-active:first-child{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1920\:first\:border-functional-aoki-light:first-child{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1920\:first\:border-functional-kermit:first-child{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1920\:first\:border-mixlabPlus-light:first-child{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1920\:first\:border-primary-orange-light:first-child{
    border-color: ;
  }

  .s1920\:first\:border-off-white:first-child{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1920\:last\:border-black:last-child{
    --border-opacity: 1;
    border-color: #000000;
    border-color: rgba(0, 0, 0, var(--border-opacity));
  }

  .s1920\:last\:border-transparent:last-child{
    border-color: transparent;
  }

  .s1920\:last\:border-error:last-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:last\:border-success:last-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:last\:border-white-10:last-child{
    --border-opacity: 1;
    border-color: #FBFBFB;
    border-color: rgba(251, 251, 251, var(--border-opacity));
  }

  .s1920\:last\:border-white-20:last-child{
    --border-opacity: 1;
    border-color: #ECECEC;
    border-color: rgba(236, 236, 236, var(--border-opacity));
  }

  .s1920\:last\:border-white:last-child{
    --border-opacity: 1;
    border-color: #FFFFFF;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .s1920\:last\:border-cheeto:last-child{
    --border-opacity: 1;
    border-color: #f7a500;
    border-color: rgba(247, 165, 0, var(--border-opacity));
  }

  .s1920\:last\:border-cheeto-very-light:last-child{
    --border-opacity: 1;
    border-color: #fffaf2;
    border-color: rgba(255, 250, 242, var(--border-opacity));
  }

  .s1920\:last\:border-cheeto-light:last-child{
    --border-opacity: 1;
    border-color: #ffd649;
    border-color: rgba(255, 214, 73, var(--border-opacity));
  }

  .s1920\:last\:border-cheeto-dark:last-child{
    --border-opacity: 1;
    border-color: #bf7600;
    border-color: rgba(191, 118, 0, var(--border-opacity));
  }

  .s1920\:last\:border-cheeto-hocus:last-child{
    --border-opacity: 1;
    border-color: #f8bd0f;
    border-color: rgba(248, 189, 15, var(--border-opacity));
  }

  .s1920\:last\:border-cheeto-active:last-child{
    --border-opacity: 1;
    border-color: #f8d61b;
    border-color: rgba(248, 214, 27, var(--border-opacity));
  }

  .s1920\:last\:border-cheeto-ml-plus:last-child{
    --border-opacity: 1;
    border-color: #FBEFCA;
    border-color: rgba(251, 239, 202, var(--border-opacity));
  }

  .s1920\:last\:border-cheeto-banner:last-child{
    --border-opacity: 1;
    border-color: #fef7e5;
    border-color: rgba(254, 247, 229, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-1:last-child{
    --border-opacity: 1;
    border-color: #f8f8fa;
    border-color: rgba(248, 248, 250, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-10:last-child{
    --border-opacity: 1;
    border-color: #faf7fd;
    border-color: rgba(250, 247, 253, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-20:last-child{
    --border-opacity: 1;
    border-color: #e0dde3;
    border-color: rgba(224, 221, 227, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-30:last-child{
    --border-opacity: 1;
    border-color: #c8c5ca;
    border-color: rgba(200, 197, 202, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-40:last-child{
    --border-opacity: 1;
    border-color: #aeacb0;
    border-color: rgba(174, 172, 176, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-50:last-child{
    --border-opacity: 1;
    border-color: #969497;
    border-color: rgba(150, 148, 151, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-60:last-child{
    --border-opacity: 1;
    border-color: #7c7b7e;
    border-color: rgba(124, 123, 126, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-70:last-child{
    --border-opacity: 1;
    border-color: #646265;
    border-color: rgba(100, 98, 101, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-80:last-child{
    --border-opacity: 1;
    border-color: #4a494b;
    border-color: rgba(74, 73, 75, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-90:last-child{
    --border-opacity: 1;
    border-color: #323132;
    border-color: rgba(50, 49, 50, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-100:last-child{
    --border-opacity: 1;
    border-color: #181818;
    border-color: rgba(24, 24, 24, var(--border-opacity));
  }

  .s1920\:last\:border-gracy:last-child{
    --border-opacity: 1;
    border-color: #6F7878;
    border-color: rgba(111, 120, 120, var(--border-opacity));
  }

  .s1920\:last\:border-gracy-overlay-90:last-child{
    border-color: rgba(50,49,50,0.5);
  }

  .s1920\:last\:border-login:last-child{
    --border-opacity: 1;
    border-color: #FDF7E7;
    border-color: rgba(253, 247, 231, var(--border-opacity));
  }

  .s1920\:last\:border-olive-light:last-child{
    --border-opacity: 1;
    border-color: #DFF5F6;
    border-color: rgba(223, 245, 246, var(--border-opacity));
  }

  .s1920\:last\:border-olive-drab:last-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:last\:border-olive-dark:last-child{
    --border-opacity: 1;
    border-color: #096348;
    border-color: rgba(9, 99, 72, var(--border-opacity));
  }

  .s1920\:last\:border-daisy-light:last-child{
    --border-opacity: 1;
    border-color: #fffce1;
    border-color: rgba(255, 252, 225, var(--border-opacity));
  }

  .s1920\:last\:border-feedback-gumby:last-child{
    --border-opacity: 1;
    border-color: #c8e6c9;
    border-color: rgba(200, 230, 201, var(--border-opacity));
  }

  .s1920\:last\:border-feedback-daisy:last-child{
    --border-opacity: 1;
    border-color: #fff9c4;
    border-color: rgba(255, 249, 196, var(--border-opacity));
  }

  .s1920\:last\:border-feedback-pokey:last-child{
    --border-opacity: 1;
    border-color: #ffcdd2;
    border-color: rgba(255, 205, 210, var(--border-opacity));
  }

  .s1920\:last\:border-feedback-aster:last-child{
    --border-opacity: 1;
    border-color: #b3e5fc;
    border-color: rgba(179, 229, 252, var(--border-opacity));
  }

  .s1920\:last\:border-feedback-aster-dark:last-child{
    --border-opacity: 1;
    border-color: #03567C;
    border-color: rgba(3, 86, 124, var(--border-opacity));
  }

  .s1920\:last\:border-feedback-roxo:last-child{
    --border-opacity: 1;
    border-color: #d1c4e9;
    border-color: rgba(209, 196, 233, var(--border-opacity));
  }

  .s1920\:last\:border-feedback-error:last-child{
    --border-opacity: 1;
    border-color: #f44336;
    border-color: rgba(244, 67, 54, var(--border-opacity));
  }

  .s1920\:last\:border-feedback-success:last-child{
    --border-opacity: 1;
    border-color: #5ca02c;
    border-color: rgba(92, 160, 44, var(--border-opacity));
  }

  .s1920\:last\:border-functional-aoki:last-child{
    --border-opacity: 1;
    border-color: #6f2ca0;
    border-color: rgba(111, 44, 160, var(--border-opacity));
  }

  .s1920\:last\:border-functional-aoki-dark:last-child{
    --border-opacity: 1;
    border-color: #3e0071;
    border-color: rgba(62, 0, 113, var(--border-opacity));
  }

  .s1920\:last\:border-functional-aoki-hocus:last-child{
    --border-opacity: 1;
    border-color: #9035af;
    border-color: rgba(144, 53, 175, var(--border-opacity));
  }

  .s1920\:last\:border-functional-aoki-active:last-child{
    --border-opacity: 1;
    border-color: #a04fbc;
    border-color: rgba(160, 79, 188, var(--border-opacity));
  }

  .s1920\:last\:border-functional-aoki-light:last-child{
    --border-opacity: 1;
    border-color: #a15ad2;
    border-color: rgba(161, 90, 210, var(--border-opacity));
  }

  .s1920\:last\:border-functional-kermit:last-child{
    --border-opacity: 1;
    border-color: #5aa120;
    border-color: rgba(90, 161, 32, var(--border-opacity));
  }

  .s1920\:last\:border-mixlabPlus-light:last-child{
    --border-opacity: 1;
    border-color: #FFFEF9;
    border-color: rgba(255, 254, 249, var(--border-opacity));
  }

  .s1920\:last\:border-primary-orange-light:last-child{
    border-color: ;
  }

  .s1920\:last\:border-off-white:last-child{
    --border-opacity: 1;
    border-color: #FAF9F6;
    border-color: rgba(250, 249, 246, var(--border-opacity));
  }

  .s1920\:border-opacity-0{
    --border-opacity: 0;
  }

  .s1920\:border-opacity-25{
    --border-opacity: 0.25;
  }

  .s1920\:border-opacity-50{
    --border-opacity: .5;
  }

  .s1920\:border-opacity-75{
    --border-opacity: 0.75;
  }

  .s1920\:border-opacity-80{
    --border-opacity: .8;
  }

  .s1920\:border-opacity-100{
    --border-opacity: 1;
  }

  .s1920\:hover\:border-opacity-0:hover{
    --border-opacity: 0;
  }

  .s1920\:hover\:border-opacity-25:hover{
    --border-opacity: 0.25;
  }

  .s1920\:hover\:border-opacity-50:hover{
    --border-opacity: .5;
  }

  .s1920\:hover\:border-opacity-75:hover{
    --border-opacity: 0.75;
  }

  .s1920\:hover\:border-opacity-80:hover{
    --border-opacity: .8;
  }

  .s1920\:hover\:border-opacity-100:hover{
    --border-opacity: 1;
  }

  .s1920\:focus\:border-opacity-0:focus{
    --border-opacity: 0;
  }

  .s1920\:focus\:border-opacity-25:focus{
    --border-opacity: 0.25;
  }

  .s1920\:focus\:border-opacity-50:focus{
    --border-opacity: .5;
  }

  .s1920\:focus\:border-opacity-75:focus{
    --border-opacity: 0.75;
  }

  .s1920\:focus\:border-opacity-80:focus{
    --border-opacity: .8;
  }

  .s1920\:focus\:border-opacity-100:focus{
    --border-opacity: 1;
  }

  .s1920\:active\:border-opacity-0:active{
    --border-opacity: 0;
  }

  .s1920\:active\:border-opacity-25:active{
    --border-opacity: 0.25;
  }

  .s1920\:active\:border-opacity-50:active{
    --border-opacity: .5;
  }

  .s1920\:active\:border-opacity-75:active{
    --border-opacity: 0.75;
  }

  .s1920\:active\:border-opacity-80:active{
    --border-opacity: .8;
  }

  .s1920\:active\:border-opacity-100:active{
    --border-opacity: 1;
  }

  .s1920\:first\:border-opacity-0:first-child{
    --border-opacity: 0;
  }

  .s1920\:first\:border-opacity-25:first-child{
    --border-opacity: 0.25;
  }

  .s1920\:first\:border-opacity-50:first-child{
    --border-opacity: .5;
  }

  .s1920\:first\:border-opacity-75:first-child{
    --border-opacity: 0.75;
  }

  .s1920\:first\:border-opacity-80:first-child{
    --border-opacity: .8;
  }

  .s1920\:first\:border-opacity-100:first-child{
    --border-opacity: 1;
  }

  .s1920\:last\:border-opacity-0:last-child{
    --border-opacity: 0;
  }

  .s1920\:last\:border-opacity-25:last-child{
    --border-opacity: 0.25;
  }

  .s1920\:last\:border-opacity-50:last-child{
    --border-opacity: .5;
  }

  .s1920\:last\:border-opacity-75:last-child{
    --border-opacity: 0.75;
  }

  .s1920\:last\:border-opacity-80:last-child{
    --border-opacity: .8;
  }

  .s1920\:last\:border-opacity-100:last-child{
    --border-opacity: 1;
  }

  .s1920\:rounded-none{
    border-radius: 0;
  }

  .s1920\:rounded-sm{
    border-radius: 0.125rem;
  }

  .s1920\:rounded{
    border-radius: 0.25rem;
  }

  .s1920\:rounded-md{
    border-radius: 0.375rem;
  }

  .s1920\:rounded-lg{
    border-radius: 0.5rem;
  }

  .s1920\:rounded-full{
    border-radius: 9999px;
  }

  .s1920\:rounded-xl{
    border-radius: 30px;
  }

  .s1920\:rounded-t-none{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1920\:rounded-r-none{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1920\:rounded-b-none{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:rounded-l-none{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1920\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1920\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:rounded-t-md{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1920\:rounded-r-md{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:rounded-b-md{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:rounded-l-md{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1920\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1920\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1920\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:rounded-t-xl{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1920\:rounded-r-xl{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1920\:rounded-b-xl{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:rounded-l-xl{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:rounded-tl-none{
    border-top-left-radius: 0;
  }

  .s1920\:rounded-tr-none{
    border-top-right-radius: 0;
  }

  .s1920\:rounded-br-none{
    border-bottom-right-radius: 0;
  }

  .s1920\:rounded-bl-none{
    border-bottom-left-radius: 0;
  }

  .s1920\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .s1920\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .s1920\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .s1920\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .s1920\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:rounded-tl-md{
    border-top-left-radius: 0.375rem;
  }

  .s1920\:rounded-tr-md{
    border-top-right-radius: 0.375rem;
  }

  .s1920\:rounded-br-md{
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:rounded-bl-md{
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .s1920\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .s1920\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .s1920\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .s1920\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .s1920\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .s1920\:rounded-tl-xl{
    border-top-left-radius: 30px;
  }

  .s1920\:rounded-tr-xl{
    border-top-right-radius: 30px;
  }

  .s1920\:rounded-br-xl{
    border-bottom-right-radius: 30px;
  }

  .s1920\:rounded-bl-xl{
    border-bottom-left-radius: 30px;
  }

  .s1920\:hover\:rounded-none:hover{
    border-radius: 0;
  }

  .s1920\:hover\:rounded-sm:hover{
    border-radius: 0.125rem;
  }

  .s1920\:hover\:rounded:hover{
    border-radius: 0.25rem;
  }

  .s1920\:hover\:rounded-md:hover{
    border-radius: 0.375rem;
  }

  .s1920\:hover\:rounded-lg:hover{
    border-radius: 0.5rem;
  }

  .s1920\:hover\:rounded-full:hover{
    border-radius: 9999px;
  }

  .s1920\:hover\:rounded-xl:hover{
    border-radius: 30px;
  }

  .s1920\:hover\:rounded-t-none:hover{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1920\:hover\:rounded-r-none:hover{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1920\:hover\:rounded-b-none:hover{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:hover\:rounded-l-none:hover{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:hover\:rounded-t-sm:hover{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1920\:hover\:rounded-r-sm:hover{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:hover\:rounded-b-sm:hover{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:hover\:rounded-l-sm:hover{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:hover\:rounded-t:hover{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1920\:hover\:rounded-r:hover{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:hover\:rounded-b:hover{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:hover\:rounded-l:hover{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:hover\:rounded-t-md:hover{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1920\:hover\:rounded-r-md:hover{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:hover\:rounded-b-md:hover{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:hover\:rounded-l-md:hover{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:hover\:rounded-t-lg:hover{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1920\:hover\:rounded-r-lg:hover{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:hover\:rounded-b-lg:hover{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:hover\:rounded-l-lg:hover{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:hover\:rounded-t-full:hover{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1920\:hover\:rounded-r-full:hover{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1920\:hover\:rounded-b-full:hover{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:hover\:rounded-l-full:hover{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:hover\:rounded-t-xl:hover{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1920\:hover\:rounded-r-xl:hover{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1920\:hover\:rounded-b-xl:hover{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:hover\:rounded-l-xl:hover{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:hover\:rounded-tl-none:hover{
    border-top-left-radius: 0;
  }

  .s1920\:hover\:rounded-tr-none:hover{
    border-top-right-radius: 0;
  }

  .s1920\:hover\:rounded-br-none:hover{
    border-bottom-right-radius: 0;
  }

  .s1920\:hover\:rounded-bl-none:hover{
    border-bottom-left-radius: 0;
  }

  .s1920\:hover\:rounded-tl-sm:hover{
    border-top-left-radius: 0.125rem;
  }

  .s1920\:hover\:rounded-tr-sm:hover{
    border-top-right-radius: 0.125rem;
  }

  .s1920\:hover\:rounded-br-sm:hover{
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:hover\:rounded-bl-sm:hover{
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:hover\:rounded-tl:hover{
    border-top-left-radius: 0.25rem;
  }

  .s1920\:hover\:rounded-tr:hover{
    border-top-right-radius: 0.25rem;
  }

  .s1920\:hover\:rounded-br:hover{
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:hover\:rounded-bl:hover{
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:hover\:rounded-tl-md:hover{
    border-top-left-radius: 0.375rem;
  }

  .s1920\:hover\:rounded-tr-md:hover{
    border-top-right-radius: 0.375rem;
  }

  .s1920\:hover\:rounded-br-md:hover{
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:hover\:rounded-bl-md:hover{
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:hover\:rounded-tl-lg:hover{
    border-top-left-radius: 0.5rem;
  }

  .s1920\:hover\:rounded-tr-lg:hover{
    border-top-right-radius: 0.5rem;
  }

  .s1920\:hover\:rounded-br-lg:hover{
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:hover\:rounded-bl-lg:hover{
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:hover\:rounded-tl-full:hover{
    border-top-left-radius: 9999px;
  }

  .s1920\:hover\:rounded-tr-full:hover{
    border-top-right-radius: 9999px;
  }

  .s1920\:hover\:rounded-br-full:hover{
    border-bottom-right-radius: 9999px;
  }

  .s1920\:hover\:rounded-bl-full:hover{
    border-bottom-left-radius: 9999px;
  }

  .s1920\:hover\:rounded-tl-xl:hover{
    border-top-left-radius: 30px;
  }

  .s1920\:hover\:rounded-tr-xl:hover{
    border-top-right-radius: 30px;
  }

  .s1920\:hover\:rounded-br-xl:hover{
    border-bottom-right-radius: 30px;
  }

  .s1920\:hover\:rounded-bl-xl:hover{
    border-bottom-left-radius: 30px;
  }

  .s1920\:focus\:rounded-none:focus{
    border-radius: 0;
  }

  .s1920\:focus\:rounded-sm:focus{
    border-radius: 0.125rem;
  }

  .s1920\:focus\:rounded:focus{
    border-radius: 0.25rem;
  }

  .s1920\:focus\:rounded-md:focus{
    border-radius: 0.375rem;
  }

  .s1920\:focus\:rounded-lg:focus{
    border-radius: 0.5rem;
  }

  .s1920\:focus\:rounded-full:focus{
    border-radius: 9999px;
  }

  .s1920\:focus\:rounded-xl:focus{
    border-radius: 30px;
  }

  .s1920\:focus\:rounded-t-none:focus{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1920\:focus\:rounded-r-none:focus{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1920\:focus\:rounded-b-none:focus{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:focus\:rounded-l-none:focus{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:focus\:rounded-t-sm:focus{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1920\:focus\:rounded-r-sm:focus{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:focus\:rounded-b-sm:focus{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:focus\:rounded-l-sm:focus{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:focus\:rounded-t:focus{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1920\:focus\:rounded-r:focus{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:focus\:rounded-b:focus{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:focus\:rounded-l:focus{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:focus\:rounded-t-md:focus{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1920\:focus\:rounded-r-md:focus{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:focus\:rounded-b-md:focus{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:focus\:rounded-l-md:focus{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:focus\:rounded-t-lg:focus{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1920\:focus\:rounded-r-lg:focus{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:focus\:rounded-b-lg:focus{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:focus\:rounded-l-lg:focus{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:focus\:rounded-t-full:focus{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1920\:focus\:rounded-r-full:focus{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1920\:focus\:rounded-b-full:focus{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:focus\:rounded-l-full:focus{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:focus\:rounded-t-xl:focus{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1920\:focus\:rounded-r-xl:focus{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1920\:focus\:rounded-b-xl:focus{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:focus\:rounded-l-xl:focus{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:focus\:rounded-tl-none:focus{
    border-top-left-radius: 0;
  }

  .s1920\:focus\:rounded-tr-none:focus{
    border-top-right-radius: 0;
  }

  .s1920\:focus\:rounded-br-none:focus{
    border-bottom-right-radius: 0;
  }

  .s1920\:focus\:rounded-bl-none:focus{
    border-bottom-left-radius: 0;
  }

  .s1920\:focus\:rounded-tl-sm:focus{
    border-top-left-radius: 0.125rem;
  }

  .s1920\:focus\:rounded-tr-sm:focus{
    border-top-right-radius: 0.125rem;
  }

  .s1920\:focus\:rounded-br-sm:focus{
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:focus\:rounded-bl-sm:focus{
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:focus\:rounded-tl:focus{
    border-top-left-radius: 0.25rem;
  }

  .s1920\:focus\:rounded-tr:focus{
    border-top-right-radius: 0.25rem;
  }

  .s1920\:focus\:rounded-br:focus{
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:focus\:rounded-bl:focus{
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:focus\:rounded-tl-md:focus{
    border-top-left-radius: 0.375rem;
  }

  .s1920\:focus\:rounded-tr-md:focus{
    border-top-right-radius: 0.375rem;
  }

  .s1920\:focus\:rounded-br-md:focus{
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:focus\:rounded-bl-md:focus{
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:focus\:rounded-tl-lg:focus{
    border-top-left-radius: 0.5rem;
  }

  .s1920\:focus\:rounded-tr-lg:focus{
    border-top-right-radius: 0.5rem;
  }

  .s1920\:focus\:rounded-br-lg:focus{
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:focus\:rounded-bl-lg:focus{
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:focus\:rounded-tl-full:focus{
    border-top-left-radius: 9999px;
  }

  .s1920\:focus\:rounded-tr-full:focus{
    border-top-right-radius: 9999px;
  }

  .s1920\:focus\:rounded-br-full:focus{
    border-bottom-right-radius: 9999px;
  }

  .s1920\:focus\:rounded-bl-full:focus{
    border-bottom-left-radius: 9999px;
  }

  .s1920\:focus\:rounded-tl-xl:focus{
    border-top-left-radius: 30px;
  }

  .s1920\:focus\:rounded-tr-xl:focus{
    border-top-right-radius: 30px;
  }

  .s1920\:focus\:rounded-br-xl:focus{
    border-bottom-right-radius: 30px;
  }

  .s1920\:focus\:rounded-bl-xl:focus{
    border-bottom-left-radius: 30px;
  }

  .s1920\:active\:rounded-none:active{
    border-radius: 0;
  }

  .s1920\:active\:rounded-sm:active{
    border-radius: 0.125rem;
  }

  .s1920\:active\:rounded:active{
    border-radius: 0.25rem;
  }

  .s1920\:active\:rounded-md:active{
    border-radius: 0.375rem;
  }

  .s1920\:active\:rounded-lg:active{
    border-radius: 0.5rem;
  }

  .s1920\:active\:rounded-full:active{
    border-radius: 9999px;
  }

  .s1920\:active\:rounded-xl:active{
    border-radius: 30px;
  }

  .s1920\:active\:rounded-t-none:active{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1920\:active\:rounded-r-none:active{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1920\:active\:rounded-b-none:active{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:active\:rounded-l-none:active{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:active\:rounded-t-sm:active{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1920\:active\:rounded-r-sm:active{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:active\:rounded-b-sm:active{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:active\:rounded-l-sm:active{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:active\:rounded-t:active{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1920\:active\:rounded-r:active{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:active\:rounded-b:active{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:active\:rounded-l:active{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:active\:rounded-t-md:active{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1920\:active\:rounded-r-md:active{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:active\:rounded-b-md:active{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:active\:rounded-l-md:active{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:active\:rounded-t-lg:active{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1920\:active\:rounded-r-lg:active{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:active\:rounded-b-lg:active{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:active\:rounded-l-lg:active{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:active\:rounded-t-full:active{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1920\:active\:rounded-r-full:active{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1920\:active\:rounded-b-full:active{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:active\:rounded-l-full:active{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:active\:rounded-t-xl:active{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1920\:active\:rounded-r-xl:active{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1920\:active\:rounded-b-xl:active{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:active\:rounded-l-xl:active{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:active\:rounded-tl-none:active{
    border-top-left-radius: 0;
  }

  .s1920\:active\:rounded-tr-none:active{
    border-top-right-radius: 0;
  }

  .s1920\:active\:rounded-br-none:active{
    border-bottom-right-radius: 0;
  }

  .s1920\:active\:rounded-bl-none:active{
    border-bottom-left-radius: 0;
  }

  .s1920\:active\:rounded-tl-sm:active{
    border-top-left-radius: 0.125rem;
  }

  .s1920\:active\:rounded-tr-sm:active{
    border-top-right-radius: 0.125rem;
  }

  .s1920\:active\:rounded-br-sm:active{
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:active\:rounded-bl-sm:active{
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:active\:rounded-tl:active{
    border-top-left-radius: 0.25rem;
  }

  .s1920\:active\:rounded-tr:active{
    border-top-right-radius: 0.25rem;
  }

  .s1920\:active\:rounded-br:active{
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:active\:rounded-bl:active{
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:active\:rounded-tl-md:active{
    border-top-left-radius: 0.375rem;
  }

  .s1920\:active\:rounded-tr-md:active{
    border-top-right-radius: 0.375rem;
  }

  .s1920\:active\:rounded-br-md:active{
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:active\:rounded-bl-md:active{
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:active\:rounded-tl-lg:active{
    border-top-left-radius: 0.5rem;
  }

  .s1920\:active\:rounded-tr-lg:active{
    border-top-right-radius: 0.5rem;
  }

  .s1920\:active\:rounded-br-lg:active{
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:active\:rounded-bl-lg:active{
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:active\:rounded-tl-full:active{
    border-top-left-radius: 9999px;
  }

  .s1920\:active\:rounded-tr-full:active{
    border-top-right-radius: 9999px;
  }

  .s1920\:active\:rounded-br-full:active{
    border-bottom-right-radius: 9999px;
  }

  .s1920\:active\:rounded-bl-full:active{
    border-bottom-left-radius: 9999px;
  }

  .s1920\:active\:rounded-tl-xl:active{
    border-top-left-radius: 30px;
  }

  .s1920\:active\:rounded-tr-xl:active{
    border-top-right-radius: 30px;
  }

  .s1920\:active\:rounded-br-xl:active{
    border-bottom-right-radius: 30px;
  }

  .s1920\:active\:rounded-bl-xl:active{
    border-bottom-left-radius: 30px;
  }

  .s1920\:first\:rounded-none:first-child{
    border-radius: 0;
  }

  .s1920\:first\:rounded-sm:first-child{
    border-radius: 0.125rem;
  }

  .s1920\:first\:rounded:first-child{
    border-radius: 0.25rem;
  }

  .s1920\:first\:rounded-md:first-child{
    border-radius: 0.375rem;
  }

  .s1920\:first\:rounded-lg:first-child{
    border-radius: 0.5rem;
  }

  .s1920\:first\:rounded-full:first-child{
    border-radius: 9999px;
  }

  .s1920\:first\:rounded-xl:first-child{
    border-radius: 30px;
  }

  .s1920\:first\:rounded-t-none:first-child{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1920\:first\:rounded-r-none:first-child{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1920\:first\:rounded-b-none:first-child{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:first\:rounded-l-none:first-child{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:first\:rounded-t-sm:first-child{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1920\:first\:rounded-r-sm:first-child{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:first\:rounded-b-sm:first-child{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:first\:rounded-l-sm:first-child{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:first\:rounded-t:first-child{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1920\:first\:rounded-r:first-child{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:first\:rounded-b:first-child{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:first\:rounded-l:first-child{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:first\:rounded-t-md:first-child{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1920\:first\:rounded-r-md:first-child{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:first\:rounded-b-md:first-child{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:first\:rounded-l-md:first-child{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:first\:rounded-t-lg:first-child{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1920\:first\:rounded-r-lg:first-child{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:first\:rounded-b-lg:first-child{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:first\:rounded-l-lg:first-child{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:first\:rounded-t-full:first-child{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1920\:first\:rounded-r-full:first-child{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1920\:first\:rounded-b-full:first-child{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:first\:rounded-l-full:first-child{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:first\:rounded-t-xl:first-child{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1920\:first\:rounded-r-xl:first-child{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1920\:first\:rounded-b-xl:first-child{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:first\:rounded-l-xl:first-child{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:first\:rounded-tl-none:first-child{
    border-top-left-radius: 0;
  }

  .s1920\:first\:rounded-tr-none:first-child{
    border-top-right-radius: 0;
  }

  .s1920\:first\:rounded-br-none:first-child{
    border-bottom-right-radius: 0;
  }

  .s1920\:first\:rounded-bl-none:first-child{
    border-bottom-left-radius: 0;
  }

  .s1920\:first\:rounded-tl-sm:first-child{
    border-top-left-radius: 0.125rem;
  }

  .s1920\:first\:rounded-tr-sm:first-child{
    border-top-right-radius: 0.125rem;
  }

  .s1920\:first\:rounded-br-sm:first-child{
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:first\:rounded-bl-sm:first-child{
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:first\:rounded-tl:first-child{
    border-top-left-radius: 0.25rem;
  }

  .s1920\:first\:rounded-tr:first-child{
    border-top-right-radius: 0.25rem;
  }

  .s1920\:first\:rounded-br:first-child{
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:first\:rounded-bl:first-child{
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:first\:rounded-tl-md:first-child{
    border-top-left-radius: 0.375rem;
  }

  .s1920\:first\:rounded-tr-md:first-child{
    border-top-right-radius: 0.375rem;
  }

  .s1920\:first\:rounded-br-md:first-child{
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:first\:rounded-bl-md:first-child{
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:first\:rounded-tl-lg:first-child{
    border-top-left-radius: 0.5rem;
  }

  .s1920\:first\:rounded-tr-lg:first-child{
    border-top-right-radius: 0.5rem;
  }

  .s1920\:first\:rounded-br-lg:first-child{
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:first\:rounded-bl-lg:first-child{
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:first\:rounded-tl-full:first-child{
    border-top-left-radius: 9999px;
  }

  .s1920\:first\:rounded-tr-full:first-child{
    border-top-right-radius: 9999px;
  }

  .s1920\:first\:rounded-br-full:first-child{
    border-bottom-right-radius: 9999px;
  }

  .s1920\:first\:rounded-bl-full:first-child{
    border-bottom-left-radius: 9999px;
  }

  .s1920\:first\:rounded-tl-xl:first-child{
    border-top-left-radius: 30px;
  }

  .s1920\:first\:rounded-tr-xl:first-child{
    border-top-right-radius: 30px;
  }

  .s1920\:first\:rounded-br-xl:first-child{
    border-bottom-right-radius: 30px;
  }

  .s1920\:first\:rounded-bl-xl:first-child{
    border-bottom-left-radius: 30px;
  }

  .s1920\:last\:rounded-none:last-child{
    border-radius: 0;
  }

  .s1920\:last\:rounded-sm:last-child{
    border-radius: 0.125rem;
  }

  .s1920\:last\:rounded:last-child{
    border-radius: 0.25rem;
  }

  .s1920\:last\:rounded-md:last-child{
    border-radius: 0.375rem;
  }

  .s1920\:last\:rounded-lg:last-child{
    border-radius: 0.5rem;
  }

  .s1920\:last\:rounded-full:last-child{
    border-radius: 9999px;
  }

  .s1920\:last\:rounded-xl:last-child{
    border-radius: 30px;
  }

  .s1920\:last\:rounded-t-none:last-child{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .s1920\:last\:rounded-r-none:last-child{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .s1920\:last\:rounded-b-none:last-child{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:last\:rounded-l-none:last-child{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .s1920\:last\:rounded-t-sm:last-child{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .s1920\:last\:rounded-r-sm:last-child{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:last\:rounded-b-sm:last-child{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:last\:rounded-l-sm:last-child{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:last\:rounded-t:last-child{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .s1920\:last\:rounded-r:last-child{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:last\:rounded-b:last-child{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:last\:rounded-l:last-child{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:last\:rounded-t-md:last-child{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .s1920\:last\:rounded-r-md:last-child{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:last\:rounded-b-md:last-child{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:last\:rounded-l-md:last-child{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:last\:rounded-t-lg:last-child{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .s1920\:last\:rounded-r-lg:last-child{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:last\:rounded-b-lg:last-child{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:last\:rounded-l-lg:last-child{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:last\:rounded-t-full:last-child{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .s1920\:last\:rounded-r-full:last-child{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .s1920\:last\:rounded-b-full:last-child{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:last\:rounded-l-full:last-child{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .s1920\:last\:rounded-t-xl:last-child{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .s1920\:last\:rounded-r-xl:last-child{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .s1920\:last\:rounded-b-xl:last-child{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:last\:rounded-l-xl:last-child{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .s1920\:last\:rounded-tl-none:last-child{
    border-top-left-radius: 0;
  }

  .s1920\:last\:rounded-tr-none:last-child{
    border-top-right-radius: 0;
  }

  .s1920\:last\:rounded-br-none:last-child{
    border-bottom-right-radius: 0;
  }

  .s1920\:last\:rounded-bl-none:last-child{
    border-bottom-left-radius: 0;
  }

  .s1920\:last\:rounded-tl-sm:last-child{
    border-top-left-radius: 0.125rem;
  }

  .s1920\:last\:rounded-tr-sm:last-child{
    border-top-right-radius: 0.125rem;
  }

  .s1920\:last\:rounded-br-sm:last-child{
    border-bottom-right-radius: 0.125rem;
  }

  .s1920\:last\:rounded-bl-sm:last-child{
    border-bottom-left-radius: 0.125rem;
  }

  .s1920\:last\:rounded-tl:last-child{
    border-top-left-radius: 0.25rem;
  }

  .s1920\:last\:rounded-tr:last-child{
    border-top-right-radius: 0.25rem;
  }

  .s1920\:last\:rounded-br:last-child{
    border-bottom-right-radius: 0.25rem;
  }

  .s1920\:last\:rounded-bl:last-child{
    border-bottom-left-radius: 0.25rem;
  }

  .s1920\:last\:rounded-tl-md:last-child{
    border-top-left-radius: 0.375rem;
  }

  .s1920\:last\:rounded-tr-md:last-child{
    border-top-right-radius: 0.375rem;
  }

  .s1920\:last\:rounded-br-md:last-child{
    border-bottom-right-radius: 0.375rem;
  }

  .s1920\:last\:rounded-bl-md:last-child{
    border-bottom-left-radius: 0.375rem;
  }

  .s1920\:last\:rounded-tl-lg:last-child{
    border-top-left-radius: 0.5rem;
  }

  .s1920\:last\:rounded-tr-lg:last-child{
    border-top-right-radius: 0.5rem;
  }

  .s1920\:last\:rounded-br-lg:last-child{
    border-bottom-right-radius: 0.5rem;
  }

  .s1920\:last\:rounded-bl-lg:last-child{
    border-bottom-left-radius: 0.5rem;
  }

  .s1920\:last\:rounded-tl-full:last-child{
    border-top-left-radius: 9999px;
  }

  .s1920\:last\:rounded-tr-full:last-child{
    border-top-right-radius: 9999px;
  }

  .s1920\:last\:rounded-br-full:last-child{
    border-bottom-right-radius: 9999px;
  }

  .s1920\:last\:rounded-bl-full:last-child{
    border-bottom-left-radius: 9999px;
  }

  .s1920\:last\:rounded-tl-xl:last-child{
    border-top-left-radius: 30px;
  }

  .s1920\:last\:rounded-tr-xl:last-child{
    border-top-right-radius: 30px;
  }

  .s1920\:last\:rounded-br-xl:last-child{
    border-bottom-right-radius: 30px;
  }

  .s1920\:last\:rounded-bl-xl:last-child{
    border-bottom-left-radius: 30px;
  }

  .s1920\:border-solid{
    border-style: solid;
  }

  .s1920\:border-dashed{
    border-style: dashed;
  }

  .s1920\:border-dotted{
    border-style: dotted;
  }

  .s1920\:border-double{
    border-style: double;
  }

  .s1920\:border-none{
    border-style: none;
  }

  .s1920\:hover\:border-solid:hover{
    border-style: solid;
  }

  .s1920\:hover\:border-dashed:hover{
    border-style: dashed;
  }

  .s1920\:hover\:border-dotted:hover{
    border-style: dotted;
  }

  .s1920\:hover\:border-double:hover{
    border-style: double;
  }

  .s1920\:hover\:border-none:hover{
    border-style: none;
  }

  .s1920\:focus\:border-solid:focus{
    border-style: solid;
  }

  .s1920\:focus\:border-dashed:focus{
    border-style: dashed;
  }

  .s1920\:focus\:border-dotted:focus{
    border-style: dotted;
  }

  .s1920\:focus\:border-double:focus{
    border-style: double;
  }

  .s1920\:focus\:border-none:focus{
    border-style: none;
  }

  .s1920\:active\:border-solid:active{
    border-style: solid;
  }

  .s1920\:active\:border-dashed:active{
    border-style: dashed;
  }

  .s1920\:active\:border-dotted:active{
    border-style: dotted;
  }

  .s1920\:active\:border-double:active{
    border-style: double;
  }

  .s1920\:active\:border-none:active{
    border-style: none;
  }

  .s1920\:first\:border-solid:first-child{
    border-style: solid;
  }

  .s1920\:first\:border-dashed:first-child{
    border-style: dashed;
  }

  .s1920\:first\:border-dotted:first-child{
    border-style: dotted;
  }

  .s1920\:first\:border-double:first-child{
    border-style: double;
  }

  .s1920\:first\:border-none:first-child{
    border-style: none;
  }

  .s1920\:last\:border-solid:last-child{
    border-style: solid;
  }

  .s1920\:last\:border-dashed:last-child{
    border-style: dashed;
  }

  .s1920\:last\:border-dotted:last-child{
    border-style: dotted;
  }

  .s1920\:last\:border-double:last-child{
    border-style: double;
  }

  .s1920\:last\:border-none:last-child{
    border-style: none;
  }

  .s1920\:border-0{
    border-width: 0;
  }

  .s1920\:border-2{
    border-width: 2px;
  }

  .s1920\:border-4{
    border-width: 4px;
  }

  .s1920\:border-8{
    border-width: 8px;
  }

  .s1920\:border{
    border-width: 1px;
  }

  .s1920\:border-t-0{
    border-top-width: 0;
  }

  .s1920\:border-r-0{
    border-right-width: 0;
  }

  .s1920\:border-b-0{
    border-bottom-width: 0;
  }

  .s1920\:border-l-0{
    border-left-width: 0;
  }

  .s1920\:border-t-2{
    border-top-width: 2px;
  }

  .s1920\:border-r-2{
    border-right-width: 2px;
  }

  .s1920\:border-b-2{
    border-bottom-width: 2px;
  }

  .s1920\:border-l-2{
    border-left-width: 2px;
  }

  .s1920\:border-t-4{
    border-top-width: 4px;
  }

  .s1920\:border-r-4{
    border-right-width: 4px;
  }

  .s1920\:border-b-4{
    border-bottom-width: 4px;
  }

  .s1920\:border-l-4{
    border-left-width: 4px;
  }

  .s1920\:border-t-8{
    border-top-width: 8px;
  }

  .s1920\:border-r-8{
    border-right-width: 8px;
  }

  .s1920\:border-b-8{
    border-bottom-width: 8px;
  }

  .s1920\:border-l-8{
    border-left-width: 8px;
  }

  .s1920\:border-t{
    border-top-width: 1px;
  }

  .s1920\:border-r{
    border-right-width: 1px;
  }

  .s1920\:border-b{
    border-bottom-width: 1px;
  }

  .s1920\:border-l{
    border-left-width: 1px;
  }

  .s1920\:hover\:border-0:hover{
    border-width: 0;
  }

  .s1920\:hover\:border-2:hover{
    border-width: 2px;
  }

  .s1920\:hover\:border-4:hover{
    border-width: 4px;
  }

  .s1920\:hover\:border-8:hover{
    border-width: 8px;
  }

  .s1920\:hover\:border:hover{
    border-width: 1px;
  }

  .s1920\:hover\:border-t-0:hover{
    border-top-width: 0;
  }

  .s1920\:hover\:border-r-0:hover{
    border-right-width: 0;
  }

  .s1920\:hover\:border-b-0:hover{
    border-bottom-width: 0;
  }

  .s1920\:hover\:border-l-0:hover{
    border-left-width: 0;
  }

  .s1920\:hover\:border-t-2:hover{
    border-top-width: 2px;
  }

  .s1920\:hover\:border-r-2:hover{
    border-right-width: 2px;
  }

  .s1920\:hover\:border-b-2:hover{
    border-bottom-width: 2px;
  }

  .s1920\:hover\:border-l-2:hover{
    border-left-width: 2px;
  }

  .s1920\:hover\:border-t-4:hover{
    border-top-width: 4px;
  }

  .s1920\:hover\:border-r-4:hover{
    border-right-width: 4px;
  }

  .s1920\:hover\:border-b-4:hover{
    border-bottom-width: 4px;
  }

  .s1920\:hover\:border-l-4:hover{
    border-left-width: 4px;
  }

  .s1920\:hover\:border-t-8:hover{
    border-top-width: 8px;
  }

  .s1920\:hover\:border-r-8:hover{
    border-right-width: 8px;
  }

  .s1920\:hover\:border-b-8:hover{
    border-bottom-width: 8px;
  }

  .s1920\:hover\:border-l-8:hover{
    border-left-width: 8px;
  }

  .s1920\:hover\:border-t:hover{
    border-top-width: 1px;
  }

  .s1920\:hover\:border-r:hover{
    border-right-width: 1px;
  }

  .s1920\:hover\:border-b:hover{
    border-bottom-width: 1px;
  }

  .s1920\:hover\:border-l:hover{
    border-left-width: 1px;
  }

  .s1920\:focus\:border-0:focus{
    border-width: 0;
  }

  .s1920\:focus\:border-2:focus{
    border-width: 2px;
  }

  .s1920\:focus\:border-4:focus{
    border-width: 4px;
  }

  .s1920\:focus\:border-8:focus{
    border-width: 8px;
  }

  .s1920\:focus\:border:focus{
    border-width: 1px;
  }

  .s1920\:focus\:border-t-0:focus{
    border-top-width: 0;
  }

  .s1920\:focus\:border-r-0:focus{
    border-right-width: 0;
  }

  .s1920\:focus\:border-b-0:focus{
    border-bottom-width: 0;
  }

  .s1920\:focus\:border-l-0:focus{
    border-left-width: 0;
  }

  .s1920\:focus\:border-t-2:focus{
    border-top-width: 2px;
  }

  .s1920\:focus\:border-r-2:focus{
    border-right-width: 2px;
  }

  .s1920\:focus\:border-b-2:focus{
    border-bottom-width: 2px;
  }

  .s1920\:focus\:border-l-2:focus{
    border-left-width: 2px;
  }

  .s1920\:focus\:border-t-4:focus{
    border-top-width: 4px;
  }

  .s1920\:focus\:border-r-4:focus{
    border-right-width: 4px;
  }

  .s1920\:focus\:border-b-4:focus{
    border-bottom-width: 4px;
  }

  .s1920\:focus\:border-l-4:focus{
    border-left-width: 4px;
  }

  .s1920\:focus\:border-t-8:focus{
    border-top-width: 8px;
  }

  .s1920\:focus\:border-r-8:focus{
    border-right-width: 8px;
  }

  .s1920\:focus\:border-b-8:focus{
    border-bottom-width: 8px;
  }

  .s1920\:focus\:border-l-8:focus{
    border-left-width: 8px;
  }

  .s1920\:focus\:border-t:focus{
    border-top-width: 1px;
  }

  .s1920\:focus\:border-r:focus{
    border-right-width: 1px;
  }

  .s1920\:focus\:border-b:focus{
    border-bottom-width: 1px;
  }

  .s1920\:focus\:border-l:focus{
    border-left-width: 1px;
  }

  .s1920\:active\:border-0:active{
    border-width: 0;
  }

  .s1920\:active\:border-2:active{
    border-width: 2px;
  }

  .s1920\:active\:border-4:active{
    border-width: 4px;
  }

  .s1920\:active\:border-8:active{
    border-width: 8px;
  }

  .s1920\:active\:border:active{
    border-width: 1px;
  }

  .s1920\:active\:border-t-0:active{
    border-top-width: 0;
  }

  .s1920\:active\:border-r-0:active{
    border-right-width: 0;
  }

  .s1920\:active\:border-b-0:active{
    border-bottom-width: 0;
  }

  .s1920\:active\:border-l-0:active{
    border-left-width: 0;
  }

  .s1920\:active\:border-t-2:active{
    border-top-width: 2px;
  }

  .s1920\:active\:border-r-2:active{
    border-right-width: 2px;
  }

  .s1920\:active\:border-b-2:active{
    border-bottom-width: 2px;
  }

  .s1920\:active\:border-l-2:active{
    border-left-width: 2px;
  }

  .s1920\:active\:border-t-4:active{
    border-top-width: 4px;
  }

  .s1920\:active\:border-r-4:active{
    border-right-width: 4px;
  }

  .s1920\:active\:border-b-4:active{
    border-bottom-width: 4px;
  }

  .s1920\:active\:border-l-4:active{
    border-left-width: 4px;
  }

  .s1920\:active\:border-t-8:active{
    border-top-width: 8px;
  }

  .s1920\:active\:border-r-8:active{
    border-right-width: 8px;
  }

  .s1920\:active\:border-b-8:active{
    border-bottom-width: 8px;
  }

  .s1920\:active\:border-l-8:active{
    border-left-width: 8px;
  }

  .s1920\:active\:border-t:active{
    border-top-width: 1px;
  }

  .s1920\:active\:border-r:active{
    border-right-width: 1px;
  }

  .s1920\:active\:border-b:active{
    border-bottom-width: 1px;
  }

  .s1920\:active\:border-l:active{
    border-left-width: 1px;
  }

  .s1920\:first\:border-0:first-child{
    border-width: 0;
  }

  .s1920\:first\:border-2:first-child{
    border-width: 2px;
  }

  .s1920\:first\:border-4:first-child{
    border-width: 4px;
  }

  .s1920\:first\:border-8:first-child{
    border-width: 8px;
  }

  .s1920\:first\:border:first-child{
    border-width: 1px;
  }

  .s1920\:first\:border-t-0:first-child{
    border-top-width: 0;
  }

  .s1920\:first\:border-r-0:first-child{
    border-right-width: 0;
  }

  .s1920\:first\:border-b-0:first-child{
    border-bottom-width: 0;
  }

  .s1920\:first\:border-l-0:first-child{
    border-left-width: 0;
  }

  .s1920\:first\:border-t-2:first-child{
    border-top-width: 2px;
  }

  .s1920\:first\:border-r-2:first-child{
    border-right-width: 2px;
  }

  .s1920\:first\:border-b-2:first-child{
    border-bottom-width: 2px;
  }

  .s1920\:first\:border-l-2:first-child{
    border-left-width: 2px;
  }

  .s1920\:first\:border-t-4:first-child{
    border-top-width: 4px;
  }

  .s1920\:first\:border-r-4:first-child{
    border-right-width: 4px;
  }

  .s1920\:first\:border-b-4:first-child{
    border-bottom-width: 4px;
  }

  .s1920\:first\:border-l-4:first-child{
    border-left-width: 4px;
  }

  .s1920\:first\:border-t-8:first-child{
    border-top-width: 8px;
  }

  .s1920\:first\:border-r-8:first-child{
    border-right-width: 8px;
  }

  .s1920\:first\:border-b-8:first-child{
    border-bottom-width: 8px;
  }

  .s1920\:first\:border-l-8:first-child{
    border-left-width: 8px;
  }

  .s1920\:first\:border-t:first-child{
    border-top-width: 1px;
  }

  .s1920\:first\:border-r:first-child{
    border-right-width: 1px;
  }

  .s1920\:first\:border-b:first-child{
    border-bottom-width: 1px;
  }

  .s1920\:first\:border-l:first-child{
    border-left-width: 1px;
  }

  .s1920\:last\:border-0:last-child{
    border-width: 0;
  }

  .s1920\:last\:border-2:last-child{
    border-width: 2px;
  }

  .s1920\:last\:border-4:last-child{
    border-width: 4px;
  }

  .s1920\:last\:border-8:last-child{
    border-width: 8px;
  }

  .s1920\:last\:border:last-child{
    border-width: 1px;
  }

  .s1920\:last\:border-t-0:last-child{
    border-top-width: 0;
  }

  .s1920\:last\:border-r-0:last-child{
    border-right-width: 0;
  }

  .s1920\:last\:border-b-0:last-child{
    border-bottom-width: 0;
  }

  .s1920\:last\:border-l-0:last-child{
    border-left-width: 0;
  }

  .s1920\:last\:border-t-2:last-child{
    border-top-width: 2px;
  }

  .s1920\:last\:border-r-2:last-child{
    border-right-width: 2px;
  }

  .s1920\:last\:border-b-2:last-child{
    border-bottom-width: 2px;
  }

  .s1920\:last\:border-l-2:last-child{
    border-left-width: 2px;
  }

  .s1920\:last\:border-t-4:last-child{
    border-top-width: 4px;
  }

  .s1920\:last\:border-r-4:last-child{
    border-right-width: 4px;
  }

  .s1920\:last\:border-b-4:last-child{
    border-bottom-width: 4px;
  }

  .s1920\:last\:border-l-4:last-child{
    border-left-width: 4px;
  }

  .s1920\:last\:border-t-8:last-child{
    border-top-width: 8px;
  }

  .s1920\:last\:border-r-8:last-child{
    border-right-width: 8px;
  }

  .s1920\:last\:border-b-8:last-child{
    border-bottom-width: 8px;
  }

  .s1920\:last\:border-l-8:last-child{
    border-left-width: 8px;
  }

  .s1920\:last\:border-t:last-child{
    border-top-width: 1px;
  }

  .s1920\:last\:border-r:last-child{
    border-right-width: 1px;
  }

  .s1920\:last\:border-b:last-child{
    border-bottom-width: 1px;
  }

  .s1920\:last\:border-l:last-child{
    border-left-width: 1px;
  }

  .s1920\:box-border{
    box-sizing: border-box;
  }

  .s1920\:box-content{
    box-sizing: content-box;
  }

  .s1920\:hover\:box-border:hover{
    box-sizing: border-box;
  }

  .s1920\:hover\:box-content:hover{
    box-sizing: content-box;
  }

  .s1920\:focus\:box-border:focus{
    box-sizing: border-box;
  }

  .s1920\:focus\:box-content:focus{
    box-sizing: content-box;
  }

  .s1920\:active\:box-border:active{
    box-sizing: border-box;
  }

  .s1920\:active\:box-content:active{
    box-sizing: content-box;
  }

  .s1920\:first\:box-border:first-child{
    box-sizing: border-box;
  }

  .s1920\:first\:box-content:first-child{
    box-sizing: content-box;
  }

  .s1920\:last\:box-border:last-child{
    box-sizing: border-box;
  }

  .s1920\:last\:box-content:last-child{
    box-sizing: content-box;
  }

  .s1920\:cursor-auto{
    cursor: auto;
  }

  .s1920\:cursor-default{
    cursor: default;
  }

  .s1920\:cursor-pointer{
    cursor: pointer;
  }

  .s1920\:cursor-wait{
    cursor: wait;
  }

  .s1920\:cursor-text{
    cursor: text;
  }

  .s1920\:cursor-move{
    cursor: move;
  }

  .s1920\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .s1920\:hover\:cursor-auto:hover{
    cursor: auto;
  }

  .s1920\:hover\:cursor-default:hover{
    cursor: default;
  }

  .s1920\:hover\:cursor-pointer:hover{
    cursor: pointer;
  }

  .s1920\:hover\:cursor-wait:hover{
    cursor: wait;
  }

  .s1920\:hover\:cursor-text:hover{
    cursor: text;
  }

  .s1920\:hover\:cursor-move:hover{
    cursor: move;
  }

  .s1920\:hover\:cursor-not-allowed:hover{
    cursor: not-allowed;
  }

  .s1920\:focus\:cursor-auto:focus{
    cursor: auto;
  }

  .s1920\:focus\:cursor-default:focus{
    cursor: default;
  }

  .s1920\:focus\:cursor-pointer:focus{
    cursor: pointer;
  }

  .s1920\:focus\:cursor-wait:focus{
    cursor: wait;
  }

  .s1920\:focus\:cursor-text:focus{
    cursor: text;
  }

  .s1920\:focus\:cursor-move:focus{
    cursor: move;
  }

  .s1920\:focus\:cursor-not-allowed:focus{
    cursor: not-allowed;
  }

  .s1920\:active\:cursor-auto:active{
    cursor: auto;
  }

  .s1920\:active\:cursor-default:active{
    cursor: default;
  }

  .s1920\:active\:cursor-pointer:active{
    cursor: pointer;
  }

  .s1920\:active\:cursor-wait:active{
    cursor: wait;
  }

  .s1920\:active\:cursor-text:active{
    cursor: text;
  }

  .s1920\:active\:cursor-move:active{
    cursor: move;
  }

  .s1920\:active\:cursor-not-allowed:active{
    cursor: not-allowed;
  }

  .s1920\:first\:cursor-auto:first-child{
    cursor: auto;
  }

  .s1920\:first\:cursor-default:first-child{
    cursor: default;
  }

  .s1920\:first\:cursor-pointer:first-child{
    cursor: pointer;
  }

  .s1920\:first\:cursor-wait:first-child{
    cursor: wait;
  }

  .s1920\:first\:cursor-text:first-child{
    cursor: text;
  }

  .s1920\:first\:cursor-move:first-child{
    cursor: move;
  }

  .s1920\:first\:cursor-not-allowed:first-child{
    cursor: not-allowed;
  }

  .s1920\:last\:cursor-auto:last-child{
    cursor: auto;
  }

  .s1920\:last\:cursor-default:last-child{
    cursor: default;
  }

  .s1920\:last\:cursor-pointer:last-child{
    cursor: pointer;
  }

  .s1920\:last\:cursor-wait:last-child{
    cursor: wait;
  }

  .s1920\:last\:cursor-text:last-child{
    cursor: text;
  }

  .s1920\:last\:cursor-move:last-child{
    cursor: move;
  }

  .s1920\:last\:cursor-not-allowed:last-child{
    cursor: not-allowed;
  }

  .s1920\:block{
    display: block;
  }

  .s1920\:inline-block{
    display: inline-block;
  }

  .s1920\:inline{
    display: inline;
  }

  .s1920\:flex{
    display: flex;
  }

  .s1920\:inline-flex{
    display: inline-flex;
  }

  .s1920\:table{
    display: table;
  }

  .s1920\:table-caption{
    display: table-caption;
  }

  .s1920\:table-cell{
    display: table-cell;
  }

  .s1920\:table-column{
    display: table-column;
  }

  .s1920\:table-column-group{
    display: table-column-group;
  }

  .s1920\:table-footer-group{
    display: table-footer-group;
  }

  .s1920\:table-header-group{
    display: table-header-group;
  }

  .s1920\:table-row-group{
    display: table-row-group;
  }

  .s1920\:table-row{
    display: table-row;
  }

  .s1920\:flow-root{
    display: flow-root;
  }

  .s1920\:grid{
    display: grid;
  }

  .s1920\:inline-grid{
    display: inline-grid;
  }

  .s1920\:contents{
    display: contents;
  }

  .s1920\:hidden{
    display: none;
  }

  .s1920\:hover\:block:hover{
    display: block;
  }

  .s1920\:hover\:inline-block:hover{
    display: inline-block;
  }

  .s1920\:hover\:inline:hover{
    display: inline;
  }

  .s1920\:hover\:flex:hover{
    display: flex;
  }

  .s1920\:hover\:inline-flex:hover{
    display: inline-flex;
  }

  .s1920\:hover\:table:hover{
    display: table;
  }

  .s1920\:hover\:table-caption:hover{
    display: table-caption;
  }

  .s1920\:hover\:table-cell:hover{
    display: table-cell;
  }

  .s1920\:hover\:table-column:hover{
    display: table-column;
  }

  .s1920\:hover\:table-column-group:hover{
    display: table-column-group;
  }

  .s1920\:hover\:table-footer-group:hover{
    display: table-footer-group;
  }

  .s1920\:hover\:table-header-group:hover{
    display: table-header-group;
  }

  .s1920\:hover\:table-row-group:hover{
    display: table-row-group;
  }

  .s1920\:hover\:table-row:hover{
    display: table-row;
  }

  .s1920\:hover\:flow-root:hover{
    display: flow-root;
  }

  .s1920\:hover\:grid:hover{
    display: grid;
  }

  .s1920\:hover\:inline-grid:hover{
    display: inline-grid;
  }

  .s1920\:hover\:contents:hover{
    display: contents;
  }

  .s1920\:hover\:hidden:hover{
    display: none;
  }

  .s1920\:focus\:block:focus{
    display: block;
  }

  .s1920\:focus\:inline-block:focus{
    display: inline-block;
  }

  .s1920\:focus\:inline:focus{
    display: inline;
  }

  .s1920\:focus\:flex:focus{
    display: flex;
  }

  .s1920\:focus\:inline-flex:focus{
    display: inline-flex;
  }

  .s1920\:focus\:table:focus{
    display: table;
  }

  .s1920\:focus\:table-caption:focus{
    display: table-caption;
  }

  .s1920\:focus\:table-cell:focus{
    display: table-cell;
  }

  .s1920\:focus\:table-column:focus{
    display: table-column;
  }

  .s1920\:focus\:table-column-group:focus{
    display: table-column-group;
  }

  .s1920\:focus\:table-footer-group:focus{
    display: table-footer-group;
  }

  .s1920\:focus\:table-header-group:focus{
    display: table-header-group;
  }

  .s1920\:focus\:table-row-group:focus{
    display: table-row-group;
  }

  .s1920\:focus\:table-row:focus{
    display: table-row;
  }

  .s1920\:focus\:flow-root:focus{
    display: flow-root;
  }

  .s1920\:focus\:grid:focus{
    display: grid;
  }

  .s1920\:focus\:inline-grid:focus{
    display: inline-grid;
  }

  .s1920\:focus\:contents:focus{
    display: contents;
  }

  .s1920\:focus\:hidden:focus{
    display: none;
  }

  .s1920\:active\:block:active{
    display: block;
  }

  .s1920\:active\:inline-block:active{
    display: inline-block;
  }

  .s1920\:active\:inline:active{
    display: inline;
  }

  .s1920\:active\:flex:active{
    display: flex;
  }

  .s1920\:active\:inline-flex:active{
    display: inline-flex;
  }

  .s1920\:active\:table:active{
    display: table;
  }

  .s1920\:active\:table-caption:active{
    display: table-caption;
  }

  .s1920\:active\:table-cell:active{
    display: table-cell;
  }

  .s1920\:active\:table-column:active{
    display: table-column;
  }

  .s1920\:active\:table-column-group:active{
    display: table-column-group;
  }

  .s1920\:active\:table-footer-group:active{
    display: table-footer-group;
  }

  .s1920\:active\:table-header-group:active{
    display: table-header-group;
  }

  .s1920\:active\:table-row-group:active{
    display: table-row-group;
  }

  .s1920\:active\:table-row:active{
    display: table-row;
  }

  .s1920\:active\:flow-root:active{
    display: flow-root;
  }

  .s1920\:active\:grid:active{
    display: grid;
  }

  .s1920\:active\:inline-grid:active{
    display: inline-grid;
  }

  .s1920\:active\:contents:active{
    display: contents;
  }

  .s1920\:active\:hidden:active{
    display: none;
  }

  .s1920\:first\:block:first-child{
    display: block;
  }

  .s1920\:first\:inline-block:first-child{
    display: inline-block;
  }

  .s1920\:first\:inline:first-child{
    display: inline;
  }

  .s1920\:first\:flex:first-child{
    display: flex;
  }

  .s1920\:first\:inline-flex:first-child{
    display: inline-flex;
  }

  .s1920\:first\:table:first-child{
    display: table;
  }

  .s1920\:first\:table-caption:first-child{
    display: table-caption;
  }

  .s1920\:first\:table-cell:first-child{
    display: table-cell;
  }

  .s1920\:first\:table-column:first-child{
    display: table-column;
  }

  .s1920\:first\:table-column-group:first-child{
    display: table-column-group;
  }

  .s1920\:first\:table-footer-group:first-child{
    display: table-footer-group;
  }

  .s1920\:first\:table-header-group:first-child{
    display: table-header-group;
  }

  .s1920\:first\:table-row-group:first-child{
    display: table-row-group;
  }

  .s1920\:first\:table-row:first-child{
    display: table-row;
  }

  .s1920\:first\:flow-root:first-child{
    display: flow-root;
  }

  .s1920\:first\:grid:first-child{
    display: grid;
  }

  .s1920\:first\:inline-grid:first-child{
    display: inline-grid;
  }

  .s1920\:first\:contents:first-child{
    display: contents;
  }

  .s1920\:first\:hidden:first-child{
    display: none;
  }

  .s1920\:last\:block:last-child{
    display: block;
  }

  .s1920\:last\:inline-block:last-child{
    display: inline-block;
  }

  .s1920\:last\:inline:last-child{
    display: inline;
  }

  .s1920\:last\:flex:last-child{
    display: flex;
  }

  .s1920\:last\:inline-flex:last-child{
    display: inline-flex;
  }

  .s1920\:last\:table:last-child{
    display: table;
  }

  .s1920\:last\:table-caption:last-child{
    display: table-caption;
  }

  .s1920\:last\:table-cell:last-child{
    display: table-cell;
  }

  .s1920\:last\:table-column:last-child{
    display: table-column;
  }

  .s1920\:last\:table-column-group:last-child{
    display: table-column-group;
  }

  .s1920\:last\:table-footer-group:last-child{
    display: table-footer-group;
  }

  .s1920\:last\:table-header-group:last-child{
    display: table-header-group;
  }

  .s1920\:last\:table-row-group:last-child{
    display: table-row-group;
  }

  .s1920\:last\:table-row:last-child{
    display: table-row;
  }

  .s1920\:last\:flow-root:last-child{
    display: flow-root;
  }

  .s1920\:last\:grid:last-child{
    display: grid;
  }

  .s1920\:last\:inline-grid:last-child{
    display: inline-grid;
  }

  .s1920\:last\:contents:last-child{
    display: contents;
  }

  .s1920\:last\:hidden:last-child{
    display: none;
  }

  .s1920\:flex-row{
    flex-direction: row;
  }

  .s1920\:flex-row-reverse{
    flex-direction: row-reverse;
  }

  .s1920\:flex-col{
    flex-direction: column;
  }

  .s1920\:flex-col-reverse{
    flex-direction: column-reverse;
  }

  .s1920\:hover\:flex-row:hover{
    flex-direction: row;
  }

  .s1920\:hover\:flex-row-reverse:hover{
    flex-direction: row-reverse;
  }

  .s1920\:hover\:flex-col:hover{
    flex-direction: column;
  }

  .s1920\:hover\:flex-col-reverse:hover{
    flex-direction: column-reverse;
  }

  .s1920\:focus\:flex-row:focus{
    flex-direction: row;
  }

  .s1920\:focus\:flex-row-reverse:focus{
    flex-direction: row-reverse;
  }

  .s1920\:focus\:flex-col:focus{
    flex-direction: column;
  }

  .s1920\:focus\:flex-col-reverse:focus{
    flex-direction: column-reverse;
  }

  .s1920\:active\:flex-row:active{
    flex-direction: row;
  }

  .s1920\:active\:flex-row-reverse:active{
    flex-direction: row-reverse;
  }

  .s1920\:active\:flex-col:active{
    flex-direction: column;
  }

  .s1920\:active\:flex-col-reverse:active{
    flex-direction: column-reverse;
  }

  .s1920\:first\:flex-row:first-child{
    flex-direction: row;
  }

  .s1920\:first\:flex-row-reverse:first-child{
    flex-direction: row-reverse;
  }

  .s1920\:first\:flex-col:first-child{
    flex-direction: column;
  }

  .s1920\:first\:flex-col-reverse:first-child{
    flex-direction: column-reverse;
  }

  .s1920\:last\:flex-row:last-child{
    flex-direction: row;
  }

  .s1920\:last\:flex-row-reverse:last-child{
    flex-direction: row-reverse;
  }

  .s1920\:last\:flex-col:last-child{
    flex-direction: column;
  }

  .s1920\:last\:flex-col-reverse:last-child{
    flex-direction: column-reverse;
  }

  .s1920\:flex-wrap{
    flex-wrap: wrap;
  }

  .s1920\:flex-wrap-reverse{
    flex-wrap: wrap-reverse;
  }

  .s1920\:flex-no-wrap{
    flex-wrap: nowrap;
  }

  .s1920\:hover\:flex-wrap:hover{
    flex-wrap: wrap;
  }

  .s1920\:hover\:flex-wrap-reverse:hover{
    flex-wrap: wrap-reverse;
  }

  .s1920\:hover\:flex-no-wrap:hover{
    flex-wrap: nowrap;
  }

  .s1920\:focus\:flex-wrap:focus{
    flex-wrap: wrap;
  }

  .s1920\:focus\:flex-wrap-reverse:focus{
    flex-wrap: wrap-reverse;
  }

  .s1920\:focus\:flex-no-wrap:focus{
    flex-wrap: nowrap;
  }

  .s1920\:active\:flex-wrap:active{
    flex-wrap: wrap;
  }

  .s1920\:active\:flex-wrap-reverse:active{
    flex-wrap: wrap-reverse;
  }

  .s1920\:active\:flex-no-wrap:active{
    flex-wrap: nowrap;
  }

  .s1920\:first\:flex-wrap:first-child{
    flex-wrap: wrap;
  }

  .s1920\:first\:flex-wrap-reverse:first-child{
    flex-wrap: wrap-reverse;
  }

  .s1920\:first\:flex-no-wrap:first-child{
    flex-wrap: nowrap;
  }

  .s1920\:last\:flex-wrap:last-child{
    flex-wrap: wrap;
  }

  .s1920\:last\:flex-wrap-reverse:last-child{
    flex-wrap: wrap-reverse;
  }

  .s1920\:last\:flex-no-wrap:last-child{
    flex-wrap: nowrap;
  }

  .s1920\:place-items-auto{
    place-items: auto;
  }

  .s1920\:place-items-start{
    place-items: start;
  }

  .s1920\:place-items-end{
    place-items: end;
  }

  .s1920\:place-items-center{
    place-items: center;
  }

  .s1920\:place-items-stretch{
    place-items: stretch;
  }

  .s1920\:hover\:place-items-auto:hover{
    place-items: auto;
  }

  .s1920\:hover\:place-items-start:hover{
    place-items: start;
  }

  .s1920\:hover\:place-items-end:hover{
    place-items: end;
  }

  .s1920\:hover\:place-items-center:hover{
    place-items: center;
  }

  .s1920\:hover\:place-items-stretch:hover{
    place-items: stretch;
  }

  .s1920\:focus\:place-items-auto:focus{
    place-items: auto;
  }

  .s1920\:focus\:place-items-start:focus{
    place-items: start;
  }

  .s1920\:focus\:place-items-end:focus{
    place-items: end;
  }

  .s1920\:focus\:place-items-center:focus{
    place-items: center;
  }

  .s1920\:focus\:place-items-stretch:focus{
    place-items: stretch;
  }

  .s1920\:active\:place-items-auto:active{
    place-items: auto;
  }

  .s1920\:active\:place-items-start:active{
    place-items: start;
  }

  .s1920\:active\:place-items-end:active{
    place-items: end;
  }

  .s1920\:active\:place-items-center:active{
    place-items: center;
  }

  .s1920\:active\:place-items-stretch:active{
    place-items: stretch;
  }

  .s1920\:first\:place-items-auto:first-child{
    place-items: auto;
  }

  .s1920\:first\:place-items-start:first-child{
    place-items: start;
  }

  .s1920\:first\:place-items-end:first-child{
    place-items: end;
  }

  .s1920\:first\:place-items-center:first-child{
    place-items: center;
  }

  .s1920\:first\:place-items-stretch:first-child{
    place-items: stretch;
  }

  .s1920\:last\:place-items-auto:last-child{
    place-items: auto;
  }

  .s1920\:last\:place-items-start:last-child{
    place-items: start;
  }

  .s1920\:last\:place-items-end:last-child{
    place-items: end;
  }

  .s1920\:last\:place-items-center:last-child{
    place-items: center;
  }

  .s1920\:last\:place-items-stretch:last-child{
    place-items: stretch;
  }

  .s1920\:place-content-center{
    place-content: center;
  }

  .s1920\:place-content-start{
    place-content: start;
  }

  .s1920\:place-content-end{
    place-content: end;
  }

  .s1920\:place-content-between{
    place-content: space-between;
  }

  .s1920\:place-content-around{
    place-content: space-around;
  }

  .s1920\:place-content-evenly{
    place-content: space-evenly;
  }

  .s1920\:place-content-stretch{
    place-content: stretch;
  }

  .s1920\:hover\:place-content-center:hover{
    place-content: center;
  }

  .s1920\:hover\:place-content-start:hover{
    place-content: start;
  }

  .s1920\:hover\:place-content-end:hover{
    place-content: end;
  }

  .s1920\:hover\:place-content-between:hover{
    place-content: space-between;
  }

  .s1920\:hover\:place-content-around:hover{
    place-content: space-around;
  }

  .s1920\:hover\:place-content-evenly:hover{
    place-content: space-evenly;
  }

  .s1920\:hover\:place-content-stretch:hover{
    place-content: stretch;
  }

  .s1920\:focus\:place-content-center:focus{
    place-content: center;
  }

  .s1920\:focus\:place-content-start:focus{
    place-content: start;
  }

  .s1920\:focus\:place-content-end:focus{
    place-content: end;
  }

  .s1920\:focus\:place-content-between:focus{
    place-content: space-between;
  }

  .s1920\:focus\:place-content-around:focus{
    place-content: space-around;
  }

  .s1920\:focus\:place-content-evenly:focus{
    place-content: space-evenly;
  }

  .s1920\:focus\:place-content-stretch:focus{
    place-content: stretch;
  }

  .s1920\:active\:place-content-center:active{
    place-content: center;
  }

  .s1920\:active\:place-content-start:active{
    place-content: start;
  }

  .s1920\:active\:place-content-end:active{
    place-content: end;
  }

  .s1920\:active\:place-content-between:active{
    place-content: space-between;
  }

  .s1920\:active\:place-content-around:active{
    place-content: space-around;
  }

  .s1920\:active\:place-content-evenly:active{
    place-content: space-evenly;
  }

  .s1920\:active\:place-content-stretch:active{
    place-content: stretch;
  }

  .s1920\:first\:place-content-center:first-child{
    place-content: center;
  }

  .s1920\:first\:place-content-start:first-child{
    place-content: start;
  }

  .s1920\:first\:place-content-end:first-child{
    place-content: end;
  }

  .s1920\:first\:place-content-between:first-child{
    place-content: space-between;
  }

  .s1920\:first\:place-content-around:first-child{
    place-content: space-around;
  }

  .s1920\:first\:place-content-evenly:first-child{
    place-content: space-evenly;
  }

  .s1920\:first\:place-content-stretch:first-child{
    place-content: stretch;
  }

  .s1920\:last\:place-content-center:last-child{
    place-content: center;
  }

  .s1920\:last\:place-content-start:last-child{
    place-content: start;
  }

  .s1920\:last\:place-content-end:last-child{
    place-content: end;
  }

  .s1920\:last\:place-content-between:last-child{
    place-content: space-between;
  }

  .s1920\:last\:place-content-around:last-child{
    place-content: space-around;
  }

  .s1920\:last\:place-content-evenly:last-child{
    place-content: space-evenly;
  }

  .s1920\:last\:place-content-stretch:last-child{
    place-content: stretch;
  }

  .s1920\:place-self-auto{
    place-self: auto;
  }

  .s1920\:place-self-start{
    place-self: start;
  }

  .s1920\:place-self-end{
    place-self: end;
  }

  .s1920\:place-self-center{
    place-self: center;
  }

  .s1920\:place-self-stretch{
    place-self: stretch;
  }

  .s1920\:hover\:place-self-auto:hover{
    place-self: auto;
  }

  .s1920\:hover\:place-self-start:hover{
    place-self: start;
  }

  .s1920\:hover\:place-self-end:hover{
    place-self: end;
  }

  .s1920\:hover\:place-self-center:hover{
    place-self: center;
  }

  .s1920\:hover\:place-self-stretch:hover{
    place-self: stretch;
  }

  .s1920\:focus\:place-self-auto:focus{
    place-self: auto;
  }

  .s1920\:focus\:place-self-start:focus{
    place-self: start;
  }

  .s1920\:focus\:place-self-end:focus{
    place-self: end;
  }

  .s1920\:focus\:place-self-center:focus{
    place-self: center;
  }

  .s1920\:focus\:place-self-stretch:focus{
    place-self: stretch;
  }

  .s1920\:active\:place-self-auto:active{
    place-self: auto;
  }

  .s1920\:active\:place-self-start:active{
    place-self: start;
  }

  .s1920\:active\:place-self-end:active{
    place-self: end;
  }

  .s1920\:active\:place-self-center:active{
    place-self: center;
  }

  .s1920\:active\:place-self-stretch:active{
    place-self: stretch;
  }

  .s1920\:first\:place-self-auto:first-child{
    place-self: auto;
  }

  .s1920\:first\:place-self-start:first-child{
    place-self: start;
  }

  .s1920\:first\:place-self-end:first-child{
    place-self: end;
  }

  .s1920\:first\:place-self-center:first-child{
    place-self: center;
  }

  .s1920\:first\:place-self-stretch:first-child{
    place-self: stretch;
  }

  .s1920\:last\:place-self-auto:last-child{
    place-self: auto;
  }

  .s1920\:last\:place-self-start:last-child{
    place-self: start;
  }

  .s1920\:last\:place-self-end:last-child{
    place-self: end;
  }

  .s1920\:last\:place-self-center:last-child{
    place-self: center;
  }

  .s1920\:last\:place-self-stretch:last-child{
    place-self: stretch;
  }

  .s1920\:items-start{
    align-items: flex-start;
  }

  .s1920\:items-end{
    align-items: flex-end;
  }

  .s1920\:items-center{
    align-items: center;
  }

  .s1920\:items-baseline{
    align-items: baseline;
  }

  .s1920\:items-stretch{
    align-items: stretch;
  }

  .s1920\:hover\:items-start:hover{
    align-items: flex-start;
  }

  .s1920\:hover\:items-end:hover{
    align-items: flex-end;
  }

  .s1920\:hover\:items-center:hover{
    align-items: center;
  }

  .s1920\:hover\:items-baseline:hover{
    align-items: baseline;
  }

  .s1920\:hover\:items-stretch:hover{
    align-items: stretch;
  }

  .s1920\:focus\:items-start:focus{
    align-items: flex-start;
  }

  .s1920\:focus\:items-end:focus{
    align-items: flex-end;
  }

  .s1920\:focus\:items-center:focus{
    align-items: center;
  }

  .s1920\:focus\:items-baseline:focus{
    align-items: baseline;
  }

  .s1920\:focus\:items-stretch:focus{
    align-items: stretch;
  }

  .s1920\:active\:items-start:active{
    align-items: flex-start;
  }

  .s1920\:active\:items-end:active{
    align-items: flex-end;
  }

  .s1920\:active\:items-center:active{
    align-items: center;
  }

  .s1920\:active\:items-baseline:active{
    align-items: baseline;
  }

  .s1920\:active\:items-stretch:active{
    align-items: stretch;
  }

  .s1920\:first\:items-start:first-child{
    align-items: flex-start;
  }

  .s1920\:first\:items-end:first-child{
    align-items: flex-end;
  }

  .s1920\:first\:items-center:first-child{
    align-items: center;
  }

  .s1920\:first\:items-baseline:first-child{
    align-items: baseline;
  }

  .s1920\:first\:items-stretch:first-child{
    align-items: stretch;
  }

  .s1920\:last\:items-start:last-child{
    align-items: flex-start;
  }

  .s1920\:last\:items-end:last-child{
    align-items: flex-end;
  }

  .s1920\:last\:items-center:last-child{
    align-items: center;
  }

  .s1920\:last\:items-baseline:last-child{
    align-items: baseline;
  }

  .s1920\:last\:items-stretch:last-child{
    align-items: stretch;
  }

  .s1920\:content-center{
    align-content: center;
  }

  .s1920\:content-start{
    align-content: flex-start;
  }

  .s1920\:content-end{
    align-content: flex-end;
  }

  .s1920\:content-between{
    align-content: space-between;
  }

  .s1920\:content-around{
    align-content: space-around;
  }

  .s1920\:content-evenly{
    align-content: space-evenly;
  }

  .s1920\:hover\:content-center:hover{
    align-content: center;
  }

  .s1920\:hover\:content-start:hover{
    align-content: flex-start;
  }

  .s1920\:hover\:content-end:hover{
    align-content: flex-end;
  }

  .s1920\:hover\:content-between:hover{
    align-content: space-between;
  }

  .s1920\:hover\:content-around:hover{
    align-content: space-around;
  }

  .s1920\:hover\:content-evenly:hover{
    align-content: space-evenly;
  }

  .s1920\:focus\:content-center:focus{
    align-content: center;
  }

  .s1920\:focus\:content-start:focus{
    align-content: flex-start;
  }

  .s1920\:focus\:content-end:focus{
    align-content: flex-end;
  }

  .s1920\:focus\:content-between:focus{
    align-content: space-between;
  }

  .s1920\:focus\:content-around:focus{
    align-content: space-around;
  }

  .s1920\:focus\:content-evenly:focus{
    align-content: space-evenly;
  }

  .s1920\:active\:content-center:active{
    align-content: center;
  }

  .s1920\:active\:content-start:active{
    align-content: flex-start;
  }

  .s1920\:active\:content-end:active{
    align-content: flex-end;
  }

  .s1920\:active\:content-between:active{
    align-content: space-between;
  }

  .s1920\:active\:content-around:active{
    align-content: space-around;
  }

  .s1920\:active\:content-evenly:active{
    align-content: space-evenly;
  }

  .s1920\:first\:content-center:first-child{
    align-content: center;
  }

  .s1920\:first\:content-start:first-child{
    align-content: flex-start;
  }

  .s1920\:first\:content-end:first-child{
    align-content: flex-end;
  }

  .s1920\:first\:content-between:first-child{
    align-content: space-between;
  }

  .s1920\:first\:content-around:first-child{
    align-content: space-around;
  }

  .s1920\:first\:content-evenly:first-child{
    align-content: space-evenly;
  }

  .s1920\:last\:content-center:last-child{
    align-content: center;
  }

  .s1920\:last\:content-start:last-child{
    align-content: flex-start;
  }

  .s1920\:last\:content-end:last-child{
    align-content: flex-end;
  }

  .s1920\:last\:content-between:last-child{
    align-content: space-between;
  }

  .s1920\:last\:content-around:last-child{
    align-content: space-around;
  }

  .s1920\:last\:content-evenly:last-child{
    align-content: space-evenly;
  }

  .s1920\:self-auto{
    align-self: auto;
  }

  .s1920\:self-start{
    align-self: flex-start;
  }

  .s1920\:self-end{
    align-self: flex-end;
  }

  .s1920\:self-center{
    align-self: center;
  }

  .s1920\:self-stretch{
    align-self: stretch;
  }

  .s1920\:hover\:self-auto:hover{
    align-self: auto;
  }

  .s1920\:hover\:self-start:hover{
    align-self: flex-start;
  }

  .s1920\:hover\:self-end:hover{
    align-self: flex-end;
  }

  .s1920\:hover\:self-center:hover{
    align-self: center;
  }

  .s1920\:hover\:self-stretch:hover{
    align-self: stretch;
  }

  .s1920\:focus\:self-auto:focus{
    align-self: auto;
  }

  .s1920\:focus\:self-start:focus{
    align-self: flex-start;
  }

  .s1920\:focus\:self-end:focus{
    align-self: flex-end;
  }

  .s1920\:focus\:self-center:focus{
    align-self: center;
  }

  .s1920\:focus\:self-stretch:focus{
    align-self: stretch;
  }

  .s1920\:active\:self-auto:active{
    align-self: auto;
  }

  .s1920\:active\:self-start:active{
    align-self: flex-start;
  }

  .s1920\:active\:self-end:active{
    align-self: flex-end;
  }

  .s1920\:active\:self-center:active{
    align-self: center;
  }

  .s1920\:active\:self-stretch:active{
    align-self: stretch;
  }

  .s1920\:first\:self-auto:first-child{
    align-self: auto;
  }

  .s1920\:first\:self-start:first-child{
    align-self: flex-start;
  }

  .s1920\:first\:self-end:first-child{
    align-self: flex-end;
  }

  .s1920\:first\:self-center:first-child{
    align-self: center;
  }

  .s1920\:first\:self-stretch:first-child{
    align-self: stretch;
  }

  .s1920\:last\:self-auto:last-child{
    align-self: auto;
  }

  .s1920\:last\:self-start:last-child{
    align-self: flex-start;
  }

  .s1920\:last\:self-end:last-child{
    align-self: flex-end;
  }

  .s1920\:last\:self-center:last-child{
    align-self: center;
  }

  .s1920\:last\:self-stretch:last-child{
    align-self: stretch;
  }

  .s1920\:justify-items-auto{
    justify-items: auto;
  }

  .s1920\:justify-items-start{
    justify-items: start;
  }

  .s1920\:justify-items-end{
    justify-items: end;
  }

  .s1920\:justify-items-center{
    justify-items: center;
  }

  .s1920\:justify-items-stretch{
    justify-items: stretch;
  }

  .s1920\:hover\:justify-items-auto:hover{
    justify-items: auto;
  }

  .s1920\:hover\:justify-items-start:hover{
    justify-items: start;
  }

  .s1920\:hover\:justify-items-end:hover{
    justify-items: end;
  }

  .s1920\:hover\:justify-items-center:hover{
    justify-items: center;
  }

  .s1920\:hover\:justify-items-stretch:hover{
    justify-items: stretch;
  }

  .s1920\:focus\:justify-items-auto:focus{
    justify-items: auto;
  }

  .s1920\:focus\:justify-items-start:focus{
    justify-items: start;
  }

  .s1920\:focus\:justify-items-end:focus{
    justify-items: end;
  }

  .s1920\:focus\:justify-items-center:focus{
    justify-items: center;
  }

  .s1920\:focus\:justify-items-stretch:focus{
    justify-items: stretch;
  }

  .s1920\:active\:justify-items-auto:active{
    justify-items: auto;
  }

  .s1920\:active\:justify-items-start:active{
    justify-items: start;
  }

  .s1920\:active\:justify-items-end:active{
    justify-items: end;
  }

  .s1920\:active\:justify-items-center:active{
    justify-items: center;
  }

  .s1920\:active\:justify-items-stretch:active{
    justify-items: stretch;
  }

  .s1920\:first\:justify-items-auto:first-child{
    justify-items: auto;
  }

  .s1920\:first\:justify-items-start:first-child{
    justify-items: start;
  }

  .s1920\:first\:justify-items-end:first-child{
    justify-items: end;
  }

  .s1920\:first\:justify-items-center:first-child{
    justify-items: center;
  }

  .s1920\:first\:justify-items-stretch:first-child{
    justify-items: stretch;
  }

  .s1920\:last\:justify-items-auto:last-child{
    justify-items: auto;
  }

  .s1920\:last\:justify-items-start:last-child{
    justify-items: start;
  }

  .s1920\:last\:justify-items-end:last-child{
    justify-items: end;
  }

  .s1920\:last\:justify-items-center:last-child{
    justify-items: center;
  }

  .s1920\:last\:justify-items-stretch:last-child{
    justify-items: stretch;
  }

  .s1920\:justify-start{
    justify-content: flex-start;
  }

  .s1920\:justify-end{
    justify-content: flex-end;
  }

  .s1920\:justify-center{
    justify-content: center;
  }

  .s1920\:justify-between{
    justify-content: space-between;
  }

  .s1920\:justify-around{
    justify-content: space-around;
  }

  .s1920\:justify-evenly{
    justify-content: space-evenly;
  }

  .s1920\:hover\:justify-start:hover{
    justify-content: flex-start;
  }

  .s1920\:hover\:justify-end:hover{
    justify-content: flex-end;
  }

  .s1920\:hover\:justify-center:hover{
    justify-content: center;
  }

  .s1920\:hover\:justify-between:hover{
    justify-content: space-between;
  }

  .s1920\:hover\:justify-around:hover{
    justify-content: space-around;
  }

  .s1920\:hover\:justify-evenly:hover{
    justify-content: space-evenly;
  }

  .s1920\:focus\:justify-start:focus{
    justify-content: flex-start;
  }

  .s1920\:focus\:justify-end:focus{
    justify-content: flex-end;
  }

  .s1920\:focus\:justify-center:focus{
    justify-content: center;
  }

  .s1920\:focus\:justify-between:focus{
    justify-content: space-between;
  }

  .s1920\:focus\:justify-around:focus{
    justify-content: space-around;
  }

  .s1920\:focus\:justify-evenly:focus{
    justify-content: space-evenly;
  }

  .s1920\:active\:justify-start:active{
    justify-content: flex-start;
  }

  .s1920\:active\:justify-end:active{
    justify-content: flex-end;
  }

  .s1920\:active\:justify-center:active{
    justify-content: center;
  }

  .s1920\:active\:justify-between:active{
    justify-content: space-between;
  }

  .s1920\:active\:justify-around:active{
    justify-content: space-around;
  }

  .s1920\:active\:justify-evenly:active{
    justify-content: space-evenly;
  }

  .s1920\:first\:justify-start:first-child{
    justify-content: flex-start;
  }

  .s1920\:first\:justify-end:first-child{
    justify-content: flex-end;
  }

  .s1920\:first\:justify-center:first-child{
    justify-content: center;
  }

  .s1920\:first\:justify-between:first-child{
    justify-content: space-between;
  }

  .s1920\:first\:justify-around:first-child{
    justify-content: space-around;
  }

  .s1920\:first\:justify-evenly:first-child{
    justify-content: space-evenly;
  }

  .s1920\:last\:justify-start:last-child{
    justify-content: flex-start;
  }

  .s1920\:last\:justify-end:last-child{
    justify-content: flex-end;
  }

  .s1920\:last\:justify-center:last-child{
    justify-content: center;
  }

  .s1920\:last\:justify-between:last-child{
    justify-content: space-between;
  }

  .s1920\:last\:justify-around:last-child{
    justify-content: space-around;
  }

  .s1920\:last\:justify-evenly:last-child{
    justify-content: space-evenly;
  }

  .s1920\:justify-self-auto{
    justify-self: auto;
  }

  .s1920\:justify-self-start{
    justify-self: start;
  }

  .s1920\:justify-self-end{
    justify-self: end;
  }

  .s1920\:justify-self-center{
    justify-self: center;
  }

  .s1920\:justify-self-stretch{
    justify-self: stretch;
  }

  .s1920\:hover\:justify-self-auto:hover{
    justify-self: auto;
  }

  .s1920\:hover\:justify-self-start:hover{
    justify-self: start;
  }

  .s1920\:hover\:justify-self-end:hover{
    justify-self: end;
  }

  .s1920\:hover\:justify-self-center:hover{
    justify-self: center;
  }

  .s1920\:hover\:justify-self-stretch:hover{
    justify-self: stretch;
  }

  .s1920\:focus\:justify-self-auto:focus{
    justify-self: auto;
  }

  .s1920\:focus\:justify-self-start:focus{
    justify-self: start;
  }

  .s1920\:focus\:justify-self-end:focus{
    justify-self: end;
  }

  .s1920\:focus\:justify-self-center:focus{
    justify-self: center;
  }

  .s1920\:focus\:justify-self-stretch:focus{
    justify-self: stretch;
  }

  .s1920\:active\:justify-self-auto:active{
    justify-self: auto;
  }

  .s1920\:active\:justify-self-start:active{
    justify-self: start;
  }

  .s1920\:active\:justify-self-end:active{
    justify-self: end;
  }

  .s1920\:active\:justify-self-center:active{
    justify-self: center;
  }

  .s1920\:active\:justify-self-stretch:active{
    justify-self: stretch;
  }

  .s1920\:first\:justify-self-auto:first-child{
    justify-self: auto;
  }

  .s1920\:first\:justify-self-start:first-child{
    justify-self: start;
  }

  .s1920\:first\:justify-self-end:first-child{
    justify-self: end;
  }

  .s1920\:first\:justify-self-center:first-child{
    justify-self: center;
  }

  .s1920\:first\:justify-self-stretch:first-child{
    justify-self: stretch;
  }

  .s1920\:last\:justify-self-auto:last-child{
    justify-self: auto;
  }

  .s1920\:last\:justify-self-start:last-child{
    justify-self: start;
  }

  .s1920\:last\:justify-self-end:last-child{
    justify-self: end;
  }

  .s1920\:last\:justify-self-center:last-child{
    justify-self: center;
  }

  .s1920\:last\:justify-self-stretch:last-child{
    justify-self: stretch;
  }

  .s1920\:flex-1{
    flex: 1 1 0%;
  }

  .s1920\:flex-auto{
    flex: 1 1 auto;
  }

  .s1920\:flex-initial{
    flex: 0 1 auto;
  }

  .s1920\:flex-none{
    flex: none;
  }

  .s1920\:hover\:flex-1:hover{
    flex: 1 1 0%;
  }

  .s1920\:hover\:flex-auto:hover{
    flex: 1 1 auto;
  }

  .s1920\:hover\:flex-initial:hover{
    flex: 0 1 auto;
  }

  .s1920\:hover\:flex-none:hover{
    flex: none;
  }

  .s1920\:focus\:flex-1:focus{
    flex: 1 1 0%;
  }

  .s1920\:focus\:flex-auto:focus{
    flex: 1 1 auto;
  }

  .s1920\:focus\:flex-initial:focus{
    flex: 0 1 auto;
  }

  .s1920\:focus\:flex-none:focus{
    flex: none;
  }

  .s1920\:active\:flex-1:active{
    flex: 1 1 0%;
  }

  .s1920\:active\:flex-auto:active{
    flex: 1 1 auto;
  }

  .s1920\:active\:flex-initial:active{
    flex: 0 1 auto;
  }

  .s1920\:active\:flex-none:active{
    flex: none;
  }

  .s1920\:first\:flex-1:first-child{
    flex: 1 1 0%;
  }

  .s1920\:first\:flex-auto:first-child{
    flex: 1 1 auto;
  }

  .s1920\:first\:flex-initial:first-child{
    flex: 0 1 auto;
  }

  .s1920\:first\:flex-none:first-child{
    flex: none;
  }

  .s1920\:last\:flex-1:last-child{
    flex: 1 1 0%;
  }

  .s1920\:last\:flex-auto:last-child{
    flex: 1 1 auto;
  }

  .s1920\:last\:flex-initial:last-child{
    flex: 0 1 auto;
  }

  .s1920\:last\:flex-none:last-child{
    flex: none;
  }

  .s1920\:flex-grow-0{
    flex-grow: 0;
  }

  .s1920\:flex-grow-2{
    flex-grow: 2;
  }

  .s1920\:flex-grow{
    flex-grow: 1;
  }

  .s1920\:hover\:flex-grow-0:hover{
    flex-grow: 0;
  }

  .s1920\:hover\:flex-grow-2:hover{
    flex-grow: 2;
  }

  .s1920\:hover\:flex-grow:hover{
    flex-grow: 1;
  }

  .s1920\:focus\:flex-grow-0:focus{
    flex-grow: 0;
  }

  .s1920\:focus\:flex-grow-2:focus{
    flex-grow: 2;
  }

  .s1920\:focus\:flex-grow:focus{
    flex-grow: 1;
  }

  .s1920\:active\:flex-grow-0:active{
    flex-grow: 0;
  }

  .s1920\:active\:flex-grow-2:active{
    flex-grow: 2;
  }

  .s1920\:active\:flex-grow:active{
    flex-grow: 1;
  }

  .s1920\:first\:flex-grow-0:first-child{
    flex-grow: 0;
  }

  .s1920\:first\:flex-grow-2:first-child{
    flex-grow: 2;
  }

  .s1920\:first\:flex-grow:first-child{
    flex-grow: 1;
  }

  .s1920\:last\:flex-grow-0:last-child{
    flex-grow: 0;
  }

  .s1920\:last\:flex-grow-2:last-child{
    flex-grow: 2;
  }

  .s1920\:last\:flex-grow:last-child{
    flex-grow: 1;
  }

  .s1920\:flex-shrink-0{
    flex-shrink: 0;
  }

  .s1920\:flex-shrink{
    flex-shrink: 1;
  }

  .s1920\:hover\:flex-shrink-0:hover{
    flex-shrink: 0;
  }

  .s1920\:hover\:flex-shrink:hover{
    flex-shrink: 1;
  }

  .s1920\:focus\:flex-shrink-0:focus{
    flex-shrink: 0;
  }

  .s1920\:focus\:flex-shrink:focus{
    flex-shrink: 1;
  }

  .s1920\:active\:flex-shrink-0:active{
    flex-shrink: 0;
  }

  .s1920\:active\:flex-shrink:active{
    flex-shrink: 1;
  }

  .s1920\:first\:flex-shrink-0:first-child{
    flex-shrink: 0;
  }

  .s1920\:first\:flex-shrink:first-child{
    flex-shrink: 1;
  }

  .s1920\:last\:flex-shrink-0:last-child{
    flex-shrink: 0;
  }

  .s1920\:last\:flex-shrink:last-child{
    flex-shrink: 1;
  }

  .s1920\:order-1{
    order: 1;
  }

  .s1920\:order-2{
    order: 2;
  }

  .s1920\:order-3{
    order: 3;
  }

  .s1920\:order-4{
    order: 4;
  }

  .s1920\:order-5{
    order: 5;
  }

  .s1920\:order-6{
    order: 6;
  }

  .s1920\:order-7{
    order: 7;
  }

  .s1920\:order-8{
    order: 8;
  }

  .s1920\:order-9{
    order: 9;
  }

  .s1920\:order-10{
    order: 10;
  }

  .s1920\:order-11{
    order: 11;
  }

  .s1920\:order-12{
    order: 12;
  }

  .s1920\:order-first{
    order: -9999;
  }

  .s1920\:order-last{
    order: 9999;
  }

  .s1920\:order-none{
    order: 0;
  }

  .s1920\:hover\:order-1:hover{
    order: 1;
  }

  .s1920\:hover\:order-2:hover{
    order: 2;
  }

  .s1920\:hover\:order-3:hover{
    order: 3;
  }

  .s1920\:hover\:order-4:hover{
    order: 4;
  }

  .s1920\:hover\:order-5:hover{
    order: 5;
  }

  .s1920\:hover\:order-6:hover{
    order: 6;
  }

  .s1920\:hover\:order-7:hover{
    order: 7;
  }

  .s1920\:hover\:order-8:hover{
    order: 8;
  }

  .s1920\:hover\:order-9:hover{
    order: 9;
  }

  .s1920\:hover\:order-10:hover{
    order: 10;
  }

  .s1920\:hover\:order-11:hover{
    order: 11;
  }

  .s1920\:hover\:order-12:hover{
    order: 12;
  }

  .s1920\:hover\:order-first:hover{
    order: -9999;
  }

  .s1920\:hover\:order-last:hover{
    order: 9999;
  }

  .s1920\:hover\:order-none:hover{
    order: 0;
  }

  .s1920\:focus\:order-1:focus{
    order: 1;
  }

  .s1920\:focus\:order-2:focus{
    order: 2;
  }

  .s1920\:focus\:order-3:focus{
    order: 3;
  }

  .s1920\:focus\:order-4:focus{
    order: 4;
  }

  .s1920\:focus\:order-5:focus{
    order: 5;
  }

  .s1920\:focus\:order-6:focus{
    order: 6;
  }

  .s1920\:focus\:order-7:focus{
    order: 7;
  }

  .s1920\:focus\:order-8:focus{
    order: 8;
  }

  .s1920\:focus\:order-9:focus{
    order: 9;
  }

  .s1920\:focus\:order-10:focus{
    order: 10;
  }

  .s1920\:focus\:order-11:focus{
    order: 11;
  }

  .s1920\:focus\:order-12:focus{
    order: 12;
  }

  .s1920\:focus\:order-first:focus{
    order: -9999;
  }

  .s1920\:focus\:order-last:focus{
    order: 9999;
  }

  .s1920\:focus\:order-none:focus{
    order: 0;
  }

  .s1920\:active\:order-1:active{
    order: 1;
  }

  .s1920\:active\:order-2:active{
    order: 2;
  }

  .s1920\:active\:order-3:active{
    order: 3;
  }

  .s1920\:active\:order-4:active{
    order: 4;
  }

  .s1920\:active\:order-5:active{
    order: 5;
  }

  .s1920\:active\:order-6:active{
    order: 6;
  }

  .s1920\:active\:order-7:active{
    order: 7;
  }

  .s1920\:active\:order-8:active{
    order: 8;
  }

  .s1920\:active\:order-9:active{
    order: 9;
  }

  .s1920\:active\:order-10:active{
    order: 10;
  }

  .s1920\:active\:order-11:active{
    order: 11;
  }

  .s1920\:active\:order-12:active{
    order: 12;
  }

  .s1920\:active\:order-first:active{
    order: -9999;
  }

  .s1920\:active\:order-last:active{
    order: 9999;
  }

  .s1920\:active\:order-none:active{
    order: 0;
  }

  .s1920\:first\:order-1:first-child{
    order: 1;
  }

  .s1920\:first\:order-2:first-child{
    order: 2;
  }

  .s1920\:first\:order-3:first-child{
    order: 3;
  }

  .s1920\:first\:order-4:first-child{
    order: 4;
  }

  .s1920\:first\:order-5:first-child{
    order: 5;
  }

  .s1920\:first\:order-6:first-child{
    order: 6;
  }

  .s1920\:first\:order-7:first-child{
    order: 7;
  }

  .s1920\:first\:order-8:first-child{
    order: 8;
  }

  .s1920\:first\:order-9:first-child{
    order: 9;
  }

  .s1920\:first\:order-10:first-child{
    order: 10;
  }

  .s1920\:first\:order-11:first-child{
    order: 11;
  }

  .s1920\:first\:order-12:first-child{
    order: 12;
  }

  .s1920\:first\:order-first:first-child{
    order: -9999;
  }

  .s1920\:first\:order-last:first-child{
    order: 9999;
  }

  .s1920\:first\:order-none:first-child{
    order: 0;
  }

  .s1920\:last\:order-1:last-child{
    order: 1;
  }

  .s1920\:last\:order-2:last-child{
    order: 2;
  }

  .s1920\:last\:order-3:last-child{
    order: 3;
  }

  .s1920\:last\:order-4:last-child{
    order: 4;
  }

  .s1920\:last\:order-5:last-child{
    order: 5;
  }

  .s1920\:last\:order-6:last-child{
    order: 6;
  }

  .s1920\:last\:order-7:last-child{
    order: 7;
  }

  .s1920\:last\:order-8:last-child{
    order: 8;
  }

  .s1920\:last\:order-9:last-child{
    order: 9;
  }

  .s1920\:last\:order-10:last-child{
    order: 10;
  }

  .s1920\:last\:order-11:last-child{
    order: 11;
  }

  .s1920\:last\:order-12:last-child{
    order: 12;
  }

  .s1920\:last\:order-first:last-child{
    order: -9999;
  }

  .s1920\:last\:order-last:last-child{
    order: 9999;
  }

  .s1920\:last\:order-none:last-child{
    order: 0;
  }

  .s1920\:float-right{
    float: right;
  }

  .s1920\:float-left{
    float: left;
  }

  .s1920\:float-none{
    float: none;
  }

  .s1920\:clearfix:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1920\:hover\:float-right:hover{
    float: right;
  }

  .s1920\:hover\:float-left:hover{
    float: left;
  }

  .s1920\:hover\:float-none:hover{
    float: none;
  }

  .s1920\:hover\:clearfix:hover:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1920\:focus\:float-right:focus{
    float: right;
  }

  .s1920\:focus\:float-left:focus{
    float: left;
  }

  .s1920\:focus\:float-none:focus{
    float: none;
  }

  .s1920\:focus\:clearfix:focus:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1920\:active\:float-right:active{
    float: right;
  }

  .s1920\:active\:float-left:active{
    float: left;
  }

  .s1920\:active\:float-none:active{
    float: none;
  }

  .s1920\:active\:clearfix:active:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1920\:first\:float-right:first-child{
    float: right;
  }

  .s1920\:first\:float-left:first-child{
    float: left;
  }

  .s1920\:first\:float-none:first-child{
    float: none;
  }

  .s1920\:first\:clearfix:first-child:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1920\:last\:float-right:last-child{
    float: right;
  }

  .s1920\:last\:float-left:last-child{
    float: left;
  }

  .s1920\:last\:float-none:last-child{
    float: none;
  }

  .s1920\:last\:clearfix:last-child:after{
    content: "";
    display: table;
    clear: both;
  }

  .s1920\:clear-left{
    clear: left;
  }

  .s1920\:clear-right{
    clear: right;
  }

  .s1920\:clear-both{
    clear: both;
  }

  .s1920\:clear-none{
    clear: none;
  }

  .s1920\:hover\:clear-left:hover{
    clear: left;
  }

  .s1920\:hover\:clear-right:hover{
    clear: right;
  }

  .s1920\:hover\:clear-both:hover{
    clear: both;
  }

  .s1920\:hover\:clear-none:hover{
    clear: none;
  }

  .s1920\:focus\:clear-left:focus{
    clear: left;
  }

  .s1920\:focus\:clear-right:focus{
    clear: right;
  }

  .s1920\:focus\:clear-both:focus{
    clear: both;
  }

  .s1920\:focus\:clear-none:focus{
    clear: none;
  }

  .s1920\:active\:clear-left:active{
    clear: left;
  }

  .s1920\:active\:clear-right:active{
    clear: right;
  }

  .s1920\:active\:clear-both:active{
    clear: both;
  }

  .s1920\:active\:clear-none:active{
    clear: none;
  }

  .s1920\:first\:clear-left:first-child{
    clear: left;
  }

  .s1920\:first\:clear-right:first-child{
    clear: right;
  }

  .s1920\:first\:clear-both:first-child{
    clear: both;
  }

  .s1920\:first\:clear-none:first-child{
    clear: none;
  }

  .s1920\:last\:clear-left:last-child{
    clear: left;
  }

  .s1920\:last\:clear-right:last-child{
    clear: right;
  }

  .s1920\:last\:clear-both:last-child{
    clear: both;
  }

  .s1920\:last\:clear-none:last-child{
    clear: none;
  }

  .s1920\:font-moderat{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1920\:font-brown-pro{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1920\:font-print{
    font-family: Bianco Sans;
  }

  .s1920\:font-print-serif{
    font-family: Bianco Serif;
  }

  .s1920\:hover\:font-moderat:hover{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1920\:hover\:font-brown-pro:hover{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1920\:hover\:font-print:hover{
    font-family: Bianco Sans;
  }

  .s1920\:hover\:font-print-serif:hover{
    font-family: Bianco Serif;
  }

  .s1920\:focus\:font-moderat:focus{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1920\:focus\:font-brown-pro:focus{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1920\:focus\:font-print:focus{
    font-family: Bianco Sans;
  }

  .s1920\:focus\:font-print-serif:focus{
    font-family: Bianco Serif;
  }

  .s1920\:active\:font-moderat:active{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1920\:active\:font-brown-pro:active{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1920\:active\:font-print:active{
    font-family: Bianco Sans;
  }

  .s1920\:active\:font-print-serif:active{
    font-family: Bianco Serif;
  }

  .s1920\:first\:font-moderat:first-child{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1920\:first\:font-brown-pro:first-child{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1920\:first\:font-print:first-child{
    font-family: Bianco Sans;
  }

  .s1920\:first\:font-print-serif:first-child{
    font-family: Bianco Serif;
  }

  .s1920\:last\:font-moderat:last-child{
    font-family: Moderat, Helvetica, sans-serif;
  }

  .s1920\:last\:font-brown-pro:last-child{
    font-family: Brown, Helvetica, sans-serif;
  }

  .s1920\:last\:font-print:last-child{
    font-family: Bianco Sans;
  }

  .s1920\:last\:font-print-serif:last-child{
    font-family: Bianco Serif;
  }

  .s1920\:font-hairline{
    font-weight: 100;
  }

  .s1920\:font-thin{
    font-weight: 200;
  }

  .s1920\:font-light{
    font-weight: 300;
  }

  .s1920\:font-normal{
    font-weight: 400;
  }

  .s1920\:font-medium{
    font-weight: 500;
  }

  .s1920\:font-semibold{
    font-weight: 600;
  }

  .s1920\:font-bold{
    font-weight: 700;
  }

  .s1920\:font-extrabold{
    font-weight: 800;
  }

  .s1920\:font-black{
    font-weight: 900;
  }

  .s1920\:hover\:font-hairline:hover{
    font-weight: 100;
  }

  .s1920\:hover\:font-thin:hover{
    font-weight: 200;
  }

  .s1920\:hover\:font-light:hover{
    font-weight: 300;
  }

  .s1920\:hover\:font-normal:hover{
    font-weight: 400;
  }

  .s1920\:hover\:font-medium:hover{
    font-weight: 500;
  }

  .s1920\:hover\:font-semibold:hover{
    font-weight: 600;
  }

  .s1920\:hover\:font-bold:hover{
    font-weight: 700;
  }

  .s1920\:hover\:font-extrabold:hover{
    font-weight: 800;
  }

  .s1920\:hover\:font-black:hover{
    font-weight: 900;
  }

  .s1920\:focus\:font-hairline:focus{
    font-weight: 100;
  }

  .s1920\:focus\:font-thin:focus{
    font-weight: 200;
  }

  .s1920\:focus\:font-light:focus{
    font-weight: 300;
  }

  .s1920\:focus\:font-normal:focus{
    font-weight: 400;
  }

  .s1920\:focus\:font-medium:focus{
    font-weight: 500;
  }

  .s1920\:focus\:font-semibold:focus{
    font-weight: 600;
  }

  .s1920\:focus\:font-bold:focus{
    font-weight: 700;
  }

  .s1920\:focus\:font-extrabold:focus{
    font-weight: 800;
  }

  .s1920\:focus\:font-black:focus{
    font-weight: 900;
  }

  .s1920\:active\:font-hairline:active{
    font-weight: 100;
  }

  .s1920\:active\:font-thin:active{
    font-weight: 200;
  }

  .s1920\:active\:font-light:active{
    font-weight: 300;
  }

  .s1920\:active\:font-normal:active{
    font-weight: 400;
  }

  .s1920\:active\:font-medium:active{
    font-weight: 500;
  }

  .s1920\:active\:font-semibold:active{
    font-weight: 600;
  }

  .s1920\:active\:font-bold:active{
    font-weight: 700;
  }

  .s1920\:active\:font-extrabold:active{
    font-weight: 800;
  }

  .s1920\:active\:font-black:active{
    font-weight: 900;
  }

  .s1920\:first\:font-hairline:first-child{
    font-weight: 100;
  }

  .s1920\:first\:font-thin:first-child{
    font-weight: 200;
  }

  .s1920\:first\:font-light:first-child{
    font-weight: 300;
  }

  .s1920\:first\:font-normal:first-child{
    font-weight: 400;
  }

  .s1920\:first\:font-medium:first-child{
    font-weight: 500;
  }

  .s1920\:first\:font-semibold:first-child{
    font-weight: 600;
  }

  .s1920\:first\:font-bold:first-child{
    font-weight: 700;
  }

  .s1920\:first\:font-extrabold:first-child{
    font-weight: 800;
  }

  .s1920\:first\:font-black:first-child{
    font-weight: 900;
  }

  .s1920\:last\:font-hairline:last-child{
    font-weight: 100;
  }

  .s1920\:last\:font-thin:last-child{
    font-weight: 200;
  }

  .s1920\:last\:font-light:last-child{
    font-weight: 300;
  }

  .s1920\:last\:font-normal:last-child{
    font-weight: 400;
  }

  .s1920\:last\:font-medium:last-child{
    font-weight: 500;
  }

  .s1920\:last\:font-semibold:last-child{
    font-weight: 600;
  }

  .s1920\:last\:font-bold:last-child{
    font-weight: 700;
  }

  .s1920\:last\:font-extrabold:last-child{
    font-weight: 800;
  }

  .s1920\:last\:font-black:last-child{
    font-weight: 900;
  }

  .s1920\:h-0{
    height: 0;
  }

  .s1920\:h-1{
    height: 0.25rem;
  }

  .s1920\:h-2{
    height: 0.5rem;
  }

  .s1920\:h-3{
    height: 0.75rem;
  }

  .s1920\:h-4{
    height: 1rem;
  }

  .s1920\:h-5{
    height: 1.25rem;
  }

  .s1920\:h-6{
    height: 1.5rem;
  }

  .s1920\:h-8{
    height: 2rem;
  }

  .s1920\:h-10{
    height: 2.5rem;
  }

  .s1920\:h-12{
    height: 3rem;
  }

  .s1920\:h-14{
    height: 3.5rem;
  }

  .s1920\:h-16{
    height: 4rem;
  }

  .s1920\:h-20{
    height: 5rem;
  }

  .s1920\:h-24{
    height: 6rem;
  }

  .s1920\:h-28{
    height: 7rem;
  }

  .s1920\:h-32{
    height: 8rem;
  }

  .s1920\:h-40{
    height: 10rem;
  }

  .s1920\:h-48{
    height: 12rem;
  }

  .s1920\:h-56{
    height: 14rem;
  }

  .s1920\:h-64{
    height: 16rem;
  }

  .s1920\:h-auto{
    height: auto;
  }

  .s1920\:h-px{
    height: 1px;
  }

  .s1920\:h-full{
    height: 100%;
  }

  .s1920\:h-screen{
    height: 100vh;
  }

  .s1920\:hover\:h-0:hover{
    height: 0;
  }

  .s1920\:hover\:h-1:hover{
    height: 0.25rem;
  }

  .s1920\:hover\:h-2:hover{
    height: 0.5rem;
  }

  .s1920\:hover\:h-3:hover{
    height: 0.75rem;
  }

  .s1920\:hover\:h-4:hover{
    height: 1rem;
  }

  .s1920\:hover\:h-5:hover{
    height: 1.25rem;
  }

  .s1920\:hover\:h-6:hover{
    height: 1.5rem;
  }

  .s1920\:hover\:h-8:hover{
    height: 2rem;
  }

  .s1920\:hover\:h-10:hover{
    height: 2.5rem;
  }

  .s1920\:hover\:h-12:hover{
    height: 3rem;
  }

  .s1920\:hover\:h-14:hover{
    height: 3.5rem;
  }

  .s1920\:hover\:h-16:hover{
    height: 4rem;
  }

  .s1920\:hover\:h-20:hover{
    height: 5rem;
  }

  .s1920\:hover\:h-24:hover{
    height: 6rem;
  }

  .s1920\:hover\:h-28:hover{
    height: 7rem;
  }

  .s1920\:hover\:h-32:hover{
    height: 8rem;
  }

  .s1920\:hover\:h-40:hover{
    height: 10rem;
  }

  .s1920\:hover\:h-48:hover{
    height: 12rem;
  }

  .s1920\:hover\:h-56:hover{
    height: 14rem;
  }

  .s1920\:hover\:h-64:hover{
    height: 16rem;
  }

  .s1920\:hover\:h-auto:hover{
    height: auto;
  }

  .s1920\:hover\:h-px:hover{
    height: 1px;
  }

  .s1920\:hover\:h-full:hover{
    height: 100%;
  }

  .s1920\:hover\:h-screen:hover{
    height: 100vh;
  }

  .s1920\:focus\:h-0:focus{
    height: 0;
  }

  .s1920\:focus\:h-1:focus{
    height: 0.25rem;
  }

  .s1920\:focus\:h-2:focus{
    height: 0.5rem;
  }

  .s1920\:focus\:h-3:focus{
    height: 0.75rem;
  }

  .s1920\:focus\:h-4:focus{
    height: 1rem;
  }

  .s1920\:focus\:h-5:focus{
    height: 1.25rem;
  }

  .s1920\:focus\:h-6:focus{
    height: 1.5rem;
  }

  .s1920\:focus\:h-8:focus{
    height: 2rem;
  }

  .s1920\:focus\:h-10:focus{
    height: 2.5rem;
  }

  .s1920\:focus\:h-12:focus{
    height: 3rem;
  }

  .s1920\:focus\:h-14:focus{
    height: 3.5rem;
  }

  .s1920\:focus\:h-16:focus{
    height: 4rem;
  }

  .s1920\:focus\:h-20:focus{
    height: 5rem;
  }

  .s1920\:focus\:h-24:focus{
    height: 6rem;
  }

  .s1920\:focus\:h-28:focus{
    height: 7rem;
  }

  .s1920\:focus\:h-32:focus{
    height: 8rem;
  }

  .s1920\:focus\:h-40:focus{
    height: 10rem;
  }

  .s1920\:focus\:h-48:focus{
    height: 12rem;
  }

  .s1920\:focus\:h-56:focus{
    height: 14rem;
  }

  .s1920\:focus\:h-64:focus{
    height: 16rem;
  }

  .s1920\:focus\:h-auto:focus{
    height: auto;
  }

  .s1920\:focus\:h-px:focus{
    height: 1px;
  }

  .s1920\:focus\:h-full:focus{
    height: 100%;
  }

  .s1920\:focus\:h-screen:focus{
    height: 100vh;
  }

  .s1920\:active\:h-0:active{
    height: 0;
  }

  .s1920\:active\:h-1:active{
    height: 0.25rem;
  }

  .s1920\:active\:h-2:active{
    height: 0.5rem;
  }

  .s1920\:active\:h-3:active{
    height: 0.75rem;
  }

  .s1920\:active\:h-4:active{
    height: 1rem;
  }

  .s1920\:active\:h-5:active{
    height: 1.25rem;
  }

  .s1920\:active\:h-6:active{
    height: 1.5rem;
  }

  .s1920\:active\:h-8:active{
    height: 2rem;
  }

  .s1920\:active\:h-10:active{
    height: 2.5rem;
  }

  .s1920\:active\:h-12:active{
    height: 3rem;
  }

  .s1920\:active\:h-14:active{
    height: 3.5rem;
  }

  .s1920\:active\:h-16:active{
    height: 4rem;
  }

  .s1920\:active\:h-20:active{
    height: 5rem;
  }

  .s1920\:active\:h-24:active{
    height: 6rem;
  }

  .s1920\:active\:h-28:active{
    height: 7rem;
  }

  .s1920\:active\:h-32:active{
    height: 8rem;
  }

  .s1920\:active\:h-40:active{
    height: 10rem;
  }

  .s1920\:active\:h-48:active{
    height: 12rem;
  }

  .s1920\:active\:h-56:active{
    height: 14rem;
  }

  .s1920\:active\:h-64:active{
    height: 16rem;
  }

  .s1920\:active\:h-auto:active{
    height: auto;
  }

  .s1920\:active\:h-px:active{
    height: 1px;
  }

  .s1920\:active\:h-full:active{
    height: 100%;
  }

  .s1920\:active\:h-screen:active{
    height: 100vh;
  }

  .s1920\:first\:h-0:first-child{
    height: 0;
  }

  .s1920\:first\:h-1:first-child{
    height: 0.25rem;
  }

  .s1920\:first\:h-2:first-child{
    height: 0.5rem;
  }

  .s1920\:first\:h-3:first-child{
    height: 0.75rem;
  }

  .s1920\:first\:h-4:first-child{
    height: 1rem;
  }

  .s1920\:first\:h-5:first-child{
    height: 1.25rem;
  }

  .s1920\:first\:h-6:first-child{
    height: 1.5rem;
  }

  .s1920\:first\:h-8:first-child{
    height: 2rem;
  }

  .s1920\:first\:h-10:first-child{
    height: 2.5rem;
  }

  .s1920\:first\:h-12:first-child{
    height: 3rem;
  }

  .s1920\:first\:h-14:first-child{
    height: 3.5rem;
  }

  .s1920\:first\:h-16:first-child{
    height: 4rem;
  }

  .s1920\:first\:h-20:first-child{
    height: 5rem;
  }

  .s1920\:first\:h-24:first-child{
    height: 6rem;
  }

  .s1920\:first\:h-28:first-child{
    height: 7rem;
  }

  .s1920\:first\:h-32:first-child{
    height: 8rem;
  }

  .s1920\:first\:h-40:first-child{
    height: 10rem;
  }

  .s1920\:first\:h-48:first-child{
    height: 12rem;
  }

  .s1920\:first\:h-56:first-child{
    height: 14rem;
  }

  .s1920\:first\:h-64:first-child{
    height: 16rem;
  }

  .s1920\:first\:h-auto:first-child{
    height: auto;
  }

  .s1920\:first\:h-px:first-child{
    height: 1px;
  }

  .s1920\:first\:h-full:first-child{
    height: 100%;
  }

  .s1920\:first\:h-screen:first-child{
    height: 100vh;
  }

  .s1920\:last\:h-0:last-child{
    height: 0;
  }

  .s1920\:last\:h-1:last-child{
    height: 0.25rem;
  }

  .s1920\:last\:h-2:last-child{
    height: 0.5rem;
  }

  .s1920\:last\:h-3:last-child{
    height: 0.75rem;
  }

  .s1920\:last\:h-4:last-child{
    height: 1rem;
  }

  .s1920\:last\:h-5:last-child{
    height: 1.25rem;
  }

  .s1920\:last\:h-6:last-child{
    height: 1.5rem;
  }

  .s1920\:last\:h-8:last-child{
    height: 2rem;
  }

  .s1920\:last\:h-10:last-child{
    height: 2.5rem;
  }

  .s1920\:last\:h-12:last-child{
    height: 3rem;
  }

  .s1920\:last\:h-14:last-child{
    height: 3.5rem;
  }

  .s1920\:last\:h-16:last-child{
    height: 4rem;
  }

  .s1920\:last\:h-20:last-child{
    height: 5rem;
  }

  .s1920\:last\:h-24:last-child{
    height: 6rem;
  }

  .s1920\:last\:h-28:last-child{
    height: 7rem;
  }

  .s1920\:last\:h-32:last-child{
    height: 8rem;
  }

  .s1920\:last\:h-40:last-child{
    height: 10rem;
  }

  .s1920\:last\:h-48:last-child{
    height: 12rem;
  }

  .s1920\:last\:h-56:last-child{
    height: 14rem;
  }

  .s1920\:last\:h-64:last-child{
    height: 16rem;
  }

  .s1920\:last\:h-auto:last-child{
    height: auto;
  }

  .s1920\:last\:h-px:last-child{
    height: 1px;
  }

  .s1920\:last\:h-full:last-child{
    height: 100%;
  }

  .s1920\:last\:h-screen:last-child{
    height: 100vh;
  }

  .s1920\:text-xxxxxs{
    font-size: 0.3125rem;
  }

  .s1920\:text-xxxxs{
    font-size: 0.375rem;
  }

  .s1920\:text-xxxs{
    font-size: 0.5rem;
  }

  .s1920\:text-xxs{
    font-size: 0.625rem;
  }

  .s1920\:text-xs{
    font-size: 0.75rem;
  }

  .s1920\:text-sm{
    font-size: 0.875rem;
  }

  .s1920\:text-base{
    font-size: 1rem;
  }

  .s1920\:text-lg{
    font-size: 1.125rem;
  }

  .s1920\:text-xl{
    font-size: 1.5rem;
  }

  .s1920\:text-2xl{
    font-size: 2rem;
  }

  .s1920\:text-3xl{
    font-size: 3rem;
  }

  .s1920\:text-4xl{
    font-size: 3.75rem;
  }

  .s1920\:text-5xl{
    font-size: 6rem;
  }

  .s1920\:hover\:text-xxxxxs:hover{
    font-size: 0.3125rem;
  }

  .s1920\:hover\:text-xxxxs:hover{
    font-size: 0.375rem;
  }

  .s1920\:hover\:text-xxxs:hover{
    font-size: 0.5rem;
  }

  .s1920\:hover\:text-xxs:hover{
    font-size: 0.625rem;
  }

  .s1920\:hover\:text-xs:hover{
    font-size: 0.75rem;
  }

  .s1920\:hover\:text-sm:hover{
    font-size: 0.875rem;
  }

  .s1920\:hover\:text-base:hover{
    font-size: 1rem;
  }

  .s1920\:hover\:text-lg:hover{
    font-size: 1.125rem;
  }

  .s1920\:hover\:text-xl:hover{
    font-size: 1.5rem;
  }

  .s1920\:hover\:text-2xl:hover{
    font-size: 2rem;
  }

  .s1920\:hover\:text-3xl:hover{
    font-size: 3rem;
  }

  .s1920\:hover\:text-4xl:hover{
    font-size: 3.75rem;
  }

  .s1920\:hover\:text-5xl:hover{
    font-size: 6rem;
  }

  .s1920\:focus\:text-xxxxxs:focus{
    font-size: 0.3125rem;
  }

  .s1920\:focus\:text-xxxxs:focus{
    font-size: 0.375rem;
  }

  .s1920\:focus\:text-xxxs:focus{
    font-size: 0.5rem;
  }

  .s1920\:focus\:text-xxs:focus{
    font-size: 0.625rem;
  }

  .s1920\:focus\:text-xs:focus{
    font-size: 0.75rem;
  }

  .s1920\:focus\:text-sm:focus{
    font-size: 0.875rem;
  }

  .s1920\:focus\:text-base:focus{
    font-size: 1rem;
  }

  .s1920\:focus\:text-lg:focus{
    font-size: 1.125rem;
  }

  .s1920\:focus\:text-xl:focus{
    font-size: 1.5rem;
  }

  .s1920\:focus\:text-2xl:focus{
    font-size: 2rem;
  }

  .s1920\:focus\:text-3xl:focus{
    font-size: 3rem;
  }

  .s1920\:focus\:text-4xl:focus{
    font-size: 3.75rem;
  }

  .s1920\:focus\:text-5xl:focus{
    font-size: 6rem;
  }

  .s1920\:active\:text-xxxxxs:active{
    font-size: 0.3125rem;
  }

  .s1920\:active\:text-xxxxs:active{
    font-size: 0.375rem;
  }

  .s1920\:active\:text-xxxs:active{
    font-size: 0.5rem;
  }

  .s1920\:active\:text-xxs:active{
    font-size: 0.625rem;
  }

  .s1920\:active\:text-xs:active{
    font-size: 0.75rem;
  }

  .s1920\:active\:text-sm:active{
    font-size: 0.875rem;
  }

  .s1920\:active\:text-base:active{
    font-size: 1rem;
  }

  .s1920\:active\:text-lg:active{
    font-size: 1.125rem;
  }

  .s1920\:active\:text-xl:active{
    font-size: 1.5rem;
  }

  .s1920\:active\:text-2xl:active{
    font-size: 2rem;
  }

  .s1920\:active\:text-3xl:active{
    font-size: 3rem;
  }

  .s1920\:active\:text-4xl:active{
    font-size: 3.75rem;
  }

  .s1920\:active\:text-5xl:active{
    font-size: 6rem;
  }

  .s1920\:first\:text-xxxxxs:first-child{
    font-size: 0.3125rem;
  }

  .s1920\:first\:text-xxxxs:first-child{
    font-size: 0.375rem;
  }

  .s1920\:first\:text-xxxs:first-child{
    font-size: 0.5rem;
  }

  .s1920\:first\:text-xxs:first-child{
    font-size: 0.625rem;
  }

  .s1920\:first\:text-xs:first-child{
    font-size: 0.75rem;
  }

  .s1920\:first\:text-sm:first-child{
    font-size: 0.875rem;
  }

  .s1920\:first\:text-base:first-child{
    font-size: 1rem;
  }

  .s1920\:first\:text-lg:first-child{
    font-size: 1.125rem;
  }

  .s1920\:first\:text-xl:first-child{
    font-size: 1.5rem;
  }

  .s1920\:first\:text-2xl:first-child{
    font-size: 2rem;
  }

  .s1920\:first\:text-3xl:first-child{
    font-size: 3rem;
  }

  .s1920\:first\:text-4xl:first-child{
    font-size: 3.75rem;
  }

  .s1920\:first\:text-5xl:first-child{
    font-size: 6rem;
  }

  .s1920\:last\:text-xxxxxs:last-child{
    font-size: 0.3125rem;
  }

  .s1920\:last\:text-xxxxs:last-child{
    font-size: 0.375rem;
  }

  .s1920\:last\:text-xxxs:last-child{
    font-size: 0.5rem;
  }

  .s1920\:last\:text-xxs:last-child{
    font-size: 0.625rem;
  }

  .s1920\:last\:text-xs:last-child{
    font-size: 0.75rem;
  }

  .s1920\:last\:text-sm:last-child{
    font-size: 0.875rem;
  }

  .s1920\:last\:text-base:last-child{
    font-size: 1rem;
  }

  .s1920\:last\:text-lg:last-child{
    font-size: 1.125rem;
  }

  .s1920\:last\:text-xl:last-child{
    font-size: 1.5rem;
  }

  .s1920\:last\:text-2xl:last-child{
    font-size: 2rem;
  }

  .s1920\:last\:text-3xl:last-child{
    font-size: 3rem;
  }

  .s1920\:last\:text-4xl:last-child{
    font-size: 3.75rem;
  }

  .s1920\:last\:text-5xl:last-child{
    font-size: 6rem;
  }

  .s1920\:leading-3{
    line-height: .75rem;
  }

  .s1920\:leading-4{
    line-height: 1rem;
  }

  .s1920\:leading-5{
    line-height: 1.25rem;
  }

  .s1920\:leading-6{
    line-height: 1.5rem;
  }

  .s1920\:leading-7{
    line-height: 1.75rem;
  }

  .s1920\:leading-8{
    line-height: 2rem;
  }

  .s1920\:leading-9{
    line-height: 2.25rem;
  }

  .s1920\:leading-10{
    line-height: 2.5rem;
  }

  .s1920\:leading-none{
    line-height: 1;
  }

  .s1920\:leading-tight{
    line-height: 1;
  }

  .s1920\:leading-snug{
    line-height: 1.375;
  }

  .s1920\:leading-normal{
    line-height: 1.5;
  }

  .s1920\:leading-relaxed{
    line-height: 1.625;
  }

  .s1920\:leading-loose{
    line-height: 2;
  }

  .s1920\:leading-error{
    line-height: 1.333;
  }

  .s1920\:hover\:leading-3:hover{
    line-height: .75rem;
  }

  .s1920\:hover\:leading-4:hover{
    line-height: 1rem;
  }

  .s1920\:hover\:leading-5:hover{
    line-height: 1.25rem;
  }

  .s1920\:hover\:leading-6:hover{
    line-height: 1.5rem;
  }

  .s1920\:hover\:leading-7:hover{
    line-height: 1.75rem;
  }

  .s1920\:hover\:leading-8:hover{
    line-height: 2rem;
  }

  .s1920\:hover\:leading-9:hover{
    line-height: 2.25rem;
  }

  .s1920\:hover\:leading-10:hover{
    line-height: 2.5rem;
  }

  .s1920\:hover\:leading-none:hover{
    line-height: 1;
  }

  .s1920\:hover\:leading-tight:hover{
    line-height: 1;
  }

  .s1920\:hover\:leading-snug:hover{
    line-height: 1.375;
  }

  .s1920\:hover\:leading-normal:hover{
    line-height: 1.5;
  }

  .s1920\:hover\:leading-relaxed:hover{
    line-height: 1.625;
  }

  .s1920\:hover\:leading-loose:hover{
    line-height: 2;
  }

  .s1920\:hover\:leading-error:hover{
    line-height: 1.333;
  }

  .s1920\:focus\:leading-3:focus{
    line-height: .75rem;
  }

  .s1920\:focus\:leading-4:focus{
    line-height: 1rem;
  }

  .s1920\:focus\:leading-5:focus{
    line-height: 1.25rem;
  }

  .s1920\:focus\:leading-6:focus{
    line-height: 1.5rem;
  }

  .s1920\:focus\:leading-7:focus{
    line-height: 1.75rem;
  }

  .s1920\:focus\:leading-8:focus{
    line-height: 2rem;
  }

  .s1920\:focus\:leading-9:focus{
    line-height: 2.25rem;
  }

  .s1920\:focus\:leading-10:focus{
    line-height: 2.5rem;
  }

  .s1920\:focus\:leading-none:focus{
    line-height: 1;
  }

  .s1920\:focus\:leading-tight:focus{
    line-height: 1;
  }

  .s1920\:focus\:leading-snug:focus{
    line-height: 1.375;
  }

  .s1920\:focus\:leading-normal:focus{
    line-height: 1.5;
  }

  .s1920\:focus\:leading-relaxed:focus{
    line-height: 1.625;
  }

  .s1920\:focus\:leading-loose:focus{
    line-height: 2;
  }

  .s1920\:focus\:leading-error:focus{
    line-height: 1.333;
  }

  .s1920\:active\:leading-3:active{
    line-height: .75rem;
  }

  .s1920\:active\:leading-4:active{
    line-height: 1rem;
  }

  .s1920\:active\:leading-5:active{
    line-height: 1.25rem;
  }

  .s1920\:active\:leading-6:active{
    line-height: 1.5rem;
  }

  .s1920\:active\:leading-7:active{
    line-height: 1.75rem;
  }

  .s1920\:active\:leading-8:active{
    line-height: 2rem;
  }

  .s1920\:active\:leading-9:active{
    line-height: 2.25rem;
  }

  .s1920\:active\:leading-10:active{
    line-height: 2.5rem;
  }

  .s1920\:active\:leading-none:active{
    line-height: 1;
  }

  .s1920\:active\:leading-tight:active{
    line-height: 1;
  }

  .s1920\:active\:leading-snug:active{
    line-height: 1.375;
  }

  .s1920\:active\:leading-normal:active{
    line-height: 1.5;
  }

  .s1920\:active\:leading-relaxed:active{
    line-height: 1.625;
  }

  .s1920\:active\:leading-loose:active{
    line-height: 2;
  }

  .s1920\:active\:leading-error:active{
    line-height: 1.333;
  }

  .s1920\:first\:leading-3:first-child{
    line-height: .75rem;
  }

  .s1920\:first\:leading-4:first-child{
    line-height: 1rem;
  }

  .s1920\:first\:leading-5:first-child{
    line-height: 1.25rem;
  }

  .s1920\:first\:leading-6:first-child{
    line-height: 1.5rem;
  }

  .s1920\:first\:leading-7:first-child{
    line-height: 1.75rem;
  }

  .s1920\:first\:leading-8:first-child{
    line-height: 2rem;
  }

  .s1920\:first\:leading-9:first-child{
    line-height: 2.25rem;
  }

  .s1920\:first\:leading-10:first-child{
    line-height: 2.5rem;
  }

  .s1920\:first\:leading-none:first-child{
    line-height: 1;
  }

  .s1920\:first\:leading-tight:first-child{
    line-height: 1;
  }

  .s1920\:first\:leading-snug:first-child{
    line-height: 1.375;
  }

  .s1920\:first\:leading-normal:first-child{
    line-height: 1.5;
  }

  .s1920\:first\:leading-relaxed:first-child{
    line-height: 1.625;
  }

  .s1920\:first\:leading-loose:first-child{
    line-height: 2;
  }

  .s1920\:first\:leading-error:first-child{
    line-height: 1.333;
  }

  .s1920\:last\:leading-3:last-child{
    line-height: .75rem;
  }

  .s1920\:last\:leading-4:last-child{
    line-height: 1rem;
  }

  .s1920\:last\:leading-5:last-child{
    line-height: 1.25rem;
  }

  .s1920\:last\:leading-6:last-child{
    line-height: 1.5rem;
  }

  .s1920\:last\:leading-7:last-child{
    line-height: 1.75rem;
  }

  .s1920\:last\:leading-8:last-child{
    line-height: 2rem;
  }

  .s1920\:last\:leading-9:last-child{
    line-height: 2.25rem;
  }

  .s1920\:last\:leading-10:last-child{
    line-height: 2.5rem;
  }

  .s1920\:last\:leading-none:last-child{
    line-height: 1;
  }

  .s1920\:last\:leading-tight:last-child{
    line-height: 1;
  }

  .s1920\:last\:leading-snug:last-child{
    line-height: 1.375;
  }

  .s1920\:last\:leading-normal:last-child{
    line-height: 1.5;
  }

  .s1920\:last\:leading-relaxed:last-child{
    line-height: 1.625;
  }

  .s1920\:last\:leading-loose:last-child{
    line-height: 2;
  }

  .s1920\:last\:leading-error:last-child{
    line-height: 1.333;
  }

  .s1920\:list-inside{
    list-style-position: inside;
  }

  .s1920\:list-outside{
    list-style-position: outside;
  }

  .s1920\:hover\:list-inside:hover{
    list-style-position: inside;
  }

  .s1920\:hover\:list-outside:hover{
    list-style-position: outside;
  }

  .s1920\:focus\:list-inside:focus{
    list-style-position: inside;
  }

  .s1920\:focus\:list-outside:focus{
    list-style-position: outside;
  }

  .s1920\:active\:list-inside:active{
    list-style-position: inside;
  }

  .s1920\:active\:list-outside:active{
    list-style-position: outside;
  }

  .s1920\:first\:list-inside:first-child{
    list-style-position: inside;
  }

  .s1920\:first\:list-outside:first-child{
    list-style-position: outside;
  }

  .s1920\:last\:list-inside:last-child{
    list-style-position: inside;
  }

  .s1920\:last\:list-outside:last-child{
    list-style-position: outside;
  }

  .s1920\:list-none{
    list-style-type: none;
  }

  .s1920\:list-disc{
    list-style-type: disc;
  }

  .s1920\:list-decimal{
    list-style-type: decimal;
  }

  .s1920\:hover\:list-none:hover{
    list-style-type: none;
  }

  .s1920\:hover\:list-disc:hover{
    list-style-type: disc;
  }

  .s1920\:hover\:list-decimal:hover{
    list-style-type: decimal;
  }

  .s1920\:focus\:list-none:focus{
    list-style-type: none;
  }

  .s1920\:focus\:list-disc:focus{
    list-style-type: disc;
  }

  .s1920\:focus\:list-decimal:focus{
    list-style-type: decimal;
  }

  .s1920\:active\:list-none:active{
    list-style-type: none;
  }

  .s1920\:active\:list-disc:active{
    list-style-type: disc;
  }

  .s1920\:active\:list-decimal:active{
    list-style-type: decimal;
  }

  .s1920\:first\:list-none:first-child{
    list-style-type: none;
  }

  .s1920\:first\:list-disc:first-child{
    list-style-type: disc;
  }

  .s1920\:first\:list-decimal:first-child{
    list-style-type: decimal;
  }

  .s1920\:last\:list-none:last-child{
    list-style-type: none;
  }

  .s1920\:last\:list-disc:last-child{
    list-style-type: disc;
  }

  .s1920\:last\:list-decimal:last-child{
    list-style-type: decimal;
  }

  .s1920\:m-0{
    margin: 0;
  }

  .s1920\:m-1{
    margin: 0.25rem;
  }

  .s1920\:m-2{
    margin: 0.5rem;
  }

  .s1920\:m-3{
    margin: 0.75rem;
  }

  .s1920\:m-4{
    margin: 1rem;
  }

  .s1920\:m-5{
    margin: 1.25rem;
  }

  .s1920\:m-6{
    margin: 1.5rem;
  }

  .s1920\:m-7{
    margin: 1.75rem;
  }

  .s1920\:m-8{
    margin: 2rem;
  }

  .s1920\:m-10{
    margin: 2.5rem;
  }

  .s1920\:m-12{
    margin: 3rem;
  }

  .s1920\:m-14{
    margin: 3.5rem;
  }

  .s1920\:m-16{
    margin: 4rem;
  }

  .s1920\:m-18{
    margin: 4.5rem;
  }

  .s1920\:m-20{
    margin: 5rem;
  }

  .s1920\:m-24{
    margin: 6rem;
  }

  .s1920\:m-32{
    margin: 8rem;
  }

  .s1920\:m-40{
    margin: 10rem;
  }

  .s1920\:m-48{
    margin: 12rem;
  }

  .s1920\:m-56{
    margin: 14rem;
  }

  .s1920\:m-64{
    margin: 16rem;
  }

  .s1920\:m-auto{
    margin: auto;
  }

  .s1920\:m-px{
    margin: 1px;
  }

  .s1920\:-m-1{
    margin: -0.25rem;
  }

  .s1920\:-m-2{
    margin: -0.5rem;
  }

  .s1920\:-m-3{
    margin: -0.75rem;
  }

  .s1920\:-m-4{
    margin: -1rem;
  }

  .s1920\:-m-5{
    margin: -1.25rem;
  }

  .s1920\:-m-6{
    margin: -1.5rem;
  }

  .s1920\:-m-8{
    margin: -2rem;
  }

  .s1920\:-m-10{
    margin: -2.5rem;
  }

  .s1920\:-m-12{
    margin: -3rem;
  }

  .s1920\:-m-14{
    margin: -3.5rem;
  }

  .s1920\:-m-16{
    margin: -4rem;
  }

  .s1920\:-m-20{
    margin: -5rem;
  }

  .s1920\:-m-24{
    margin: -6rem;
  }

  .s1920\:-m-32{
    margin: -8rem;
  }

  .s1920\:-m-40{
    margin: -10rem;
  }

  .s1920\:-m-48{
    margin: -12rem;
  }

  .s1920\:-m-56{
    margin: -14rem;
  }

  .s1920\:-m-64{
    margin: -16rem;
  }

  .s1920\:-m-px{
    margin: -1px;
  }

  .s1920\:m-bin{
    margin: -0.313rem;
  }

  .s1920\:-m-0\.25{
    margin: -0.0625rem;
  }

  .s1920\:m-0\.25{
    margin: 0.0625rem;
  }

  .s1920\:m-3\.125{
    margin: 3.125rem;
  }

  .s1920\:m-modal{
    margin: 6.25rem;
  }

  .s1920\:m-sidebar{
    margin: 25rem;
  }

  .s1920\:my-0{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1920\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }

  .s1920\:my-1{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1920\:mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1920\:my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1920\:mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1920\:my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1920\:mx-3{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1920\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1920\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1920\:my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1920\:mx-5{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1920\:my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1920\:mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1920\:my-7{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1920\:mx-7{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1920\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1920\:mx-8{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1920\:my-10{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1920\:mx-10{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1920\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1920\:mx-12{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1920\:my-14{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1920\:mx-14{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1920\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1920\:mx-16{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1920\:my-18{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1920\:mx-18{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1920\:my-20{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1920\:mx-20{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1920\:my-24{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1920\:mx-24{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1920\:my-32{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1920\:mx-32{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1920\:my-40{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1920\:mx-40{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1920\:my-48{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1920\:mx-48{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1920\:my-56{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1920\:mx-56{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1920\:my-64{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1920\:mx-64{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1920\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1920\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .s1920\:my-px{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1920\:mx-px{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1920\:-my-1{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1920\:-mx-1{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1920\:-my-2{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1920\:-mx-2{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1920\:-my-3{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1920\:-mx-3{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1920\:-my-4{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1920\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1920\:-my-5{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1920\:-mx-5{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1920\:-my-6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1920\:-mx-6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1920\:-my-8{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1920\:-mx-8{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1920\:-my-10{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1920\:-mx-10{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1920\:-my-12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1920\:-mx-12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1920\:-my-14{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1920\:-mx-14{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1920\:-my-16{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1920\:-mx-16{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1920\:-my-20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1920\:-mx-20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1920\:-my-24{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1920\:-mx-24{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1920\:-my-32{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1920\:-mx-32{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1920\:-my-40{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1920\:-mx-40{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1920\:-my-48{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1920\:-mx-48{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1920\:-my-56{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1920\:-mx-56{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1920\:-my-64{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1920\:-mx-64{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1920\:-my-px{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1920\:-mx-px{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1920\:my-bin{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1920\:mx-bin{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1920\:-my-0\.25{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1920\:-mx-0\.25{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1920\:my-0\.25{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1920\:mx-0\.25{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1920\:my-3\.125{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1920\:mx-3\.125{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1920\:my-modal{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1920\:mx-modal{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1920\:my-sidebar{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1920\:mx-sidebar{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1920\:mt-0{
    margin-top: 0;
  }

  .s1920\:mr-0{
    margin-right: 0;
  }

  .s1920\:mb-0{
    margin-bottom: 0;
  }

  .s1920\:ml-0{
    margin-left: 0;
  }

  .s1920\:mt-1{
    margin-top: 0.25rem;
  }

  .s1920\:mr-1{
    margin-right: 0.25rem;
  }

  .s1920\:mb-1{
    margin-bottom: 0.25rem;
  }

  .s1920\:ml-1{
    margin-left: 0.25rem;
  }

  .s1920\:mt-2{
    margin-top: 0.5rem;
  }

  .s1920\:mr-2{
    margin-right: 0.5rem;
  }

  .s1920\:mb-2{
    margin-bottom: 0.5rem;
  }

  .s1920\:ml-2{
    margin-left: 0.5rem;
  }

  .s1920\:mt-3{
    margin-top: 0.75rem;
  }

  .s1920\:mr-3{
    margin-right: 0.75rem;
  }

  .s1920\:mb-3{
    margin-bottom: 0.75rem;
  }

  .s1920\:ml-3{
    margin-left: 0.75rem;
  }

  .s1920\:mt-4{
    margin-top: 1rem;
  }

  .s1920\:mr-4{
    margin-right: 1rem;
  }

  .s1920\:mb-4{
    margin-bottom: 1rem;
  }

  .s1920\:ml-4{
    margin-left: 1rem;
  }

  .s1920\:mt-5{
    margin-top: 1.25rem;
  }

  .s1920\:mr-5{
    margin-right: 1.25rem;
  }

  .s1920\:mb-5{
    margin-bottom: 1.25rem;
  }

  .s1920\:ml-5{
    margin-left: 1.25rem;
  }

  .s1920\:mt-6{
    margin-top: 1.5rem;
  }

  .s1920\:mr-6{
    margin-right: 1.5rem;
  }

  .s1920\:mb-6{
    margin-bottom: 1.5rem;
  }

  .s1920\:ml-6{
    margin-left: 1.5rem;
  }

  .s1920\:mt-7{
    margin-top: 1.75rem;
  }

  .s1920\:mr-7{
    margin-right: 1.75rem;
  }

  .s1920\:mb-7{
    margin-bottom: 1.75rem;
  }

  .s1920\:ml-7{
    margin-left: 1.75rem;
  }

  .s1920\:mt-8{
    margin-top: 2rem;
  }

  .s1920\:mr-8{
    margin-right: 2rem;
  }

  .s1920\:mb-8{
    margin-bottom: 2rem;
  }

  .s1920\:ml-8{
    margin-left: 2rem;
  }

  .s1920\:mt-10{
    margin-top: 2.5rem;
  }

  .s1920\:mr-10{
    margin-right: 2.5rem;
  }

  .s1920\:mb-10{
    margin-bottom: 2.5rem;
  }

  .s1920\:ml-10{
    margin-left: 2.5rem;
  }

  .s1920\:mt-12{
    margin-top: 3rem;
  }

  .s1920\:mr-12{
    margin-right: 3rem;
  }

  .s1920\:mb-12{
    margin-bottom: 3rem;
  }

  .s1920\:ml-12{
    margin-left: 3rem;
  }

  .s1920\:mt-14{
    margin-top: 3.5rem;
  }

  .s1920\:mr-14{
    margin-right: 3.5rem;
  }

  .s1920\:mb-14{
    margin-bottom: 3.5rem;
  }

  .s1920\:ml-14{
    margin-left: 3.5rem;
  }

  .s1920\:mt-16{
    margin-top: 4rem;
  }

  .s1920\:mr-16{
    margin-right: 4rem;
  }

  .s1920\:mb-16{
    margin-bottom: 4rem;
  }

  .s1920\:ml-16{
    margin-left: 4rem;
  }

  .s1920\:mt-18{
    margin-top: 4.5rem;
  }

  .s1920\:mr-18{
    margin-right: 4.5rem;
  }

  .s1920\:mb-18{
    margin-bottom: 4.5rem;
  }

  .s1920\:ml-18{
    margin-left: 4.5rem;
  }

  .s1920\:mt-20{
    margin-top: 5rem;
  }

  .s1920\:mr-20{
    margin-right: 5rem;
  }

  .s1920\:mb-20{
    margin-bottom: 5rem;
  }

  .s1920\:ml-20{
    margin-left: 5rem;
  }

  .s1920\:mt-24{
    margin-top: 6rem;
  }

  .s1920\:mr-24{
    margin-right: 6rem;
  }

  .s1920\:mb-24{
    margin-bottom: 6rem;
  }

  .s1920\:ml-24{
    margin-left: 6rem;
  }

  .s1920\:mt-32{
    margin-top: 8rem;
  }

  .s1920\:mr-32{
    margin-right: 8rem;
  }

  .s1920\:mb-32{
    margin-bottom: 8rem;
  }

  .s1920\:ml-32{
    margin-left: 8rem;
  }

  .s1920\:mt-40{
    margin-top: 10rem;
  }

  .s1920\:mr-40{
    margin-right: 10rem;
  }

  .s1920\:mb-40{
    margin-bottom: 10rem;
  }

  .s1920\:ml-40{
    margin-left: 10rem;
  }

  .s1920\:mt-48{
    margin-top: 12rem;
  }

  .s1920\:mr-48{
    margin-right: 12rem;
  }

  .s1920\:mb-48{
    margin-bottom: 12rem;
  }

  .s1920\:ml-48{
    margin-left: 12rem;
  }

  .s1920\:mt-56{
    margin-top: 14rem;
  }

  .s1920\:mr-56{
    margin-right: 14rem;
  }

  .s1920\:mb-56{
    margin-bottom: 14rem;
  }

  .s1920\:ml-56{
    margin-left: 14rem;
  }

  .s1920\:mt-64{
    margin-top: 16rem;
  }

  .s1920\:mr-64{
    margin-right: 16rem;
  }

  .s1920\:mb-64{
    margin-bottom: 16rem;
  }

  .s1920\:ml-64{
    margin-left: 16rem;
  }

  .s1920\:mt-auto{
    margin-top: auto;
  }

  .s1920\:mr-auto{
    margin-right: auto;
  }

  .s1920\:mb-auto{
    margin-bottom: auto;
  }

  .s1920\:ml-auto{
    margin-left: auto;
  }

  .s1920\:mt-px{
    margin-top: 1px;
  }

  .s1920\:mr-px{
    margin-right: 1px;
  }

  .s1920\:mb-px{
    margin-bottom: 1px;
  }

  .s1920\:ml-px{
    margin-left: 1px;
  }

  .s1920\:-mt-1{
    margin-top: -0.25rem;
  }

  .s1920\:-mr-1{
    margin-right: -0.25rem;
  }

  .s1920\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .s1920\:-ml-1{
    margin-left: -0.25rem;
  }

  .s1920\:-mt-2{
    margin-top: -0.5rem;
  }

  .s1920\:-mr-2{
    margin-right: -0.5rem;
  }

  .s1920\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .s1920\:-ml-2{
    margin-left: -0.5rem;
  }

  .s1920\:-mt-3{
    margin-top: -0.75rem;
  }

  .s1920\:-mr-3{
    margin-right: -0.75rem;
  }

  .s1920\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .s1920\:-ml-3{
    margin-left: -0.75rem;
  }

  .s1920\:-mt-4{
    margin-top: -1rem;
  }

  .s1920\:-mr-4{
    margin-right: -1rem;
  }

  .s1920\:-mb-4{
    margin-bottom: -1rem;
  }

  .s1920\:-ml-4{
    margin-left: -1rem;
  }

  .s1920\:-mt-5{
    margin-top: -1.25rem;
  }

  .s1920\:-mr-5{
    margin-right: -1.25rem;
  }

  .s1920\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .s1920\:-ml-5{
    margin-left: -1.25rem;
  }

  .s1920\:-mt-6{
    margin-top: -1.5rem;
  }

  .s1920\:-mr-6{
    margin-right: -1.5rem;
  }

  .s1920\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .s1920\:-ml-6{
    margin-left: -1.5rem;
  }

  .s1920\:-mt-8{
    margin-top: -2rem;
  }

  .s1920\:-mr-8{
    margin-right: -2rem;
  }

  .s1920\:-mb-8{
    margin-bottom: -2rem;
  }

  .s1920\:-ml-8{
    margin-left: -2rem;
  }

  .s1920\:-mt-10{
    margin-top: -2.5rem;
  }

  .s1920\:-mr-10{
    margin-right: -2.5rem;
  }

  .s1920\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .s1920\:-ml-10{
    margin-left: -2.5rem;
  }

  .s1920\:-mt-12{
    margin-top: -3rem;
  }

  .s1920\:-mr-12{
    margin-right: -3rem;
  }

  .s1920\:-mb-12{
    margin-bottom: -3rem;
  }

  .s1920\:-ml-12{
    margin-left: -3rem;
  }

  .s1920\:-mt-14{
    margin-top: -3.5rem;
  }

  .s1920\:-mr-14{
    margin-right: -3.5rem;
  }

  .s1920\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .s1920\:-ml-14{
    margin-left: -3.5rem;
  }

  .s1920\:-mt-16{
    margin-top: -4rem;
  }

  .s1920\:-mr-16{
    margin-right: -4rem;
  }

  .s1920\:-mb-16{
    margin-bottom: -4rem;
  }

  .s1920\:-ml-16{
    margin-left: -4rem;
  }

  .s1920\:-mt-20{
    margin-top: -5rem;
  }

  .s1920\:-mr-20{
    margin-right: -5rem;
  }

  .s1920\:-mb-20{
    margin-bottom: -5rem;
  }

  .s1920\:-ml-20{
    margin-left: -5rem;
  }

  .s1920\:-mt-24{
    margin-top: -6rem;
  }

  .s1920\:-mr-24{
    margin-right: -6rem;
  }

  .s1920\:-mb-24{
    margin-bottom: -6rem;
  }

  .s1920\:-ml-24{
    margin-left: -6rem;
  }

  .s1920\:-mt-32{
    margin-top: -8rem;
  }

  .s1920\:-mr-32{
    margin-right: -8rem;
  }

  .s1920\:-mb-32{
    margin-bottom: -8rem;
  }

  .s1920\:-ml-32{
    margin-left: -8rem;
  }

  .s1920\:-mt-40{
    margin-top: -10rem;
  }

  .s1920\:-mr-40{
    margin-right: -10rem;
  }

  .s1920\:-mb-40{
    margin-bottom: -10rem;
  }

  .s1920\:-ml-40{
    margin-left: -10rem;
  }

  .s1920\:-mt-48{
    margin-top: -12rem;
  }

  .s1920\:-mr-48{
    margin-right: -12rem;
  }

  .s1920\:-mb-48{
    margin-bottom: -12rem;
  }

  .s1920\:-ml-48{
    margin-left: -12rem;
  }

  .s1920\:-mt-56{
    margin-top: -14rem;
  }

  .s1920\:-mr-56{
    margin-right: -14rem;
  }

  .s1920\:-mb-56{
    margin-bottom: -14rem;
  }

  .s1920\:-ml-56{
    margin-left: -14rem;
  }

  .s1920\:-mt-64{
    margin-top: -16rem;
  }

  .s1920\:-mr-64{
    margin-right: -16rem;
  }

  .s1920\:-mb-64{
    margin-bottom: -16rem;
  }

  .s1920\:-ml-64{
    margin-left: -16rem;
  }

  .s1920\:-mt-px{
    margin-top: -1px;
  }

  .s1920\:-mr-px{
    margin-right: -1px;
  }

  .s1920\:-mb-px{
    margin-bottom: -1px;
  }

  .s1920\:-ml-px{
    margin-left: -1px;
  }

  .s1920\:mt-bin{
    margin-top: -0.313rem;
  }

  .s1920\:mr-bin{
    margin-right: -0.313rem;
  }

  .s1920\:mb-bin{
    margin-bottom: -0.313rem;
  }

  .s1920\:ml-bin{
    margin-left: -0.313rem;
  }

  .s1920\:-mt-0\.25{
    margin-top: -0.0625rem;
  }

  .s1920\:-mr-0\.25{
    margin-right: -0.0625rem;
  }

  .s1920\:-mb-0\.25{
    margin-bottom: -0.0625rem;
  }

  .s1920\:-ml-0\.25{
    margin-left: -0.0625rem;
  }

  .s1920\:mt-0\.25{
    margin-top: 0.0625rem;
  }

  .s1920\:mr-0\.25{
    margin-right: 0.0625rem;
  }

  .s1920\:mb-0\.25{
    margin-bottom: 0.0625rem;
  }

  .s1920\:ml-0\.25{
    margin-left: 0.0625rem;
  }

  .s1920\:mt-3\.125{
    margin-top: 3.125rem;
  }

  .s1920\:mr-3\.125{
    margin-right: 3.125rem;
  }

  .s1920\:mb-3\.125{
    margin-bottom: 3.125rem;
  }

  .s1920\:ml-3\.125{
    margin-left: 3.125rem;
  }

  .s1920\:mt-modal{
    margin-top: 6.25rem;
  }

  .s1920\:mr-modal{
    margin-right: 6.25rem;
  }

  .s1920\:mb-modal{
    margin-bottom: 6.25rem;
  }

  .s1920\:ml-modal{
    margin-left: 6.25rem;
  }

  .s1920\:mt-sidebar{
    margin-top: 25rem;
  }

  .s1920\:mr-sidebar{
    margin-right: 25rem;
  }

  .s1920\:mb-sidebar{
    margin-bottom: 25rem;
  }

  .s1920\:ml-sidebar{
    margin-left: 25rem;
  }

  .s1920\:hover\:m-0:hover{
    margin: 0;
  }

  .s1920\:hover\:m-1:hover{
    margin: 0.25rem;
  }

  .s1920\:hover\:m-2:hover{
    margin: 0.5rem;
  }

  .s1920\:hover\:m-3:hover{
    margin: 0.75rem;
  }

  .s1920\:hover\:m-4:hover{
    margin: 1rem;
  }

  .s1920\:hover\:m-5:hover{
    margin: 1.25rem;
  }

  .s1920\:hover\:m-6:hover{
    margin: 1.5rem;
  }

  .s1920\:hover\:m-7:hover{
    margin: 1.75rem;
  }

  .s1920\:hover\:m-8:hover{
    margin: 2rem;
  }

  .s1920\:hover\:m-10:hover{
    margin: 2.5rem;
  }

  .s1920\:hover\:m-12:hover{
    margin: 3rem;
  }

  .s1920\:hover\:m-14:hover{
    margin: 3.5rem;
  }

  .s1920\:hover\:m-16:hover{
    margin: 4rem;
  }

  .s1920\:hover\:m-18:hover{
    margin: 4.5rem;
  }

  .s1920\:hover\:m-20:hover{
    margin: 5rem;
  }

  .s1920\:hover\:m-24:hover{
    margin: 6rem;
  }

  .s1920\:hover\:m-32:hover{
    margin: 8rem;
  }

  .s1920\:hover\:m-40:hover{
    margin: 10rem;
  }

  .s1920\:hover\:m-48:hover{
    margin: 12rem;
  }

  .s1920\:hover\:m-56:hover{
    margin: 14rem;
  }

  .s1920\:hover\:m-64:hover{
    margin: 16rem;
  }

  .s1920\:hover\:m-auto:hover{
    margin: auto;
  }

  .s1920\:hover\:m-px:hover{
    margin: 1px;
  }

  .s1920\:hover\:-m-1:hover{
    margin: -0.25rem;
  }

  .s1920\:hover\:-m-2:hover{
    margin: -0.5rem;
  }

  .s1920\:hover\:-m-3:hover{
    margin: -0.75rem;
  }

  .s1920\:hover\:-m-4:hover{
    margin: -1rem;
  }

  .s1920\:hover\:-m-5:hover{
    margin: -1.25rem;
  }

  .s1920\:hover\:-m-6:hover{
    margin: -1.5rem;
  }

  .s1920\:hover\:-m-8:hover{
    margin: -2rem;
  }

  .s1920\:hover\:-m-10:hover{
    margin: -2.5rem;
  }

  .s1920\:hover\:-m-12:hover{
    margin: -3rem;
  }

  .s1920\:hover\:-m-14:hover{
    margin: -3.5rem;
  }

  .s1920\:hover\:-m-16:hover{
    margin: -4rem;
  }

  .s1920\:hover\:-m-20:hover{
    margin: -5rem;
  }

  .s1920\:hover\:-m-24:hover{
    margin: -6rem;
  }

  .s1920\:hover\:-m-32:hover{
    margin: -8rem;
  }

  .s1920\:hover\:-m-40:hover{
    margin: -10rem;
  }

  .s1920\:hover\:-m-48:hover{
    margin: -12rem;
  }

  .s1920\:hover\:-m-56:hover{
    margin: -14rem;
  }

  .s1920\:hover\:-m-64:hover{
    margin: -16rem;
  }

  .s1920\:hover\:-m-px:hover{
    margin: -1px;
  }

  .s1920\:hover\:m-bin:hover{
    margin: -0.313rem;
  }

  .s1920\:hover\:-m-0\.25:hover{
    margin: -0.0625rem;
  }

  .s1920\:hover\:m-0\.25:hover{
    margin: 0.0625rem;
  }

  .s1920\:hover\:m-3\.125:hover{
    margin: 3.125rem;
  }

  .s1920\:hover\:m-modal:hover{
    margin: 6.25rem;
  }

  .s1920\:hover\:m-sidebar:hover{
    margin: 25rem;
  }

  .s1920\:hover\:my-0:hover{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1920\:hover\:mx-0:hover{
    margin-left: 0;
    margin-right: 0;
  }

  .s1920\:hover\:my-1:hover{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1920\:hover\:mx-1:hover{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1920\:hover\:my-2:hover{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1920\:hover\:mx-2:hover{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1920\:hover\:my-3:hover{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1920\:hover\:mx-3:hover{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1920\:hover\:my-4:hover{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1920\:hover\:mx-4:hover{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1920\:hover\:my-5:hover{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1920\:hover\:mx-5:hover{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1920\:hover\:my-6:hover{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1920\:hover\:mx-6:hover{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1920\:hover\:my-7:hover{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1920\:hover\:mx-7:hover{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1920\:hover\:my-8:hover{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1920\:hover\:mx-8:hover{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1920\:hover\:my-10:hover{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1920\:hover\:mx-10:hover{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1920\:hover\:my-12:hover{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1920\:hover\:mx-12:hover{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1920\:hover\:my-14:hover{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1920\:hover\:mx-14:hover{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1920\:hover\:my-16:hover{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1920\:hover\:mx-16:hover{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1920\:hover\:my-18:hover{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1920\:hover\:mx-18:hover{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1920\:hover\:my-20:hover{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1920\:hover\:mx-20:hover{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1920\:hover\:my-24:hover{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1920\:hover\:mx-24:hover{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1920\:hover\:my-32:hover{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1920\:hover\:mx-32:hover{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1920\:hover\:my-40:hover{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1920\:hover\:mx-40:hover{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1920\:hover\:my-48:hover{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1920\:hover\:mx-48:hover{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1920\:hover\:my-56:hover{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1920\:hover\:mx-56:hover{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1920\:hover\:my-64:hover{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1920\:hover\:mx-64:hover{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1920\:hover\:my-auto:hover{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1920\:hover\:mx-auto:hover{
    margin-left: auto;
    margin-right: auto;
  }

  .s1920\:hover\:my-px:hover{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1920\:hover\:mx-px:hover{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1920\:hover\:-my-1:hover{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1920\:hover\:-mx-1:hover{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1920\:hover\:-my-2:hover{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1920\:hover\:-mx-2:hover{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1920\:hover\:-my-3:hover{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1920\:hover\:-mx-3:hover{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1920\:hover\:-my-4:hover{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1920\:hover\:-mx-4:hover{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1920\:hover\:-my-5:hover{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1920\:hover\:-mx-5:hover{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1920\:hover\:-my-6:hover{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1920\:hover\:-mx-6:hover{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1920\:hover\:-my-8:hover{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1920\:hover\:-mx-8:hover{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1920\:hover\:-my-10:hover{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1920\:hover\:-mx-10:hover{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1920\:hover\:-my-12:hover{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1920\:hover\:-mx-12:hover{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1920\:hover\:-my-14:hover{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1920\:hover\:-mx-14:hover{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1920\:hover\:-my-16:hover{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1920\:hover\:-mx-16:hover{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1920\:hover\:-my-20:hover{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1920\:hover\:-mx-20:hover{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1920\:hover\:-my-24:hover{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1920\:hover\:-mx-24:hover{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1920\:hover\:-my-32:hover{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1920\:hover\:-mx-32:hover{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1920\:hover\:-my-40:hover{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1920\:hover\:-mx-40:hover{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1920\:hover\:-my-48:hover{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1920\:hover\:-mx-48:hover{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1920\:hover\:-my-56:hover{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1920\:hover\:-mx-56:hover{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1920\:hover\:-my-64:hover{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1920\:hover\:-mx-64:hover{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1920\:hover\:-my-px:hover{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1920\:hover\:-mx-px:hover{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1920\:hover\:my-bin:hover{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1920\:hover\:mx-bin:hover{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1920\:hover\:-my-0\.25:hover{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1920\:hover\:-mx-0\.25:hover{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1920\:hover\:my-0\.25:hover{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1920\:hover\:mx-0\.25:hover{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1920\:hover\:my-3\.125:hover{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1920\:hover\:mx-3\.125:hover{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1920\:hover\:my-modal:hover{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1920\:hover\:mx-modal:hover{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1920\:hover\:my-sidebar:hover{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1920\:hover\:mx-sidebar:hover{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1920\:hover\:mt-0:hover{
    margin-top: 0;
  }

  .s1920\:hover\:mr-0:hover{
    margin-right: 0;
  }

  .s1920\:hover\:mb-0:hover{
    margin-bottom: 0;
  }

  .s1920\:hover\:ml-0:hover{
    margin-left: 0;
  }

  .s1920\:hover\:mt-1:hover{
    margin-top: 0.25rem;
  }

  .s1920\:hover\:mr-1:hover{
    margin-right: 0.25rem;
  }

  .s1920\:hover\:mb-1:hover{
    margin-bottom: 0.25rem;
  }

  .s1920\:hover\:ml-1:hover{
    margin-left: 0.25rem;
  }

  .s1920\:hover\:mt-2:hover{
    margin-top: 0.5rem;
  }

  .s1920\:hover\:mr-2:hover{
    margin-right: 0.5rem;
  }

  .s1920\:hover\:mb-2:hover{
    margin-bottom: 0.5rem;
  }

  .s1920\:hover\:ml-2:hover{
    margin-left: 0.5rem;
  }

  .s1920\:hover\:mt-3:hover{
    margin-top: 0.75rem;
  }

  .s1920\:hover\:mr-3:hover{
    margin-right: 0.75rem;
  }

  .s1920\:hover\:mb-3:hover{
    margin-bottom: 0.75rem;
  }

  .s1920\:hover\:ml-3:hover{
    margin-left: 0.75rem;
  }

  .s1920\:hover\:mt-4:hover{
    margin-top: 1rem;
  }

  .s1920\:hover\:mr-4:hover{
    margin-right: 1rem;
  }

  .s1920\:hover\:mb-4:hover{
    margin-bottom: 1rem;
  }

  .s1920\:hover\:ml-4:hover{
    margin-left: 1rem;
  }

  .s1920\:hover\:mt-5:hover{
    margin-top: 1.25rem;
  }

  .s1920\:hover\:mr-5:hover{
    margin-right: 1.25rem;
  }

  .s1920\:hover\:mb-5:hover{
    margin-bottom: 1.25rem;
  }

  .s1920\:hover\:ml-5:hover{
    margin-left: 1.25rem;
  }

  .s1920\:hover\:mt-6:hover{
    margin-top: 1.5rem;
  }

  .s1920\:hover\:mr-6:hover{
    margin-right: 1.5rem;
  }

  .s1920\:hover\:mb-6:hover{
    margin-bottom: 1.5rem;
  }

  .s1920\:hover\:ml-6:hover{
    margin-left: 1.5rem;
  }

  .s1920\:hover\:mt-7:hover{
    margin-top: 1.75rem;
  }

  .s1920\:hover\:mr-7:hover{
    margin-right: 1.75rem;
  }

  .s1920\:hover\:mb-7:hover{
    margin-bottom: 1.75rem;
  }

  .s1920\:hover\:ml-7:hover{
    margin-left: 1.75rem;
  }

  .s1920\:hover\:mt-8:hover{
    margin-top: 2rem;
  }

  .s1920\:hover\:mr-8:hover{
    margin-right: 2rem;
  }

  .s1920\:hover\:mb-8:hover{
    margin-bottom: 2rem;
  }

  .s1920\:hover\:ml-8:hover{
    margin-left: 2rem;
  }

  .s1920\:hover\:mt-10:hover{
    margin-top: 2.5rem;
  }

  .s1920\:hover\:mr-10:hover{
    margin-right: 2.5rem;
  }

  .s1920\:hover\:mb-10:hover{
    margin-bottom: 2.5rem;
  }

  .s1920\:hover\:ml-10:hover{
    margin-left: 2.5rem;
  }

  .s1920\:hover\:mt-12:hover{
    margin-top: 3rem;
  }

  .s1920\:hover\:mr-12:hover{
    margin-right: 3rem;
  }

  .s1920\:hover\:mb-12:hover{
    margin-bottom: 3rem;
  }

  .s1920\:hover\:ml-12:hover{
    margin-left: 3rem;
  }

  .s1920\:hover\:mt-14:hover{
    margin-top: 3.5rem;
  }

  .s1920\:hover\:mr-14:hover{
    margin-right: 3.5rem;
  }

  .s1920\:hover\:mb-14:hover{
    margin-bottom: 3.5rem;
  }

  .s1920\:hover\:ml-14:hover{
    margin-left: 3.5rem;
  }

  .s1920\:hover\:mt-16:hover{
    margin-top: 4rem;
  }

  .s1920\:hover\:mr-16:hover{
    margin-right: 4rem;
  }

  .s1920\:hover\:mb-16:hover{
    margin-bottom: 4rem;
  }

  .s1920\:hover\:ml-16:hover{
    margin-left: 4rem;
  }

  .s1920\:hover\:mt-18:hover{
    margin-top: 4.5rem;
  }

  .s1920\:hover\:mr-18:hover{
    margin-right: 4.5rem;
  }

  .s1920\:hover\:mb-18:hover{
    margin-bottom: 4.5rem;
  }

  .s1920\:hover\:ml-18:hover{
    margin-left: 4.5rem;
  }

  .s1920\:hover\:mt-20:hover{
    margin-top: 5rem;
  }

  .s1920\:hover\:mr-20:hover{
    margin-right: 5rem;
  }

  .s1920\:hover\:mb-20:hover{
    margin-bottom: 5rem;
  }

  .s1920\:hover\:ml-20:hover{
    margin-left: 5rem;
  }

  .s1920\:hover\:mt-24:hover{
    margin-top: 6rem;
  }

  .s1920\:hover\:mr-24:hover{
    margin-right: 6rem;
  }

  .s1920\:hover\:mb-24:hover{
    margin-bottom: 6rem;
  }

  .s1920\:hover\:ml-24:hover{
    margin-left: 6rem;
  }

  .s1920\:hover\:mt-32:hover{
    margin-top: 8rem;
  }

  .s1920\:hover\:mr-32:hover{
    margin-right: 8rem;
  }

  .s1920\:hover\:mb-32:hover{
    margin-bottom: 8rem;
  }

  .s1920\:hover\:ml-32:hover{
    margin-left: 8rem;
  }

  .s1920\:hover\:mt-40:hover{
    margin-top: 10rem;
  }

  .s1920\:hover\:mr-40:hover{
    margin-right: 10rem;
  }

  .s1920\:hover\:mb-40:hover{
    margin-bottom: 10rem;
  }

  .s1920\:hover\:ml-40:hover{
    margin-left: 10rem;
  }

  .s1920\:hover\:mt-48:hover{
    margin-top: 12rem;
  }

  .s1920\:hover\:mr-48:hover{
    margin-right: 12rem;
  }

  .s1920\:hover\:mb-48:hover{
    margin-bottom: 12rem;
  }

  .s1920\:hover\:ml-48:hover{
    margin-left: 12rem;
  }

  .s1920\:hover\:mt-56:hover{
    margin-top: 14rem;
  }

  .s1920\:hover\:mr-56:hover{
    margin-right: 14rem;
  }

  .s1920\:hover\:mb-56:hover{
    margin-bottom: 14rem;
  }

  .s1920\:hover\:ml-56:hover{
    margin-left: 14rem;
  }

  .s1920\:hover\:mt-64:hover{
    margin-top: 16rem;
  }

  .s1920\:hover\:mr-64:hover{
    margin-right: 16rem;
  }

  .s1920\:hover\:mb-64:hover{
    margin-bottom: 16rem;
  }

  .s1920\:hover\:ml-64:hover{
    margin-left: 16rem;
  }

  .s1920\:hover\:mt-auto:hover{
    margin-top: auto;
  }

  .s1920\:hover\:mr-auto:hover{
    margin-right: auto;
  }

  .s1920\:hover\:mb-auto:hover{
    margin-bottom: auto;
  }

  .s1920\:hover\:ml-auto:hover{
    margin-left: auto;
  }

  .s1920\:hover\:mt-px:hover{
    margin-top: 1px;
  }

  .s1920\:hover\:mr-px:hover{
    margin-right: 1px;
  }

  .s1920\:hover\:mb-px:hover{
    margin-bottom: 1px;
  }

  .s1920\:hover\:ml-px:hover{
    margin-left: 1px;
  }

  .s1920\:hover\:-mt-1:hover{
    margin-top: -0.25rem;
  }

  .s1920\:hover\:-mr-1:hover{
    margin-right: -0.25rem;
  }

  .s1920\:hover\:-mb-1:hover{
    margin-bottom: -0.25rem;
  }

  .s1920\:hover\:-ml-1:hover{
    margin-left: -0.25rem;
  }

  .s1920\:hover\:-mt-2:hover{
    margin-top: -0.5rem;
  }

  .s1920\:hover\:-mr-2:hover{
    margin-right: -0.5rem;
  }

  .s1920\:hover\:-mb-2:hover{
    margin-bottom: -0.5rem;
  }

  .s1920\:hover\:-ml-2:hover{
    margin-left: -0.5rem;
  }

  .s1920\:hover\:-mt-3:hover{
    margin-top: -0.75rem;
  }

  .s1920\:hover\:-mr-3:hover{
    margin-right: -0.75rem;
  }

  .s1920\:hover\:-mb-3:hover{
    margin-bottom: -0.75rem;
  }

  .s1920\:hover\:-ml-3:hover{
    margin-left: -0.75rem;
  }

  .s1920\:hover\:-mt-4:hover{
    margin-top: -1rem;
  }

  .s1920\:hover\:-mr-4:hover{
    margin-right: -1rem;
  }

  .s1920\:hover\:-mb-4:hover{
    margin-bottom: -1rem;
  }

  .s1920\:hover\:-ml-4:hover{
    margin-left: -1rem;
  }

  .s1920\:hover\:-mt-5:hover{
    margin-top: -1.25rem;
  }

  .s1920\:hover\:-mr-5:hover{
    margin-right: -1.25rem;
  }

  .s1920\:hover\:-mb-5:hover{
    margin-bottom: -1.25rem;
  }

  .s1920\:hover\:-ml-5:hover{
    margin-left: -1.25rem;
  }

  .s1920\:hover\:-mt-6:hover{
    margin-top: -1.5rem;
  }

  .s1920\:hover\:-mr-6:hover{
    margin-right: -1.5rem;
  }

  .s1920\:hover\:-mb-6:hover{
    margin-bottom: -1.5rem;
  }

  .s1920\:hover\:-ml-6:hover{
    margin-left: -1.5rem;
  }

  .s1920\:hover\:-mt-8:hover{
    margin-top: -2rem;
  }

  .s1920\:hover\:-mr-8:hover{
    margin-right: -2rem;
  }

  .s1920\:hover\:-mb-8:hover{
    margin-bottom: -2rem;
  }

  .s1920\:hover\:-ml-8:hover{
    margin-left: -2rem;
  }

  .s1920\:hover\:-mt-10:hover{
    margin-top: -2.5rem;
  }

  .s1920\:hover\:-mr-10:hover{
    margin-right: -2.5rem;
  }

  .s1920\:hover\:-mb-10:hover{
    margin-bottom: -2.5rem;
  }

  .s1920\:hover\:-ml-10:hover{
    margin-left: -2.5rem;
  }

  .s1920\:hover\:-mt-12:hover{
    margin-top: -3rem;
  }

  .s1920\:hover\:-mr-12:hover{
    margin-right: -3rem;
  }

  .s1920\:hover\:-mb-12:hover{
    margin-bottom: -3rem;
  }

  .s1920\:hover\:-ml-12:hover{
    margin-left: -3rem;
  }

  .s1920\:hover\:-mt-14:hover{
    margin-top: -3.5rem;
  }

  .s1920\:hover\:-mr-14:hover{
    margin-right: -3.5rem;
  }

  .s1920\:hover\:-mb-14:hover{
    margin-bottom: -3.5rem;
  }

  .s1920\:hover\:-ml-14:hover{
    margin-left: -3.5rem;
  }

  .s1920\:hover\:-mt-16:hover{
    margin-top: -4rem;
  }

  .s1920\:hover\:-mr-16:hover{
    margin-right: -4rem;
  }

  .s1920\:hover\:-mb-16:hover{
    margin-bottom: -4rem;
  }

  .s1920\:hover\:-ml-16:hover{
    margin-left: -4rem;
  }

  .s1920\:hover\:-mt-20:hover{
    margin-top: -5rem;
  }

  .s1920\:hover\:-mr-20:hover{
    margin-right: -5rem;
  }

  .s1920\:hover\:-mb-20:hover{
    margin-bottom: -5rem;
  }

  .s1920\:hover\:-ml-20:hover{
    margin-left: -5rem;
  }

  .s1920\:hover\:-mt-24:hover{
    margin-top: -6rem;
  }

  .s1920\:hover\:-mr-24:hover{
    margin-right: -6rem;
  }

  .s1920\:hover\:-mb-24:hover{
    margin-bottom: -6rem;
  }

  .s1920\:hover\:-ml-24:hover{
    margin-left: -6rem;
  }

  .s1920\:hover\:-mt-32:hover{
    margin-top: -8rem;
  }

  .s1920\:hover\:-mr-32:hover{
    margin-right: -8rem;
  }

  .s1920\:hover\:-mb-32:hover{
    margin-bottom: -8rem;
  }

  .s1920\:hover\:-ml-32:hover{
    margin-left: -8rem;
  }

  .s1920\:hover\:-mt-40:hover{
    margin-top: -10rem;
  }

  .s1920\:hover\:-mr-40:hover{
    margin-right: -10rem;
  }

  .s1920\:hover\:-mb-40:hover{
    margin-bottom: -10rem;
  }

  .s1920\:hover\:-ml-40:hover{
    margin-left: -10rem;
  }

  .s1920\:hover\:-mt-48:hover{
    margin-top: -12rem;
  }

  .s1920\:hover\:-mr-48:hover{
    margin-right: -12rem;
  }

  .s1920\:hover\:-mb-48:hover{
    margin-bottom: -12rem;
  }

  .s1920\:hover\:-ml-48:hover{
    margin-left: -12rem;
  }

  .s1920\:hover\:-mt-56:hover{
    margin-top: -14rem;
  }

  .s1920\:hover\:-mr-56:hover{
    margin-right: -14rem;
  }

  .s1920\:hover\:-mb-56:hover{
    margin-bottom: -14rem;
  }

  .s1920\:hover\:-ml-56:hover{
    margin-left: -14rem;
  }

  .s1920\:hover\:-mt-64:hover{
    margin-top: -16rem;
  }

  .s1920\:hover\:-mr-64:hover{
    margin-right: -16rem;
  }

  .s1920\:hover\:-mb-64:hover{
    margin-bottom: -16rem;
  }

  .s1920\:hover\:-ml-64:hover{
    margin-left: -16rem;
  }

  .s1920\:hover\:-mt-px:hover{
    margin-top: -1px;
  }

  .s1920\:hover\:-mr-px:hover{
    margin-right: -1px;
  }

  .s1920\:hover\:-mb-px:hover{
    margin-bottom: -1px;
  }

  .s1920\:hover\:-ml-px:hover{
    margin-left: -1px;
  }

  .s1920\:hover\:mt-bin:hover{
    margin-top: -0.313rem;
  }

  .s1920\:hover\:mr-bin:hover{
    margin-right: -0.313rem;
  }

  .s1920\:hover\:mb-bin:hover{
    margin-bottom: -0.313rem;
  }

  .s1920\:hover\:ml-bin:hover{
    margin-left: -0.313rem;
  }

  .s1920\:hover\:-mt-0\.25:hover{
    margin-top: -0.0625rem;
  }

  .s1920\:hover\:-mr-0\.25:hover{
    margin-right: -0.0625rem;
  }

  .s1920\:hover\:-mb-0\.25:hover{
    margin-bottom: -0.0625rem;
  }

  .s1920\:hover\:-ml-0\.25:hover{
    margin-left: -0.0625rem;
  }

  .s1920\:hover\:mt-0\.25:hover{
    margin-top: 0.0625rem;
  }

  .s1920\:hover\:mr-0\.25:hover{
    margin-right: 0.0625rem;
  }

  .s1920\:hover\:mb-0\.25:hover{
    margin-bottom: 0.0625rem;
  }

  .s1920\:hover\:ml-0\.25:hover{
    margin-left: 0.0625rem;
  }

  .s1920\:hover\:mt-3\.125:hover{
    margin-top: 3.125rem;
  }

  .s1920\:hover\:mr-3\.125:hover{
    margin-right: 3.125rem;
  }

  .s1920\:hover\:mb-3\.125:hover{
    margin-bottom: 3.125rem;
  }

  .s1920\:hover\:ml-3\.125:hover{
    margin-left: 3.125rem;
  }

  .s1920\:hover\:mt-modal:hover{
    margin-top: 6.25rem;
  }

  .s1920\:hover\:mr-modal:hover{
    margin-right: 6.25rem;
  }

  .s1920\:hover\:mb-modal:hover{
    margin-bottom: 6.25rem;
  }

  .s1920\:hover\:ml-modal:hover{
    margin-left: 6.25rem;
  }

  .s1920\:hover\:mt-sidebar:hover{
    margin-top: 25rem;
  }

  .s1920\:hover\:mr-sidebar:hover{
    margin-right: 25rem;
  }

  .s1920\:hover\:mb-sidebar:hover{
    margin-bottom: 25rem;
  }

  .s1920\:hover\:ml-sidebar:hover{
    margin-left: 25rem;
  }

  .s1920\:focus\:m-0:focus{
    margin: 0;
  }

  .s1920\:focus\:m-1:focus{
    margin: 0.25rem;
  }

  .s1920\:focus\:m-2:focus{
    margin: 0.5rem;
  }

  .s1920\:focus\:m-3:focus{
    margin: 0.75rem;
  }

  .s1920\:focus\:m-4:focus{
    margin: 1rem;
  }

  .s1920\:focus\:m-5:focus{
    margin: 1.25rem;
  }

  .s1920\:focus\:m-6:focus{
    margin: 1.5rem;
  }

  .s1920\:focus\:m-7:focus{
    margin: 1.75rem;
  }

  .s1920\:focus\:m-8:focus{
    margin: 2rem;
  }

  .s1920\:focus\:m-10:focus{
    margin: 2.5rem;
  }

  .s1920\:focus\:m-12:focus{
    margin: 3rem;
  }

  .s1920\:focus\:m-14:focus{
    margin: 3.5rem;
  }

  .s1920\:focus\:m-16:focus{
    margin: 4rem;
  }

  .s1920\:focus\:m-18:focus{
    margin: 4.5rem;
  }

  .s1920\:focus\:m-20:focus{
    margin: 5rem;
  }

  .s1920\:focus\:m-24:focus{
    margin: 6rem;
  }

  .s1920\:focus\:m-32:focus{
    margin: 8rem;
  }

  .s1920\:focus\:m-40:focus{
    margin: 10rem;
  }

  .s1920\:focus\:m-48:focus{
    margin: 12rem;
  }

  .s1920\:focus\:m-56:focus{
    margin: 14rem;
  }

  .s1920\:focus\:m-64:focus{
    margin: 16rem;
  }

  .s1920\:focus\:m-auto:focus{
    margin: auto;
  }

  .s1920\:focus\:m-px:focus{
    margin: 1px;
  }

  .s1920\:focus\:-m-1:focus{
    margin: -0.25rem;
  }

  .s1920\:focus\:-m-2:focus{
    margin: -0.5rem;
  }

  .s1920\:focus\:-m-3:focus{
    margin: -0.75rem;
  }

  .s1920\:focus\:-m-4:focus{
    margin: -1rem;
  }

  .s1920\:focus\:-m-5:focus{
    margin: -1.25rem;
  }

  .s1920\:focus\:-m-6:focus{
    margin: -1.5rem;
  }

  .s1920\:focus\:-m-8:focus{
    margin: -2rem;
  }

  .s1920\:focus\:-m-10:focus{
    margin: -2.5rem;
  }

  .s1920\:focus\:-m-12:focus{
    margin: -3rem;
  }

  .s1920\:focus\:-m-14:focus{
    margin: -3.5rem;
  }

  .s1920\:focus\:-m-16:focus{
    margin: -4rem;
  }

  .s1920\:focus\:-m-20:focus{
    margin: -5rem;
  }

  .s1920\:focus\:-m-24:focus{
    margin: -6rem;
  }

  .s1920\:focus\:-m-32:focus{
    margin: -8rem;
  }

  .s1920\:focus\:-m-40:focus{
    margin: -10rem;
  }

  .s1920\:focus\:-m-48:focus{
    margin: -12rem;
  }

  .s1920\:focus\:-m-56:focus{
    margin: -14rem;
  }

  .s1920\:focus\:-m-64:focus{
    margin: -16rem;
  }

  .s1920\:focus\:-m-px:focus{
    margin: -1px;
  }

  .s1920\:focus\:m-bin:focus{
    margin: -0.313rem;
  }

  .s1920\:focus\:-m-0\.25:focus{
    margin: -0.0625rem;
  }

  .s1920\:focus\:m-0\.25:focus{
    margin: 0.0625rem;
  }

  .s1920\:focus\:m-3\.125:focus{
    margin: 3.125rem;
  }

  .s1920\:focus\:m-modal:focus{
    margin: 6.25rem;
  }

  .s1920\:focus\:m-sidebar:focus{
    margin: 25rem;
  }

  .s1920\:focus\:my-0:focus{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1920\:focus\:mx-0:focus{
    margin-left: 0;
    margin-right: 0;
  }

  .s1920\:focus\:my-1:focus{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1920\:focus\:mx-1:focus{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1920\:focus\:my-2:focus{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1920\:focus\:mx-2:focus{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1920\:focus\:my-3:focus{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1920\:focus\:mx-3:focus{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1920\:focus\:my-4:focus{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1920\:focus\:mx-4:focus{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1920\:focus\:my-5:focus{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1920\:focus\:mx-5:focus{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1920\:focus\:my-6:focus{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1920\:focus\:mx-6:focus{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1920\:focus\:my-7:focus{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1920\:focus\:mx-7:focus{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1920\:focus\:my-8:focus{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1920\:focus\:mx-8:focus{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1920\:focus\:my-10:focus{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1920\:focus\:mx-10:focus{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1920\:focus\:my-12:focus{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1920\:focus\:mx-12:focus{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1920\:focus\:my-14:focus{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1920\:focus\:mx-14:focus{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1920\:focus\:my-16:focus{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1920\:focus\:mx-16:focus{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1920\:focus\:my-18:focus{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1920\:focus\:mx-18:focus{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1920\:focus\:my-20:focus{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1920\:focus\:mx-20:focus{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1920\:focus\:my-24:focus{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1920\:focus\:mx-24:focus{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1920\:focus\:my-32:focus{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1920\:focus\:mx-32:focus{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1920\:focus\:my-40:focus{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1920\:focus\:mx-40:focus{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1920\:focus\:my-48:focus{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1920\:focus\:mx-48:focus{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1920\:focus\:my-56:focus{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1920\:focus\:mx-56:focus{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1920\:focus\:my-64:focus{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1920\:focus\:mx-64:focus{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1920\:focus\:my-auto:focus{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1920\:focus\:mx-auto:focus{
    margin-left: auto;
    margin-right: auto;
  }

  .s1920\:focus\:my-px:focus{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1920\:focus\:mx-px:focus{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1920\:focus\:-my-1:focus{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1920\:focus\:-mx-1:focus{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1920\:focus\:-my-2:focus{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1920\:focus\:-mx-2:focus{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1920\:focus\:-my-3:focus{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1920\:focus\:-mx-3:focus{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1920\:focus\:-my-4:focus{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1920\:focus\:-mx-4:focus{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1920\:focus\:-my-5:focus{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1920\:focus\:-mx-5:focus{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1920\:focus\:-my-6:focus{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1920\:focus\:-mx-6:focus{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1920\:focus\:-my-8:focus{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1920\:focus\:-mx-8:focus{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1920\:focus\:-my-10:focus{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1920\:focus\:-mx-10:focus{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1920\:focus\:-my-12:focus{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1920\:focus\:-mx-12:focus{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1920\:focus\:-my-14:focus{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1920\:focus\:-mx-14:focus{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1920\:focus\:-my-16:focus{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1920\:focus\:-mx-16:focus{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1920\:focus\:-my-20:focus{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1920\:focus\:-mx-20:focus{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1920\:focus\:-my-24:focus{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1920\:focus\:-mx-24:focus{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1920\:focus\:-my-32:focus{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1920\:focus\:-mx-32:focus{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1920\:focus\:-my-40:focus{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1920\:focus\:-mx-40:focus{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1920\:focus\:-my-48:focus{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1920\:focus\:-mx-48:focus{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1920\:focus\:-my-56:focus{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1920\:focus\:-mx-56:focus{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1920\:focus\:-my-64:focus{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1920\:focus\:-mx-64:focus{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1920\:focus\:-my-px:focus{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1920\:focus\:-mx-px:focus{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1920\:focus\:my-bin:focus{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1920\:focus\:mx-bin:focus{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1920\:focus\:-my-0\.25:focus{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1920\:focus\:-mx-0\.25:focus{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1920\:focus\:my-0\.25:focus{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1920\:focus\:mx-0\.25:focus{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1920\:focus\:my-3\.125:focus{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1920\:focus\:mx-3\.125:focus{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1920\:focus\:my-modal:focus{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1920\:focus\:mx-modal:focus{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1920\:focus\:my-sidebar:focus{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1920\:focus\:mx-sidebar:focus{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1920\:focus\:mt-0:focus{
    margin-top: 0;
  }

  .s1920\:focus\:mr-0:focus{
    margin-right: 0;
  }

  .s1920\:focus\:mb-0:focus{
    margin-bottom: 0;
  }

  .s1920\:focus\:ml-0:focus{
    margin-left: 0;
  }

  .s1920\:focus\:mt-1:focus{
    margin-top: 0.25rem;
  }

  .s1920\:focus\:mr-1:focus{
    margin-right: 0.25rem;
  }

  .s1920\:focus\:mb-1:focus{
    margin-bottom: 0.25rem;
  }

  .s1920\:focus\:ml-1:focus{
    margin-left: 0.25rem;
  }

  .s1920\:focus\:mt-2:focus{
    margin-top: 0.5rem;
  }

  .s1920\:focus\:mr-2:focus{
    margin-right: 0.5rem;
  }

  .s1920\:focus\:mb-2:focus{
    margin-bottom: 0.5rem;
  }

  .s1920\:focus\:ml-2:focus{
    margin-left: 0.5rem;
  }

  .s1920\:focus\:mt-3:focus{
    margin-top: 0.75rem;
  }

  .s1920\:focus\:mr-3:focus{
    margin-right: 0.75rem;
  }

  .s1920\:focus\:mb-3:focus{
    margin-bottom: 0.75rem;
  }

  .s1920\:focus\:ml-3:focus{
    margin-left: 0.75rem;
  }

  .s1920\:focus\:mt-4:focus{
    margin-top: 1rem;
  }

  .s1920\:focus\:mr-4:focus{
    margin-right: 1rem;
  }

  .s1920\:focus\:mb-4:focus{
    margin-bottom: 1rem;
  }

  .s1920\:focus\:ml-4:focus{
    margin-left: 1rem;
  }

  .s1920\:focus\:mt-5:focus{
    margin-top: 1.25rem;
  }

  .s1920\:focus\:mr-5:focus{
    margin-right: 1.25rem;
  }

  .s1920\:focus\:mb-5:focus{
    margin-bottom: 1.25rem;
  }

  .s1920\:focus\:ml-5:focus{
    margin-left: 1.25rem;
  }

  .s1920\:focus\:mt-6:focus{
    margin-top: 1.5rem;
  }

  .s1920\:focus\:mr-6:focus{
    margin-right: 1.5rem;
  }

  .s1920\:focus\:mb-6:focus{
    margin-bottom: 1.5rem;
  }

  .s1920\:focus\:ml-6:focus{
    margin-left: 1.5rem;
  }

  .s1920\:focus\:mt-7:focus{
    margin-top: 1.75rem;
  }

  .s1920\:focus\:mr-7:focus{
    margin-right: 1.75rem;
  }

  .s1920\:focus\:mb-7:focus{
    margin-bottom: 1.75rem;
  }

  .s1920\:focus\:ml-7:focus{
    margin-left: 1.75rem;
  }

  .s1920\:focus\:mt-8:focus{
    margin-top: 2rem;
  }

  .s1920\:focus\:mr-8:focus{
    margin-right: 2rem;
  }

  .s1920\:focus\:mb-8:focus{
    margin-bottom: 2rem;
  }

  .s1920\:focus\:ml-8:focus{
    margin-left: 2rem;
  }

  .s1920\:focus\:mt-10:focus{
    margin-top: 2.5rem;
  }

  .s1920\:focus\:mr-10:focus{
    margin-right: 2.5rem;
  }

  .s1920\:focus\:mb-10:focus{
    margin-bottom: 2.5rem;
  }

  .s1920\:focus\:ml-10:focus{
    margin-left: 2.5rem;
  }

  .s1920\:focus\:mt-12:focus{
    margin-top: 3rem;
  }

  .s1920\:focus\:mr-12:focus{
    margin-right: 3rem;
  }

  .s1920\:focus\:mb-12:focus{
    margin-bottom: 3rem;
  }

  .s1920\:focus\:ml-12:focus{
    margin-left: 3rem;
  }

  .s1920\:focus\:mt-14:focus{
    margin-top: 3.5rem;
  }

  .s1920\:focus\:mr-14:focus{
    margin-right: 3.5rem;
  }

  .s1920\:focus\:mb-14:focus{
    margin-bottom: 3.5rem;
  }

  .s1920\:focus\:ml-14:focus{
    margin-left: 3.5rem;
  }

  .s1920\:focus\:mt-16:focus{
    margin-top: 4rem;
  }

  .s1920\:focus\:mr-16:focus{
    margin-right: 4rem;
  }

  .s1920\:focus\:mb-16:focus{
    margin-bottom: 4rem;
  }

  .s1920\:focus\:ml-16:focus{
    margin-left: 4rem;
  }

  .s1920\:focus\:mt-18:focus{
    margin-top: 4.5rem;
  }

  .s1920\:focus\:mr-18:focus{
    margin-right: 4.5rem;
  }

  .s1920\:focus\:mb-18:focus{
    margin-bottom: 4.5rem;
  }

  .s1920\:focus\:ml-18:focus{
    margin-left: 4.5rem;
  }

  .s1920\:focus\:mt-20:focus{
    margin-top: 5rem;
  }

  .s1920\:focus\:mr-20:focus{
    margin-right: 5rem;
  }

  .s1920\:focus\:mb-20:focus{
    margin-bottom: 5rem;
  }

  .s1920\:focus\:ml-20:focus{
    margin-left: 5rem;
  }

  .s1920\:focus\:mt-24:focus{
    margin-top: 6rem;
  }

  .s1920\:focus\:mr-24:focus{
    margin-right: 6rem;
  }

  .s1920\:focus\:mb-24:focus{
    margin-bottom: 6rem;
  }

  .s1920\:focus\:ml-24:focus{
    margin-left: 6rem;
  }

  .s1920\:focus\:mt-32:focus{
    margin-top: 8rem;
  }

  .s1920\:focus\:mr-32:focus{
    margin-right: 8rem;
  }

  .s1920\:focus\:mb-32:focus{
    margin-bottom: 8rem;
  }

  .s1920\:focus\:ml-32:focus{
    margin-left: 8rem;
  }

  .s1920\:focus\:mt-40:focus{
    margin-top: 10rem;
  }

  .s1920\:focus\:mr-40:focus{
    margin-right: 10rem;
  }

  .s1920\:focus\:mb-40:focus{
    margin-bottom: 10rem;
  }

  .s1920\:focus\:ml-40:focus{
    margin-left: 10rem;
  }

  .s1920\:focus\:mt-48:focus{
    margin-top: 12rem;
  }

  .s1920\:focus\:mr-48:focus{
    margin-right: 12rem;
  }

  .s1920\:focus\:mb-48:focus{
    margin-bottom: 12rem;
  }

  .s1920\:focus\:ml-48:focus{
    margin-left: 12rem;
  }

  .s1920\:focus\:mt-56:focus{
    margin-top: 14rem;
  }

  .s1920\:focus\:mr-56:focus{
    margin-right: 14rem;
  }

  .s1920\:focus\:mb-56:focus{
    margin-bottom: 14rem;
  }

  .s1920\:focus\:ml-56:focus{
    margin-left: 14rem;
  }

  .s1920\:focus\:mt-64:focus{
    margin-top: 16rem;
  }

  .s1920\:focus\:mr-64:focus{
    margin-right: 16rem;
  }

  .s1920\:focus\:mb-64:focus{
    margin-bottom: 16rem;
  }

  .s1920\:focus\:ml-64:focus{
    margin-left: 16rem;
  }

  .s1920\:focus\:mt-auto:focus{
    margin-top: auto;
  }

  .s1920\:focus\:mr-auto:focus{
    margin-right: auto;
  }

  .s1920\:focus\:mb-auto:focus{
    margin-bottom: auto;
  }

  .s1920\:focus\:ml-auto:focus{
    margin-left: auto;
  }

  .s1920\:focus\:mt-px:focus{
    margin-top: 1px;
  }

  .s1920\:focus\:mr-px:focus{
    margin-right: 1px;
  }

  .s1920\:focus\:mb-px:focus{
    margin-bottom: 1px;
  }

  .s1920\:focus\:ml-px:focus{
    margin-left: 1px;
  }

  .s1920\:focus\:-mt-1:focus{
    margin-top: -0.25rem;
  }

  .s1920\:focus\:-mr-1:focus{
    margin-right: -0.25rem;
  }

  .s1920\:focus\:-mb-1:focus{
    margin-bottom: -0.25rem;
  }

  .s1920\:focus\:-ml-1:focus{
    margin-left: -0.25rem;
  }

  .s1920\:focus\:-mt-2:focus{
    margin-top: -0.5rem;
  }

  .s1920\:focus\:-mr-2:focus{
    margin-right: -0.5rem;
  }

  .s1920\:focus\:-mb-2:focus{
    margin-bottom: -0.5rem;
  }

  .s1920\:focus\:-ml-2:focus{
    margin-left: -0.5rem;
  }

  .s1920\:focus\:-mt-3:focus{
    margin-top: -0.75rem;
  }

  .s1920\:focus\:-mr-3:focus{
    margin-right: -0.75rem;
  }

  .s1920\:focus\:-mb-3:focus{
    margin-bottom: -0.75rem;
  }

  .s1920\:focus\:-ml-3:focus{
    margin-left: -0.75rem;
  }

  .s1920\:focus\:-mt-4:focus{
    margin-top: -1rem;
  }

  .s1920\:focus\:-mr-4:focus{
    margin-right: -1rem;
  }

  .s1920\:focus\:-mb-4:focus{
    margin-bottom: -1rem;
  }

  .s1920\:focus\:-ml-4:focus{
    margin-left: -1rem;
  }

  .s1920\:focus\:-mt-5:focus{
    margin-top: -1.25rem;
  }

  .s1920\:focus\:-mr-5:focus{
    margin-right: -1.25rem;
  }

  .s1920\:focus\:-mb-5:focus{
    margin-bottom: -1.25rem;
  }

  .s1920\:focus\:-ml-5:focus{
    margin-left: -1.25rem;
  }

  .s1920\:focus\:-mt-6:focus{
    margin-top: -1.5rem;
  }

  .s1920\:focus\:-mr-6:focus{
    margin-right: -1.5rem;
  }

  .s1920\:focus\:-mb-6:focus{
    margin-bottom: -1.5rem;
  }

  .s1920\:focus\:-ml-6:focus{
    margin-left: -1.5rem;
  }

  .s1920\:focus\:-mt-8:focus{
    margin-top: -2rem;
  }

  .s1920\:focus\:-mr-8:focus{
    margin-right: -2rem;
  }

  .s1920\:focus\:-mb-8:focus{
    margin-bottom: -2rem;
  }

  .s1920\:focus\:-ml-8:focus{
    margin-left: -2rem;
  }

  .s1920\:focus\:-mt-10:focus{
    margin-top: -2.5rem;
  }

  .s1920\:focus\:-mr-10:focus{
    margin-right: -2.5rem;
  }

  .s1920\:focus\:-mb-10:focus{
    margin-bottom: -2.5rem;
  }

  .s1920\:focus\:-ml-10:focus{
    margin-left: -2.5rem;
  }

  .s1920\:focus\:-mt-12:focus{
    margin-top: -3rem;
  }

  .s1920\:focus\:-mr-12:focus{
    margin-right: -3rem;
  }

  .s1920\:focus\:-mb-12:focus{
    margin-bottom: -3rem;
  }

  .s1920\:focus\:-ml-12:focus{
    margin-left: -3rem;
  }

  .s1920\:focus\:-mt-14:focus{
    margin-top: -3.5rem;
  }

  .s1920\:focus\:-mr-14:focus{
    margin-right: -3.5rem;
  }

  .s1920\:focus\:-mb-14:focus{
    margin-bottom: -3.5rem;
  }

  .s1920\:focus\:-ml-14:focus{
    margin-left: -3.5rem;
  }

  .s1920\:focus\:-mt-16:focus{
    margin-top: -4rem;
  }

  .s1920\:focus\:-mr-16:focus{
    margin-right: -4rem;
  }

  .s1920\:focus\:-mb-16:focus{
    margin-bottom: -4rem;
  }

  .s1920\:focus\:-ml-16:focus{
    margin-left: -4rem;
  }

  .s1920\:focus\:-mt-20:focus{
    margin-top: -5rem;
  }

  .s1920\:focus\:-mr-20:focus{
    margin-right: -5rem;
  }

  .s1920\:focus\:-mb-20:focus{
    margin-bottom: -5rem;
  }

  .s1920\:focus\:-ml-20:focus{
    margin-left: -5rem;
  }

  .s1920\:focus\:-mt-24:focus{
    margin-top: -6rem;
  }

  .s1920\:focus\:-mr-24:focus{
    margin-right: -6rem;
  }

  .s1920\:focus\:-mb-24:focus{
    margin-bottom: -6rem;
  }

  .s1920\:focus\:-ml-24:focus{
    margin-left: -6rem;
  }

  .s1920\:focus\:-mt-32:focus{
    margin-top: -8rem;
  }

  .s1920\:focus\:-mr-32:focus{
    margin-right: -8rem;
  }

  .s1920\:focus\:-mb-32:focus{
    margin-bottom: -8rem;
  }

  .s1920\:focus\:-ml-32:focus{
    margin-left: -8rem;
  }

  .s1920\:focus\:-mt-40:focus{
    margin-top: -10rem;
  }

  .s1920\:focus\:-mr-40:focus{
    margin-right: -10rem;
  }

  .s1920\:focus\:-mb-40:focus{
    margin-bottom: -10rem;
  }

  .s1920\:focus\:-ml-40:focus{
    margin-left: -10rem;
  }

  .s1920\:focus\:-mt-48:focus{
    margin-top: -12rem;
  }

  .s1920\:focus\:-mr-48:focus{
    margin-right: -12rem;
  }

  .s1920\:focus\:-mb-48:focus{
    margin-bottom: -12rem;
  }

  .s1920\:focus\:-ml-48:focus{
    margin-left: -12rem;
  }

  .s1920\:focus\:-mt-56:focus{
    margin-top: -14rem;
  }

  .s1920\:focus\:-mr-56:focus{
    margin-right: -14rem;
  }

  .s1920\:focus\:-mb-56:focus{
    margin-bottom: -14rem;
  }

  .s1920\:focus\:-ml-56:focus{
    margin-left: -14rem;
  }

  .s1920\:focus\:-mt-64:focus{
    margin-top: -16rem;
  }

  .s1920\:focus\:-mr-64:focus{
    margin-right: -16rem;
  }

  .s1920\:focus\:-mb-64:focus{
    margin-bottom: -16rem;
  }

  .s1920\:focus\:-ml-64:focus{
    margin-left: -16rem;
  }

  .s1920\:focus\:-mt-px:focus{
    margin-top: -1px;
  }

  .s1920\:focus\:-mr-px:focus{
    margin-right: -1px;
  }

  .s1920\:focus\:-mb-px:focus{
    margin-bottom: -1px;
  }

  .s1920\:focus\:-ml-px:focus{
    margin-left: -1px;
  }

  .s1920\:focus\:mt-bin:focus{
    margin-top: -0.313rem;
  }

  .s1920\:focus\:mr-bin:focus{
    margin-right: -0.313rem;
  }

  .s1920\:focus\:mb-bin:focus{
    margin-bottom: -0.313rem;
  }

  .s1920\:focus\:ml-bin:focus{
    margin-left: -0.313rem;
  }

  .s1920\:focus\:-mt-0\.25:focus{
    margin-top: -0.0625rem;
  }

  .s1920\:focus\:-mr-0\.25:focus{
    margin-right: -0.0625rem;
  }

  .s1920\:focus\:-mb-0\.25:focus{
    margin-bottom: -0.0625rem;
  }

  .s1920\:focus\:-ml-0\.25:focus{
    margin-left: -0.0625rem;
  }

  .s1920\:focus\:mt-0\.25:focus{
    margin-top: 0.0625rem;
  }

  .s1920\:focus\:mr-0\.25:focus{
    margin-right: 0.0625rem;
  }

  .s1920\:focus\:mb-0\.25:focus{
    margin-bottom: 0.0625rem;
  }

  .s1920\:focus\:ml-0\.25:focus{
    margin-left: 0.0625rem;
  }

  .s1920\:focus\:mt-3\.125:focus{
    margin-top: 3.125rem;
  }

  .s1920\:focus\:mr-3\.125:focus{
    margin-right: 3.125rem;
  }

  .s1920\:focus\:mb-3\.125:focus{
    margin-bottom: 3.125rem;
  }

  .s1920\:focus\:ml-3\.125:focus{
    margin-left: 3.125rem;
  }

  .s1920\:focus\:mt-modal:focus{
    margin-top: 6.25rem;
  }

  .s1920\:focus\:mr-modal:focus{
    margin-right: 6.25rem;
  }

  .s1920\:focus\:mb-modal:focus{
    margin-bottom: 6.25rem;
  }

  .s1920\:focus\:ml-modal:focus{
    margin-left: 6.25rem;
  }

  .s1920\:focus\:mt-sidebar:focus{
    margin-top: 25rem;
  }

  .s1920\:focus\:mr-sidebar:focus{
    margin-right: 25rem;
  }

  .s1920\:focus\:mb-sidebar:focus{
    margin-bottom: 25rem;
  }

  .s1920\:focus\:ml-sidebar:focus{
    margin-left: 25rem;
  }

  .s1920\:active\:m-0:active{
    margin: 0;
  }

  .s1920\:active\:m-1:active{
    margin: 0.25rem;
  }

  .s1920\:active\:m-2:active{
    margin: 0.5rem;
  }

  .s1920\:active\:m-3:active{
    margin: 0.75rem;
  }

  .s1920\:active\:m-4:active{
    margin: 1rem;
  }

  .s1920\:active\:m-5:active{
    margin: 1.25rem;
  }

  .s1920\:active\:m-6:active{
    margin: 1.5rem;
  }

  .s1920\:active\:m-7:active{
    margin: 1.75rem;
  }

  .s1920\:active\:m-8:active{
    margin: 2rem;
  }

  .s1920\:active\:m-10:active{
    margin: 2.5rem;
  }

  .s1920\:active\:m-12:active{
    margin: 3rem;
  }

  .s1920\:active\:m-14:active{
    margin: 3.5rem;
  }

  .s1920\:active\:m-16:active{
    margin: 4rem;
  }

  .s1920\:active\:m-18:active{
    margin: 4.5rem;
  }

  .s1920\:active\:m-20:active{
    margin: 5rem;
  }

  .s1920\:active\:m-24:active{
    margin: 6rem;
  }

  .s1920\:active\:m-32:active{
    margin: 8rem;
  }

  .s1920\:active\:m-40:active{
    margin: 10rem;
  }

  .s1920\:active\:m-48:active{
    margin: 12rem;
  }

  .s1920\:active\:m-56:active{
    margin: 14rem;
  }

  .s1920\:active\:m-64:active{
    margin: 16rem;
  }

  .s1920\:active\:m-auto:active{
    margin: auto;
  }

  .s1920\:active\:m-px:active{
    margin: 1px;
  }

  .s1920\:active\:-m-1:active{
    margin: -0.25rem;
  }

  .s1920\:active\:-m-2:active{
    margin: -0.5rem;
  }

  .s1920\:active\:-m-3:active{
    margin: -0.75rem;
  }

  .s1920\:active\:-m-4:active{
    margin: -1rem;
  }

  .s1920\:active\:-m-5:active{
    margin: -1.25rem;
  }

  .s1920\:active\:-m-6:active{
    margin: -1.5rem;
  }

  .s1920\:active\:-m-8:active{
    margin: -2rem;
  }

  .s1920\:active\:-m-10:active{
    margin: -2.5rem;
  }

  .s1920\:active\:-m-12:active{
    margin: -3rem;
  }

  .s1920\:active\:-m-14:active{
    margin: -3.5rem;
  }

  .s1920\:active\:-m-16:active{
    margin: -4rem;
  }

  .s1920\:active\:-m-20:active{
    margin: -5rem;
  }

  .s1920\:active\:-m-24:active{
    margin: -6rem;
  }

  .s1920\:active\:-m-32:active{
    margin: -8rem;
  }

  .s1920\:active\:-m-40:active{
    margin: -10rem;
  }

  .s1920\:active\:-m-48:active{
    margin: -12rem;
  }

  .s1920\:active\:-m-56:active{
    margin: -14rem;
  }

  .s1920\:active\:-m-64:active{
    margin: -16rem;
  }

  .s1920\:active\:-m-px:active{
    margin: -1px;
  }

  .s1920\:active\:m-bin:active{
    margin: -0.313rem;
  }

  .s1920\:active\:-m-0\.25:active{
    margin: -0.0625rem;
  }

  .s1920\:active\:m-0\.25:active{
    margin: 0.0625rem;
  }

  .s1920\:active\:m-3\.125:active{
    margin: 3.125rem;
  }

  .s1920\:active\:m-modal:active{
    margin: 6.25rem;
  }

  .s1920\:active\:m-sidebar:active{
    margin: 25rem;
  }

  .s1920\:active\:my-0:active{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1920\:active\:mx-0:active{
    margin-left: 0;
    margin-right: 0;
  }

  .s1920\:active\:my-1:active{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1920\:active\:mx-1:active{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1920\:active\:my-2:active{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1920\:active\:mx-2:active{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1920\:active\:my-3:active{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1920\:active\:mx-3:active{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1920\:active\:my-4:active{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1920\:active\:mx-4:active{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1920\:active\:my-5:active{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1920\:active\:mx-5:active{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1920\:active\:my-6:active{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1920\:active\:mx-6:active{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1920\:active\:my-7:active{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1920\:active\:mx-7:active{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1920\:active\:my-8:active{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1920\:active\:mx-8:active{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1920\:active\:my-10:active{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1920\:active\:mx-10:active{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1920\:active\:my-12:active{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1920\:active\:mx-12:active{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1920\:active\:my-14:active{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1920\:active\:mx-14:active{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1920\:active\:my-16:active{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1920\:active\:mx-16:active{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1920\:active\:my-18:active{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1920\:active\:mx-18:active{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1920\:active\:my-20:active{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1920\:active\:mx-20:active{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1920\:active\:my-24:active{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1920\:active\:mx-24:active{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1920\:active\:my-32:active{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1920\:active\:mx-32:active{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1920\:active\:my-40:active{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1920\:active\:mx-40:active{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1920\:active\:my-48:active{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1920\:active\:mx-48:active{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1920\:active\:my-56:active{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1920\:active\:mx-56:active{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1920\:active\:my-64:active{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1920\:active\:mx-64:active{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1920\:active\:my-auto:active{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1920\:active\:mx-auto:active{
    margin-left: auto;
    margin-right: auto;
  }

  .s1920\:active\:my-px:active{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1920\:active\:mx-px:active{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1920\:active\:-my-1:active{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1920\:active\:-mx-1:active{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1920\:active\:-my-2:active{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1920\:active\:-mx-2:active{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1920\:active\:-my-3:active{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1920\:active\:-mx-3:active{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1920\:active\:-my-4:active{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1920\:active\:-mx-4:active{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1920\:active\:-my-5:active{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1920\:active\:-mx-5:active{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1920\:active\:-my-6:active{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1920\:active\:-mx-6:active{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1920\:active\:-my-8:active{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1920\:active\:-mx-8:active{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1920\:active\:-my-10:active{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1920\:active\:-mx-10:active{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1920\:active\:-my-12:active{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1920\:active\:-mx-12:active{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1920\:active\:-my-14:active{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1920\:active\:-mx-14:active{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1920\:active\:-my-16:active{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1920\:active\:-mx-16:active{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1920\:active\:-my-20:active{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1920\:active\:-mx-20:active{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1920\:active\:-my-24:active{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1920\:active\:-mx-24:active{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1920\:active\:-my-32:active{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1920\:active\:-mx-32:active{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1920\:active\:-my-40:active{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1920\:active\:-mx-40:active{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1920\:active\:-my-48:active{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1920\:active\:-mx-48:active{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1920\:active\:-my-56:active{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1920\:active\:-mx-56:active{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1920\:active\:-my-64:active{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1920\:active\:-mx-64:active{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1920\:active\:-my-px:active{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1920\:active\:-mx-px:active{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1920\:active\:my-bin:active{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1920\:active\:mx-bin:active{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1920\:active\:-my-0\.25:active{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1920\:active\:-mx-0\.25:active{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1920\:active\:my-0\.25:active{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1920\:active\:mx-0\.25:active{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1920\:active\:my-3\.125:active{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1920\:active\:mx-3\.125:active{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1920\:active\:my-modal:active{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1920\:active\:mx-modal:active{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1920\:active\:my-sidebar:active{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1920\:active\:mx-sidebar:active{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1920\:active\:mt-0:active{
    margin-top: 0;
  }

  .s1920\:active\:mr-0:active{
    margin-right: 0;
  }

  .s1920\:active\:mb-0:active{
    margin-bottom: 0;
  }

  .s1920\:active\:ml-0:active{
    margin-left: 0;
  }

  .s1920\:active\:mt-1:active{
    margin-top: 0.25rem;
  }

  .s1920\:active\:mr-1:active{
    margin-right: 0.25rem;
  }

  .s1920\:active\:mb-1:active{
    margin-bottom: 0.25rem;
  }

  .s1920\:active\:ml-1:active{
    margin-left: 0.25rem;
  }

  .s1920\:active\:mt-2:active{
    margin-top: 0.5rem;
  }

  .s1920\:active\:mr-2:active{
    margin-right: 0.5rem;
  }

  .s1920\:active\:mb-2:active{
    margin-bottom: 0.5rem;
  }

  .s1920\:active\:ml-2:active{
    margin-left: 0.5rem;
  }

  .s1920\:active\:mt-3:active{
    margin-top: 0.75rem;
  }

  .s1920\:active\:mr-3:active{
    margin-right: 0.75rem;
  }

  .s1920\:active\:mb-3:active{
    margin-bottom: 0.75rem;
  }

  .s1920\:active\:ml-3:active{
    margin-left: 0.75rem;
  }

  .s1920\:active\:mt-4:active{
    margin-top: 1rem;
  }

  .s1920\:active\:mr-4:active{
    margin-right: 1rem;
  }

  .s1920\:active\:mb-4:active{
    margin-bottom: 1rem;
  }

  .s1920\:active\:ml-4:active{
    margin-left: 1rem;
  }

  .s1920\:active\:mt-5:active{
    margin-top: 1.25rem;
  }

  .s1920\:active\:mr-5:active{
    margin-right: 1.25rem;
  }

  .s1920\:active\:mb-5:active{
    margin-bottom: 1.25rem;
  }

  .s1920\:active\:ml-5:active{
    margin-left: 1.25rem;
  }

  .s1920\:active\:mt-6:active{
    margin-top: 1.5rem;
  }

  .s1920\:active\:mr-6:active{
    margin-right: 1.5rem;
  }

  .s1920\:active\:mb-6:active{
    margin-bottom: 1.5rem;
  }

  .s1920\:active\:ml-6:active{
    margin-left: 1.5rem;
  }

  .s1920\:active\:mt-7:active{
    margin-top: 1.75rem;
  }

  .s1920\:active\:mr-7:active{
    margin-right: 1.75rem;
  }

  .s1920\:active\:mb-7:active{
    margin-bottom: 1.75rem;
  }

  .s1920\:active\:ml-7:active{
    margin-left: 1.75rem;
  }

  .s1920\:active\:mt-8:active{
    margin-top: 2rem;
  }

  .s1920\:active\:mr-8:active{
    margin-right: 2rem;
  }

  .s1920\:active\:mb-8:active{
    margin-bottom: 2rem;
  }

  .s1920\:active\:ml-8:active{
    margin-left: 2rem;
  }

  .s1920\:active\:mt-10:active{
    margin-top: 2.5rem;
  }

  .s1920\:active\:mr-10:active{
    margin-right: 2.5rem;
  }

  .s1920\:active\:mb-10:active{
    margin-bottom: 2.5rem;
  }

  .s1920\:active\:ml-10:active{
    margin-left: 2.5rem;
  }

  .s1920\:active\:mt-12:active{
    margin-top: 3rem;
  }

  .s1920\:active\:mr-12:active{
    margin-right: 3rem;
  }

  .s1920\:active\:mb-12:active{
    margin-bottom: 3rem;
  }

  .s1920\:active\:ml-12:active{
    margin-left: 3rem;
  }

  .s1920\:active\:mt-14:active{
    margin-top: 3.5rem;
  }

  .s1920\:active\:mr-14:active{
    margin-right: 3.5rem;
  }

  .s1920\:active\:mb-14:active{
    margin-bottom: 3.5rem;
  }

  .s1920\:active\:ml-14:active{
    margin-left: 3.5rem;
  }

  .s1920\:active\:mt-16:active{
    margin-top: 4rem;
  }

  .s1920\:active\:mr-16:active{
    margin-right: 4rem;
  }

  .s1920\:active\:mb-16:active{
    margin-bottom: 4rem;
  }

  .s1920\:active\:ml-16:active{
    margin-left: 4rem;
  }

  .s1920\:active\:mt-18:active{
    margin-top: 4.5rem;
  }

  .s1920\:active\:mr-18:active{
    margin-right: 4.5rem;
  }

  .s1920\:active\:mb-18:active{
    margin-bottom: 4.5rem;
  }

  .s1920\:active\:ml-18:active{
    margin-left: 4.5rem;
  }

  .s1920\:active\:mt-20:active{
    margin-top: 5rem;
  }

  .s1920\:active\:mr-20:active{
    margin-right: 5rem;
  }

  .s1920\:active\:mb-20:active{
    margin-bottom: 5rem;
  }

  .s1920\:active\:ml-20:active{
    margin-left: 5rem;
  }

  .s1920\:active\:mt-24:active{
    margin-top: 6rem;
  }

  .s1920\:active\:mr-24:active{
    margin-right: 6rem;
  }

  .s1920\:active\:mb-24:active{
    margin-bottom: 6rem;
  }

  .s1920\:active\:ml-24:active{
    margin-left: 6rem;
  }

  .s1920\:active\:mt-32:active{
    margin-top: 8rem;
  }

  .s1920\:active\:mr-32:active{
    margin-right: 8rem;
  }

  .s1920\:active\:mb-32:active{
    margin-bottom: 8rem;
  }

  .s1920\:active\:ml-32:active{
    margin-left: 8rem;
  }

  .s1920\:active\:mt-40:active{
    margin-top: 10rem;
  }

  .s1920\:active\:mr-40:active{
    margin-right: 10rem;
  }

  .s1920\:active\:mb-40:active{
    margin-bottom: 10rem;
  }

  .s1920\:active\:ml-40:active{
    margin-left: 10rem;
  }

  .s1920\:active\:mt-48:active{
    margin-top: 12rem;
  }

  .s1920\:active\:mr-48:active{
    margin-right: 12rem;
  }

  .s1920\:active\:mb-48:active{
    margin-bottom: 12rem;
  }

  .s1920\:active\:ml-48:active{
    margin-left: 12rem;
  }

  .s1920\:active\:mt-56:active{
    margin-top: 14rem;
  }

  .s1920\:active\:mr-56:active{
    margin-right: 14rem;
  }

  .s1920\:active\:mb-56:active{
    margin-bottom: 14rem;
  }

  .s1920\:active\:ml-56:active{
    margin-left: 14rem;
  }

  .s1920\:active\:mt-64:active{
    margin-top: 16rem;
  }

  .s1920\:active\:mr-64:active{
    margin-right: 16rem;
  }

  .s1920\:active\:mb-64:active{
    margin-bottom: 16rem;
  }

  .s1920\:active\:ml-64:active{
    margin-left: 16rem;
  }

  .s1920\:active\:mt-auto:active{
    margin-top: auto;
  }

  .s1920\:active\:mr-auto:active{
    margin-right: auto;
  }

  .s1920\:active\:mb-auto:active{
    margin-bottom: auto;
  }

  .s1920\:active\:ml-auto:active{
    margin-left: auto;
  }

  .s1920\:active\:mt-px:active{
    margin-top: 1px;
  }

  .s1920\:active\:mr-px:active{
    margin-right: 1px;
  }

  .s1920\:active\:mb-px:active{
    margin-bottom: 1px;
  }

  .s1920\:active\:ml-px:active{
    margin-left: 1px;
  }

  .s1920\:active\:-mt-1:active{
    margin-top: -0.25rem;
  }

  .s1920\:active\:-mr-1:active{
    margin-right: -0.25rem;
  }

  .s1920\:active\:-mb-1:active{
    margin-bottom: -0.25rem;
  }

  .s1920\:active\:-ml-1:active{
    margin-left: -0.25rem;
  }

  .s1920\:active\:-mt-2:active{
    margin-top: -0.5rem;
  }

  .s1920\:active\:-mr-2:active{
    margin-right: -0.5rem;
  }

  .s1920\:active\:-mb-2:active{
    margin-bottom: -0.5rem;
  }

  .s1920\:active\:-ml-2:active{
    margin-left: -0.5rem;
  }

  .s1920\:active\:-mt-3:active{
    margin-top: -0.75rem;
  }

  .s1920\:active\:-mr-3:active{
    margin-right: -0.75rem;
  }

  .s1920\:active\:-mb-3:active{
    margin-bottom: -0.75rem;
  }

  .s1920\:active\:-ml-3:active{
    margin-left: -0.75rem;
  }

  .s1920\:active\:-mt-4:active{
    margin-top: -1rem;
  }

  .s1920\:active\:-mr-4:active{
    margin-right: -1rem;
  }

  .s1920\:active\:-mb-4:active{
    margin-bottom: -1rem;
  }

  .s1920\:active\:-ml-4:active{
    margin-left: -1rem;
  }

  .s1920\:active\:-mt-5:active{
    margin-top: -1.25rem;
  }

  .s1920\:active\:-mr-5:active{
    margin-right: -1.25rem;
  }

  .s1920\:active\:-mb-5:active{
    margin-bottom: -1.25rem;
  }

  .s1920\:active\:-ml-5:active{
    margin-left: -1.25rem;
  }

  .s1920\:active\:-mt-6:active{
    margin-top: -1.5rem;
  }

  .s1920\:active\:-mr-6:active{
    margin-right: -1.5rem;
  }

  .s1920\:active\:-mb-6:active{
    margin-bottom: -1.5rem;
  }

  .s1920\:active\:-ml-6:active{
    margin-left: -1.5rem;
  }

  .s1920\:active\:-mt-8:active{
    margin-top: -2rem;
  }

  .s1920\:active\:-mr-8:active{
    margin-right: -2rem;
  }

  .s1920\:active\:-mb-8:active{
    margin-bottom: -2rem;
  }

  .s1920\:active\:-ml-8:active{
    margin-left: -2rem;
  }

  .s1920\:active\:-mt-10:active{
    margin-top: -2.5rem;
  }

  .s1920\:active\:-mr-10:active{
    margin-right: -2.5rem;
  }

  .s1920\:active\:-mb-10:active{
    margin-bottom: -2.5rem;
  }

  .s1920\:active\:-ml-10:active{
    margin-left: -2.5rem;
  }

  .s1920\:active\:-mt-12:active{
    margin-top: -3rem;
  }

  .s1920\:active\:-mr-12:active{
    margin-right: -3rem;
  }

  .s1920\:active\:-mb-12:active{
    margin-bottom: -3rem;
  }

  .s1920\:active\:-ml-12:active{
    margin-left: -3rem;
  }

  .s1920\:active\:-mt-14:active{
    margin-top: -3.5rem;
  }

  .s1920\:active\:-mr-14:active{
    margin-right: -3.5rem;
  }

  .s1920\:active\:-mb-14:active{
    margin-bottom: -3.5rem;
  }

  .s1920\:active\:-ml-14:active{
    margin-left: -3.5rem;
  }

  .s1920\:active\:-mt-16:active{
    margin-top: -4rem;
  }

  .s1920\:active\:-mr-16:active{
    margin-right: -4rem;
  }

  .s1920\:active\:-mb-16:active{
    margin-bottom: -4rem;
  }

  .s1920\:active\:-ml-16:active{
    margin-left: -4rem;
  }

  .s1920\:active\:-mt-20:active{
    margin-top: -5rem;
  }

  .s1920\:active\:-mr-20:active{
    margin-right: -5rem;
  }

  .s1920\:active\:-mb-20:active{
    margin-bottom: -5rem;
  }

  .s1920\:active\:-ml-20:active{
    margin-left: -5rem;
  }

  .s1920\:active\:-mt-24:active{
    margin-top: -6rem;
  }

  .s1920\:active\:-mr-24:active{
    margin-right: -6rem;
  }

  .s1920\:active\:-mb-24:active{
    margin-bottom: -6rem;
  }

  .s1920\:active\:-ml-24:active{
    margin-left: -6rem;
  }

  .s1920\:active\:-mt-32:active{
    margin-top: -8rem;
  }

  .s1920\:active\:-mr-32:active{
    margin-right: -8rem;
  }

  .s1920\:active\:-mb-32:active{
    margin-bottom: -8rem;
  }

  .s1920\:active\:-ml-32:active{
    margin-left: -8rem;
  }

  .s1920\:active\:-mt-40:active{
    margin-top: -10rem;
  }

  .s1920\:active\:-mr-40:active{
    margin-right: -10rem;
  }

  .s1920\:active\:-mb-40:active{
    margin-bottom: -10rem;
  }

  .s1920\:active\:-ml-40:active{
    margin-left: -10rem;
  }

  .s1920\:active\:-mt-48:active{
    margin-top: -12rem;
  }

  .s1920\:active\:-mr-48:active{
    margin-right: -12rem;
  }

  .s1920\:active\:-mb-48:active{
    margin-bottom: -12rem;
  }

  .s1920\:active\:-ml-48:active{
    margin-left: -12rem;
  }

  .s1920\:active\:-mt-56:active{
    margin-top: -14rem;
  }

  .s1920\:active\:-mr-56:active{
    margin-right: -14rem;
  }

  .s1920\:active\:-mb-56:active{
    margin-bottom: -14rem;
  }

  .s1920\:active\:-ml-56:active{
    margin-left: -14rem;
  }

  .s1920\:active\:-mt-64:active{
    margin-top: -16rem;
  }

  .s1920\:active\:-mr-64:active{
    margin-right: -16rem;
  }

  .s1920\:active\:-mb-64:active{
    margin-bottom: -16rem;
  }

  .s1920\:active\:-ml-64:active{
    margin-left: -16rem;
  }

  .s1920\:active\:-mt-px:active{
    margin-top: -1px;
  }

  .s1920\:active\:-mr-px:active{
    margin-right: -1px;
  }

  .s1920\:active\:-mb-px:active{
    margin-bottom: -1px;
  }

  .s1920\:active\:-ml-px:active{
    margin-left: -1px;
  }

  .s1920\:active\:mt-bin:active{
    margin-top: -0.313rem;
  }

  .s1920\:active\:mr-bin:active{
    margin-right: -0.313rem;
  }

  .s1920\:active\:mb-bin:active{
    margin-bottom: -0.313rem;
  }

  .s1920\:active\:ml-bin:active{
    margin-left: -0.313rem;
  }

  .s1920\:active\:-mt-0\.25:active{
    margin-top: -0.0625rem;
  }

  .s1920\:active\:-mr-0\.25:active{
    margin-right: -0.0625rem;
  }

  .s1920\:active\:-mb-0\.25:active{
    margin-bottom: -0.0625rem;
  }

  .s1920\:active\:-ml-0\.25:active{
    margin-left: -0.0625rem;
  }

  .s1920\:active\:mt-0\.25:active{
    margin-top: 0.0625rem;
  }

  .s1920\:active\:mr-0\.25:active{
    margin-right: 0.0625rem;
  }

  .s1920\:active\:mb-0\.25:active{
    margin-bottom: 0.0625rem;
  }

  .s1920\:active\:ml-0\.25:active{
    margin-left: 0.0625rem;
  }

  .s1920\:active\:mt-3\.125:active{
    margin-top: 3.125rem;
  }

  .s1920\:active\:mr-3\.125:active{
    margin-right: 3.125rem;
  }

  .s1920\:active\:mb-3\.125:active{
    margin-bottom: 3.125rem;
  }

  .s1920\:active\:ml-3\.125:active{
    margin-left: 3.125rem;
  }

  .s1920\:active\:mt-modal:active{
    margin-top: 6.25rem;
  }

  .s1920\:active\:mr-modal:active{
    margin-right: 6.25rem;
  }

  .s1920\:active\:mb-modal:active{
    margin-bottom: 6.25rem;
  }

  .s1920\:active\:ml-modal:active{
    margin-left: 6.25rem;
  }

  .s1920\:active\:mt-sidebar:active{
    margin-top: 25rem;
  }

  .s1920\:active\:mr-sidebar:active{
    margin-right: 25rem;
  }

  .s1920\:active\:mb-sidebar:active{
    margin-bottom: 25rem;
  }

  .s1920\:active\:ml-sidebar:active{
    margin-left: 25rem;
  }

  .s1920\:first\:m-0:first-child{
    margin: 0;
  }

  .s1920\:first\:m-1:first-child{
    margin: 0.25rem;
  }

  .s1920\:first\:m-2:first-child{
    margin: 0.5rem;
  }

  .s1920\:first\:m-3:first-child{
    margin: 0.75rem;
  }

  .s1920\:first\:m-4:first-child{
    margin: 1rem;
  }

  .s1920\:first\:m-5:first-child{
    margin: 1.25rem;
  }

  .s1920\:first\:m-6:first-child{
    margin: 1.5rem;
  }

  .s1920\:first\:m-7:first-child{
    margin: 1.75rem;
  }

  .s1920\:first\:m-8:first-child{
    margin: 2rem;
  }

  .s1920\:first\:m-10:first-child{
    margin: 2.5rem;
  }

  .s1920\:first\:m-12:first-child{
    margin: 3rem;
  }

  .s1920\:first\:m-14:first-child{
    margin: 3.5rem;
  }

  .s1920\:first\:m-16:first-child{
    margin: 4rem;
  }

  .s1920\:first\:m-18:first-child{
    margin: 4.5rem;
  }

  .s1920\:first\:m-20:first-child{
    margin: 5rem;
  }

  .s1920\:first\:m-24:first-child{
    margin: 6rem;
  }

  .s1920\:first\:m-32:first-child{
    margin: 8rem;
  }

  .s1920\:first\:m-40:first-child{
    margin: 10rem;
  }

  .s1920\:first\:m-48:first-child{
    margin: 12rem;
  }

  .s1920\:first\:m-56:first-child{
    margin: 14rem;
  }

  .s1920\:first\:m-64:first-child{
    margin: 16rem;
  }

  .s1920\:first\:m-auto:first-child{
    margin: auto;
  }

  .s1920\:first\:m-px:first-child{
    margin: 1px;
  }

  .s1920\:first\:-m-1:first-child{
    margin: -0.25rem;
  }

  .s1920\:first\:-m-2:first-child{
    margin: -0.5rem;
  }

  .s1920\:first\:-m-3:first-child{
    margin: -0.75rem;
  }

  .s1920\:first\:-m-4:first-child{
    margin: -1rem;
  }

  .s1920\:first\:-m-5:first-child{
    margin: -1.25rem;
  }

  .s1920\:first\:-m-6:first-child{
    margin: -1.5rem;
  }

  .s1920\:first\:-m-8:first-child{
    margin: -2rem;
  }

  .s1920\:first\:-m-10:first-child{
    margin: -2.5rem;
  }

  .s1920\:first\:-m-12:first-child{
    margin: -3rem;
  }

  .s1920\:first\:-m-14:first-child{
    margin: -3.5rem;
  }

  .s1920\:first\:-m-16:first-child{
    margin: -4rem;
  }

  .s1920\:first\:-m-20:first-child{
    margin: -5rem;
  }

  .s1920\:first\:-m-24:first-child{
    margin: -6rem;
  }

  .s1920\:first\:-m-32:first-child{
    margin: -8rem;
  }

  .s1920\:first\:-m-40:first-child{
    margin: -10rem;
  }

  .s1920\:first\:-m-48:first-child{
    margin: -12rem;
  }

  .s1920\:first\:-m-56:first-child{
    margin: -14rem;
  }

  .s1920\:first\:-m-64:first-child{
    margin: -16rem;
  }

  .s1920\:first\:-m-px:first-child{
    margin: -1px;
  }

  .s1920\:first\:m-bin:first-child{
    margin: -0.313rem;
  }

  .s1920\:first\:-m-0\.25:first-child{
    margin: -0.0625rem;
  }

  .s1920\:first\:m-0\.25:first-child{
    margin: 0.0625rem;
  }

  .s1920\:first\:m-3\.125:first-child{
    margin: 3.125rem;
  }

  .s1920\:first\:m-modal:first-child{
    margin: 6.25rem;
  }

  .s1920\:first\:m-sidebar:first-child{
    margin: 25rem;
  }

  .s1920\:first\:my-0:first-child{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1920\:first\:mx-0:first-child{
    margin-left: 0;
    margin-right: 0;
  }

  .s1920\:first\:my-1:first-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1920\:first\:mx-1:first-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1920\:first\:my-2:first-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1920\:first\:mx-2:first-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1920\:first\:my-3:first-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1920\:first\:mx-3:first-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1920\:first\:my-4:first-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1920\:first\:mx-4:first-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1920\:first\:my-5:first-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1920\:first\:mx-5:first-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1920\:first\:my-6:first-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1920\:first\:mx-6:first-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1920\:first\:my-7:first-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1920\:first\:mx-7:first-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1920\:first\:my-8:first-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1920\:first\:mx-8:first-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1920\:first\:my-10:first-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1920\:first\:mx-10:first-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1920\:first\:my-12:first-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1920\:first\:mx-12:first-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1920\:first\:my-14:first-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1920\:first\:mx-14:first-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1920\:first\:my-16:first-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1920\:first\:mx-16:first-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1920\:first\:my-18:first-child{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1920\:first\:mx-18:first-child{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1920\:first\:my-20:first-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1920\:first\:mx-20:first-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1920\:first\:my-24:first-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1920\:first\:mx-24:first-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1920\:first\:my-32:first-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1920\:first\:mx-32:first-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1920\:first\:my-40:first-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1920\:first\:mx-40:first-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1920\:first\:my-48:first-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1920\:first\:mx-48:first-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1920\:first\:my-56:first-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1920\:first\:mx-56:first-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1920\:first\:my-64:first-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1920\:first\:mx-64:first-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1920\:first\:my-auto:first-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1920\:first\:mx-auto:first-child{
    margin-left: auto;
    margin-right: auto;
  }

  .s1920\:first\:my-px:first-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1920\:first\:mx-px:first-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1920\:first\:-my-1:first-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1920\:first\:-mx-1:first-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1920\:first\:-my-2:first-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1920\:first\:-mx-2:first-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1920\:first\:-my-3:first-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1920\:first\:-mx-3:first-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1920\:first\:-my-4:first-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1920\:first\:-mx-4:first-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1920\:first\:-my-5:first-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1920\:first\:-mx-5:first-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1920\:first\:-my-6:first-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1920\:first\:-mx-6:first-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1920\:first\:-my-8:first-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1920\:first\:-mx-8:first-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1920\:first\:-my-10:first-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1920\:first\:-mx-10:first-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1920\:first\:-my-12:first-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1920\:first\:-mx-12:first-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1920\:first\:-my-14:first-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1920\:first\:-mx-14:first-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1920\:first\:-my-16:first-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1920\:first\:-mx-16:first-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1920\:first\:-my-20:first-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1920\:first\:-mx-20:first-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1920\:first\:-my-24:first-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1920\:first\:-mx-24:first-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1920\:first\:-my-32:first-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1920\:first\:-mx-32:first-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1920\:first\:-my-40:first-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1920\:first\:-mx-40:first-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1920\:first\:-my-48:first-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1920\:first\:-mx-48:first-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1920\:first\:-my-56:first-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1920\:first\:-mx-56:first-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1920\:first\:-my-64:first-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1920\:first\:-mx-64:first-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1920\:first\:-my-px:first-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1920\:first\:-mx-px:first-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1920\:first\:my-bin:first-child{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1920\:first\:mx-bin:first-child{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1920\:first\:-my-0\.25:first-child{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1920\:first\:-mx-0\.25:first-child{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1920\:first\:my-0\.25:first-child{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1920\:first\:mx-0\.25:first-child{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1920\:first\:my-3\.125:first-child{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1920\:first\:mx-3\.125:first-child{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1920\:first\:my-modal:first-child{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1920\:first\:mx-modal:first-child{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1920\:first\:my-sidebar:first-child{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1920\:first\:mx-sidebar:first-child{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1920\:first\:mt-0:first-child{
    margin-top: 0;
  }

  .s1920\:first\:mr-0:first-child{
    margin-right: 0;
  }

  .s1920\:first\:mb-0:first-child{
    margin-bottom: 0;
  }

  .s1920\:first\:ml-0:first-child{
    margin-left: 0;
  }

  .s1920\:first\:mt-1:first-child{
    margin-top: 0.25rem;
  }

  .s1920\:first\:mr-1:first-child{
    margin-right: 0.25rem;
  }

  .s1920\:first\:mb-1:first-child{
    margin-bottom: 0.25rem;
  }

  .s1920\:first\:ml-1:first-child{
    margin-left: 0.25rem;
  }

  .s1920\:first\:mt-2:first-child{
    margin-top: 0.5rem;
  }

  .s1920\:first\:mr-2:first-child{
    margin-right: 0.5rem;
  }

  .s1920\:first\:mb-2:first-child{
    margin-bottom: 0.5rem;
  }

  .s1920\:first\:ml-2:first-child{
    margin-left: 0.5rem;
  }

  .s1920\:first\:mt-3:first-child{
    margin-top: 0.75rem;
  }

  .s1920\:first\:mr-3:first-child{
    margin-right: 0.75rem;
  }

  .s1920\:first\:mb-3:first-child{
    margin-bottom: 0.75rem;
  }

  .s1920\:first\:ml-3:first-child{
    margin-left: 0.75rem;
  }

  .s1920\:first\:mt-4:first-child{
    margin-top: 1rem;
  }

  .s1920\:first\:mr-4:first-child{
    margin-right: 1rem;
  }

  .s1920\:first\:mb-4:first-child{
    margin-bottom: 1rem;
  }

  .s1920\:first\:ml-4:first-child{
    margin-left: 1rem;
  }

  .s1920\:first\:mt-5:first-child{
    margin-top: 1.25rem;
  }

  .s1920\:first\:mr-5:first-child{
    margin-right: 1.25rem;
  }

  .s1920\:first\:mb-5:first-child{
    margin-bottom: 1.25rem;
  }

  .s1920\:first\:ml-5:first-child{
    margin-left: 1.25rem;
  }

  .s1920\:first\:mt-6:first-child{
    margin-top: 1.5rem;
  }

  .s1920\:first\:mr-6:first-child{
    margin-right: 1.5rem;
  }

  .s1920\:first\:mb-6:first-child{
    margin-bottom: 1.5rem;
  }

  .s1920\:first\:ml-6:first-child{
    margin-left: 1.5rem;
  }

  .s1920\:first\:mt-7:first-child{
    margin-top: 1.75rem;
  }

  .s1920\:first\:mr-7:first-child{
    margin-right: 1.75rem;
  }

  .s1920\:first\:mb-7:first-child{
    margin-bottom: 1.75rem;
  }

  .s1920\:first\:ml-7:first-child{
    margin-left: 1.75rem;
  }

  .s1920\:first\:mt-8:first-child{
    margin-top: 2rem;
  }

  .s1920\:first\:mr-8:first-child{
    margin-right: 2rem;
  }

  .s1920\:first\:mb-8:first-child{
    margin-bottom: 2rem;
  }

  .s1920\:first\:ml-8:first-child{
    margin-left: 2rem;
  }

  .s1920\:first\:mt-10:first-child{
    margin-top: 2.5rem;
  }

  .s1920\:first\:mr-10:first-child{
    margin-right: 2.5rem;
  }

  .s1920\:first\:mb-10:first-child{
    margin-bottom: 2.5rem;
  }

  .s1920\:first\:ml-10:first-child{
    margin-left: 2.5rem;
  }

  .s1920\:first\:mt-12:first-child{
    margin-top: 3rem;
  }

  .s1920\:first\:mr-12:first-child{
    margin-right: 3rem;
  }

  .s1920\:first\:mb-12:first-child{
    margin-bottom: 3rem;
  }

  .s1920\:first\:ml-12:first-child{
    margin-left: 3rem;
  }

  .s1920\:first\:mt-14:first-child{
    margin-top: 3.5rem;
  }

  .s1920\:first\:mr-14:first-child{
    margin-right: 3.5rem;
  }

  .s1920\:first\:mb-14:first-child{
    margin-bottom: 3.5rem;
  }

  .s1920\:first\:ml-14:first-child{
    margin-left: 3.5rem;
  }

  .s1920\:first\:mt-16:first-child{
    margin-top: 4rem;
  }

  .s1920\:first\:mr-16:first-child{
    margin-right: 4rem;
  }

  .s1920\:first\:mb-16:first-child{
    margin-bottom: 4rem;
  }

  .s1920\:first\:ml-16:first-child{
    margin-left: 4rem;
  }

  .s1920\:first\:mt-18:first-child{
    margin-top: 4.5rem;
  }

  .s1920\:first\:mr-18:first-child{
    margin-right: 4.5rem;
  }

  .s1920\:first\:mb-18:first-child{
    margin-bottom: 4.5rem;
  }

  .s1920\:first\:ml-18:first-child{
    margin-left: 4.5rem;
  }

  .s1920\:first\:mt-20:first-child{
    margin-top: 5rem;
  }

  .s1920\:first\:mr-20:first-child{
    margin-right: 5rem;
  }

  .s1920\:first\:mb-20:first-child{
    margin-bottom: 5rem;
  }

  .s1920\:first\:ml-20:first-child{
    margin-left: 5rem;
  }

  .s1920\:first\:mt-24:first-child{
    margin-top: 6rem;
  }

  .s1920\:first\:mr-24:first-child{
    margin-right: 6rem;
  }

  .s1920\:first\:mb-24:first-child{
    margin-bottom: 6rem;
  }

  .s1920\:first\:ml-24:first-child{
    margin-left: 6rem;
  }

  .s1920\:first\:mt-32:first-child{
    margin-top: 8rem;
  }

  .s1920\:first\:mr-32:first-child{
    margin-right: 8rem;
  }

  .s1920\:first\:mb-32:first-child{
    margin-bottom: 8rem;
  }

  .s1920\:first\:ml-32:first-child{
    margin-left: 8rem;
  }

  .s1920\:first\:mt-40:first-child{
    margin-top: 10rem;
  }

  .s1920\:first\:mr-40:first-child{
    margin-right: 10rem;
  }

  .s1920\:first\:mb-40:first-child{
    margin-bottom: 10rem;
  }

  .s1920\:first\:ml-40:first-child{
    margin-left: 10rem;
  }

  .s1920\:first\:mt-48:first-child{
    margin-top: 12rem;
  }

  .s1920\:first\:mr-48:first-child{
    margin-right: 12rem;
  }

  .s1920\:first\:mb-48:first-child{
    margin-bottom: 12rem;
  }

  .s1920\:first\:ml-48:first-child{
    margin-left: 12rem;
  }

  .s1920\:first\:mt-56:first-child{
    margin-top: 14rem;
  }

  .s1920\:first\:mr-56:first-child{
    margin-right: 14rem;
  }

  .s1920\:first\:mb-56:first-child{
    margin-bottom: 14rem;
  }

  .s1920\:first\:ml-56:first-child{
    margin-left: 14rem;
  }

  .s1920\:first\:mt-64:first-child{
    margin-top: 16rem;
  }

  .s1920\:first\:mr-64:first-child{
    margin-right: 16rem;
  }

  .s1920\:first\:mb-64:first-child{
    margin-bottom: 16rem;
  }

  .s1920\:first\:ml-64:first-child{
    margin-left: 16rem;
  }

  .s1920\:first\:mt-auto:first-child{
    margin-top: auto;
  }

  .s1920\:first\:mr-auto:first-child{
    margin-right: auto;
  }

  .s1920\:first\:mb-auto:first-child{
    margin-bottom: auto;
  }

  .s1920\:first\:ml-auto:first-child{
    margin-left: auto;
  }

  .s1920\:first\:mt-px:first-child{
    margin-top: 1px;
  }

  .s1920\:first\:mr-px:first-child{
    margin-right: 1px;
  }

  .s1920\:first\:mb-px:first-child{
    margin-bottom: 1px;
  }

  .s1920\:first\:ml-px:first-child{
    margin-left: 1px;
  }

  .s1920\:first\:-mt-1:first-child{
    margin-top: -0.25rem;
  }

  .s1920\:first\:-mr-1:first-child{
    margin-right: -0.25rem;
  }

  .s1920\:first\:-mb-1:first-child{
    margin-bottom: -0.25rem;
  }

  .s1920\:first\:-ml-1:first-child{
    margin-left: -0.25rem;
  }

  .s1920\:first\:-mt-2:first-child{
    margin-top: -0.5rem;
  }

  .s1920\:first\:-mr-2:first-child{
    margin-right: -0.5rem;
  }

  .s1920\:first\:-mb-2:first-child{
    margin-bottom: -0.5rem;
  }

  .s1920\:first\:-ml-2:first-child{
    margin-left: -0.5rem;
  }

  .s1920\:first\:-mt-3:first-child{
    margin-top: -0.75rem;
  }

  .s1920\:first\:-mr-3:first-child{
    margin-right: -0.75rem;
  }

  .s1920\:first\:-mb-3:first-child{
    margin-bottom: -0.75rem;
  }

  .s1920\:first\:-ml-3:first-child{
    margin-left: -0.75rem;
  }

  .s1920\:first\:-mt-4:first-child{
    margin-top: -1rem;
  }

  .s1920\:first\:-mr-4:first-child{
    margin-right: -1rem;
  }

  .s1920\:first\:-mb-4:first-child{
    margin-bottom: -1rem;
  }

  .s1920\:first\:-ml-4:first-child{
    margin-left: -1rem;
  }

  .s1920\:first\:-mt-5:first-child{
    margin-top: -1.25rem;
  }

  .s1920\:first\:-mr-5:first-child{
    margin-right: -1.25rem;
  }

  .s1920\:first\:-mb-5:first-child{
    margin-bottom: -1.25rem;
  }

  .s1920\:first\:-ml-5:first-child{
    margin-left: -1.25rem;
  }

  .s1920\:first\:-mt-6:first-child{
    margin-top: -1.5rem;
  }

  .s1920\:first\:-mr-6:first-child{
    margin-right: -1.5rem;
  }

  .s1920\:first\:-mb-6:first-child{
    margin-bottom: -1.5rem;
  }

  .s1920\:first\:-ml-6:first-child{
    margin-left: -1.5rem;
  }

  .s1920\:first\:-mt-8:first-child{
    margin-top: -2rem;
  }

  .s1920\:first\:-mr-8:first-child{
    margin-right: -2rem;
  }

  .s1920\:first\:-mb-8:first-child{
    margin-bottom: -2rem;
  }

  .s1920\:first\:-ml-8:first-child{
    margin-left: -2rem;
  }

  .s1920\:first\:-mt-10:first-child{
    margin-top: -2.5rem;
  }

  .s1920\:first\:-mr-10:first-child{
    margin-right: -2.5rem;
  }

  .s1920\:first\:-mb-10:first-child{
    margin-bottom: -2.5rem;
  }

  .s1920\:first\:-ml-10:first-child{
    margin-left: -2.5rem;
  }

  .s1920\:first\:-mt-12:first-child{
    margin-top: -3rem;
  }

  .s1920\:first\:-mr-12:first-child{
    margin-right: -3rem;
  }

  .s1920\:first\:-mb-12:first-child{
    margin-bottom: -3rem;
  }

  .s1920\:first\:-ml-12:first-child{
    margin-left: -3rem;
  }

  .s1920\:first\:-mt-14:first-child{
    margin-top: -3.5rem;
  }

  .s1920\:first\:-mr-14:first-child{
    margin-right: -3.5rem;
  }

  .s1920\:first\:-mb-14:first-child{
    margin-bottom: -3.5rem;
  }

  .s1920\:first\:-ml-14:first-child{
    margin-left: -3.5rem;
  }

  .s1920\:first\:-mt-16:first-child{
    margin-top: -4rem;
  }

  .s1920\:first\:-mr-16:first-child{
    margin-right: -4rem;
  }

  .s1920\:first\:-mb-16:first-child{
    margin-bottom: -4rem;
  }

  .s1920\:first\:-ml-16:first-child{
    margin-left: -4rem;
  }

  .s1920\:first\:-mt-20:first-child{
    margin-top: -5rem;
  }

  .s1920\:first\:-mr-20:first-child{
    margin-right: -5rem;
  }

  .s1920\:first\:-mb-20:first-child{
    margin-bottom: -5rem;
  }

  .s1920\:first\:-ml-20:first-child{
    margin-left: -5rem;
  }

  .s1920\:first\:-mt-24:first-child{
    margin-top: -6rem;
  }

  .s1920\:first\:-mr-24:first-child{
    margin-right: -6rem;
  }

  .s1920\:first\:-mb-24:first-child{
    margin-bottom: -6rem;
  }

  .s1920\:first\:-ml-24:first-child{
    margin-left: -6rem;
  }

  .s1920\:first\:-mt-32:first-child{
    margin-top: -8rem;
  }

  .s1920\:first\:-mr-32:first-child{
    margin-right: -8rem;
  }

  .s1920\:first\:-mb-32:first-child{
    margin-bottom: -8rem;
  }

  .s1920\:first\:-ml-32:first-child{
    margin-left: -8rem;
  }

  .s1920\:first\:-mt-40:first-child{
    margin-top: -10rem;
  }

  .s1920\:first\:-mr-40:first-child{
    margin-right: -10rem;
  }

  .s1920\:first\:-mb-40:first-child{
    margin-bottom: -10rem;
  }

  .s1920\:first\:-ml-40:first-child{
    margin-left: -10rem;
  }

  .s1920\:first\:-mt-48:first-child{
    margin-top: -12rem;
  }

  .s1920\:first\:-mr-48:first-child{
    margin-right: -12rem;
  }

  .s1920\:first\:-mb-48:first-child{
    margin-bottom: -12rem;
  }

  .s1920\:first\:-ml-48:first-child{
    margin-left: -12rem;
  }

  .s1920\:first\:-mt-56:first-child{
    margin-top: -14rem;
  }

  .s1920\:first\:-mr-56:first-child{
    margin-right: -14rem;
  }

  .s1920\:first\:-mb-56:first-child{
    margin-bottom: -14rem;
  }

  .s1920\:first\:-ml-56:first-child{
    margin-left: -14rem;
  }

  .s1920\:first\:-mt-64:first-child{
    margin-top: -16rem;
  }

  .s1920\:first\:-mr-64:first-child{
    margin-right: -16rem;
  }

  .s1920\:first\:-mb-64:first-child{
    margin-bottom: -16rem;
  }

  .s1920\:first\:-ml-64:first-child{
    margin-left: -16rem;
  }

  .s1920\:first\:-mt-px:first-child{
    margin-top: -1px;
  }

  .s1920\:first\:-mr-px:first-child{
    margin-right: -1px;
  }

  .s1920\:first\:-mb-px:first-child{
    margin-bottom: -1px;
  }

  .s1920\:first\:-ml-px:first-child{
    margin-left: -1px;
  }

  .s1920\:first\:mt-bin:first-child{
    margin-top: -0.313rem;
  }

  .s1920\:first\:mr-bin:first-child{
    margin-right: -0.313rem;
  }

  .s1920\:first\:mb-bin:first-child{
    margin-bottom: -0.313rem;
  }

  .s1920\:first\:ml-bin:first-child{
    margin-left: -0.313rem;
  }

  .s1920\:first\:-mt-0\.25:first-child{
    margin-top: -0.0625rem;
  }

  .s1920\:first\:-mr-0\.25:first-child{
    margin-right: -0.0625rem;
  }

  .s1920\:first\:-mb-0\.25:first-child{
    margin-bottom: -0.0625rem;
  }

  .s1920\:first\:-ml-0\.25:first-child{
    margin-left: -0.0625rem;
  }

  .s1920\:first\:mt-0\.25:first-child{
    margin-top: 0.0625rem;
  }

  .s1920\:first\:mr-0\.25:first-child{
    margin-right: 0.0625rem;
  }

  .s1920\:first\:mb-0\.25:first-child{
    margin-bottom: 0.0625rem;
  }

  .s1920\:first\:ml-0\.25:first-child{
    margin-left: 0.0625rem;
  }

  .s1920\:first\:mt-3\.125:first-child{
    margin-top: 3.125rem;
  }

  .s1920\:first\:mr-3\.125:first-child{
    margin-right: 3.125rem;
  }

  .s1920\:first\:mb-3\.125:first-child{
    margin-bottom: 3.125rem;
  }

  .s1920\:first\:ml-3\.125:first-child{
    margin-left: 3.125rem;
  }

  .s1920\:first\:mt-modal:first-child{
    margin-top: 6.25rem;
  }

  .s1920\:first\:mr-modal:first-child{
    margin-right: 6.25rem;
  }

  .s1920\:first\:mb-modal:first-child{
    margin-bottom: 6.25rem;
  }

  .s1920\:first\:ml-modal:first-child{
    margin-left: 6.25rem;
  }

  .s1920\:first\:mt-sidebar:first-child{
    margin-top: 25rem;
  }

  .s1920\:first\:mr-sidebar:first-child{
    margin-right: 25rem;
  }

  .s1920\:first\:mb-sidebar:first-child{
    margin-bottom: 25rem;
  }

  .s1920\:first\:ml-sidebar:first-child{
    margin-left: 25rem;
  }

  .s1920\:last\:m-0:last-child{
    margin: 0;
  }

  .s1920\:last\:m-1:last-child{
    margin: 0.25rem;
  }

  .s1920\:last\:m-2:last-child{
    margin: 0.5rem;
  }

  .s1920\:last\:m-3:last-child{
    margin: 0.75rem;
  }

  .s1920\:last\:m-4:last-child{
    margin: 1rem;
  }

  .s1920\:last\:m-5:last-child{
    margin: 1.25rem;
  }

  .s1920\:last\:m-6:last-child{
    margin: 1.5rem;
  }

  .s1920\:last\:m-7:last-child{
    margin: 1.75rem;
  }

  .s1920\:last\:m-8:last-child{
    margin: 2rem;
  }

  .s1920\:last\:m-10:last-child{
    margin: 2.5rem;
  }

  .s1920\:last\:m-12:last-child{
    margin: 3rem;
  }

  .s1920\:last\:m-14:last-child{
    margin: 3.5rem;
  }

  .s1920\:last\:m-16:last-child{
    margin: 4rem;
  }

  .s1920\:last\:m-18:last-child{
    margin: 4.5rem;
  }

  .s1920\:last\:m-20:last-child{
    margin: 5rem;
  }

  .s1920\:last\:m-24:last-child{
    margin: 6rem;
  }

  .s1920\:last\:m-32:last-child{
    margin: 8rem;
  }

  .s1920\:last\:m-40:last-child{
    margin: 10rem;
  }

  .s1920\:last\:m-48:last-child{
    margin: 12rem;
  }

  .s1920\:last\:m-56:last-child{
    margin: 14rem;
  }

  .s1920\:last\:m-64:last-child{
    margin: 16rem;
  }

  .s1920\:last\:m-auto:last-child{
    margin: auto;
  }

  .s1920\:last\:m-px:last-child{
    margin: 1px;
  }

  .s1920\:last\:-m-1:last-child{
    margin: -0.25rem;
  }

  .s1920\:last\:-m-2:last-child{
    margin: -0.5rem;
  }

  .s1920\:last\:-m-3:last-child{
    margin: -0.75rem;
  }

  .s1920\:last\:-m-4:last-child{
    margin: -1rem;
  }

  .s1920\:last\:-m-5:last-child{
    margin: -1.25rem;
  }

  .s1920\:last\:-m-6:last-child{
    margin: -1.5rem;
  }

  .s1920\:last\:-m-8:last-child{
    margin: -2rem;
  }

  .s1920\:last\:-m-10:last-child{
    margin: -2.5rem;
  }

  .s1920\:last\:-m-12:last-child{
    margin: -3rem;
  }

  .s1920\:last\:-m-14:last-child{
    margin: -3.5rem;
  }

  .s1920\:last\:-m-16:last-child{
    margin: -4rem;
  }

  .s1920\:last\:-m-20:last-child{
    margin: -5rem;
  }

  .s1920\:last\:-m-24:last-child{
    margin: -6rem;
  }

  .s1920\:last\:-m-32:last-child{
    margin: -8rem;
  }

  .s1920\:last\:-m-40:last-child{
    margin: -10rem;
  }

  .s1920\:last\:-m-48:last-child{
    margin: -12rem;
  }

  .s1920\:last\:-m-56:last-child{
    margin: -14rem;
  }

  .s1920\:last\:-m-64:last-child{
    margin: -16rem;
  }

  .s1920\:last\:-m-px:last-child{
    margin: -1px;
  }

  .s1920\:last\:m-bin:last-child{
    margin: -0.313rem;
  }

  .s1920\:last\:-m-0\.25:last-child{
    margin: -0.0625rem;
  }

  .s1920\:last\:m-0\.25:last-child{
    margin: 0.0625rem;
  }

  .s1920\:last\:m-3\.125:last-child{
    margin: 3.125rem;
  }

  .s1920\:last\:m-modal:last-child{
    margin: 6.25rem;
  }

  .s1920\:last\:m-sidebar:last-child{
    margin: 25rem;
  }

  .s1920\:last\:my-0:last-child{
    margin-top: 0;
    margin-bottom: 0;
  }

  .s1920\:last\:mx-0:last-child{
    margin-left: 0;
    margin-right: 0;
  }

  .s1920\:last\:my-1:last-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .s1920\:last\:mx-1:last-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .s1920\:last\:my-2:last-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .s1920\:last\:mx-2:last-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .s1920\:last\:my-3:last-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .s1920\:last\:mx-3:last-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .s1920\:last\:my-4:last-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .s1920\:last\:mx-4:last-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .s1920\:last\:my-5:last-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s1920\:last\:mx-5:last-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s1920\:last\:my-6:last-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .s1920\:last\:mx-6:last-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .s1920\:last\:my-7:last-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .s1920\:last\:mx-7:last-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .s1920\:last\:my-8:last-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .s1920\:last\:mx-8:last-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .s1920\:last\:my-10:last-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s1920\:last\:mx-10:last-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s1920\:last\:my-12:last-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .s1920\:last\:mx-12:last-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .s1920\:last\:my-14:last-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .s1920\:last\:mx-14:last-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .s1920\:last\:my-16:last-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .s1920\:last\:mx-16:last-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .s1920\:last\:my-18:last-child{
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .s1920\:last\:mx-18:last-child{
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .s1920\:last\:my-20:last-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .s1920\:last\:mx-20:last-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .s1920\:last\:my-24:last-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .s1920\:last\:mx-24:last-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .s1920\:last\:my-32:last-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .s1920\:last\:mx-32:last-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .s1920\:last\:my-40:last-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .s1920\:last\:mx-40:last-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .s1920\:last\:my-48:last-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .s1920\:last\:mx-48:last-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .s1920\:last\:my-56:last-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .s1920\:last\:mx-56:last-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .s1920\:last\:my-64:last-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .s1920\:last\:mx-64:last-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .s1920\:last\:my-auto:last-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .s1920\:last\:mx-auto:last-child{
    margin-left: auto;
    margin-right: auto;
  }

  .s1920\:last\:my-px:last-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .s1920\:last\:mx-px:last-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .s1920\:last\:-my-1:last-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .s1920\:last\:-mx-1:last-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .s1920\:last\:-my-2:last-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .s1920\:last\:-mx-2:last-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .s1920\:last\:-my-3:last-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .s1920\:last\:-mx-3:last-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .s1920\:last\:-my-4:last-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .s1920\:last\:-mx-4:last-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .s1920\:last\:-my-5:last-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .s1920\:last\:-mx-5:last-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .s1920\:last\:-my-6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .s1920\:last\:-mx-6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .s1920\:last\:-my-8:last-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .s1920\:last\:-mx-8:last-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .s1920\:last\:-my-10:last-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .s1920\:last\:-mx-10:last-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .s1920\:last\:-my-12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .s1920\:last\:-mx-12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .s1920\:last\:-my-14:last-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .s1920\:last\:-mx-14:last-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .s1920\:last\:-my-16:last-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .s1920\:last\:-mx-16:last-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .s1920\:last\:-my-20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .s1920\:last\:-mx-20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .s1920\:last\:-my-24:last-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .s1920\:last\:-mx-24:last-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .s1920\:last\:-my-32:last-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .s1920\:last\:-mx-32:last-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .s1920\:last\:-my-40:last-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .s1920\:last\:-mx-40:last-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .s1920\:last\:-my-48:last-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .s1920\:last\:-mx-48:last-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .s1920\:last\:-my-56:last-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .s1920\:last\:-mx-56:last-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .s1920\:last\:-my-64:last-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .s1920\:last\:-mx-64:last-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .s1920\:last\:-my-px:last-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .s1920\:last\:-mx-px:last-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .s1920\:last\:my-bin:last-child{
    margin-top: -0.313rem;
    margin-bottom: -0.313rem;
  }

  .s1920\:last\:mx-bin:last-child{
    margin-left: -0.313rem;
    margin-right: -0.313rem;
  }

  .s1920\:last\:-my-0\.25:last-child{
    margin-top: -0.0625rem;
    margin-bottom: -0.0625rem;
  }

  .s1920\:last\:-mx-0\.25:last-child{
    margin-left: -0.0625rem;
    margin-right: -0.0625rem;
  }

  .s1920\:last\:my-0\.25:last-child{
    margin-top: 0.0625rem;
    margin-bottom: 0.0625rem;
  }

  .s1920\:last\:mx-0\.25:last-child{
    margin-left: 0.0625rem;
    margin-right: 0.0625rem;
  }

  .s1920\:last\:my-3\.125:last-child{
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .s1920\:last\:mx-3\.125:last-child{
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .s1920\:last\:my-modal:last-child{
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .s1920\:last\:mx-modal:last-child{
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .s1920\:last\:my-sidebar:last-child{
    margin-top: 25rem;
    margin-bottom: 25rem;
  }

  .s1920\:last\:mx-sidebar:last-child{
    margin-left: 25rem;
    margin-right: 25rem;
  }

  .s1920\:last\:mt-0:last-child{
    margin-top: 0;
  }

  .s1920\:last\:mr-0:last-child{
    margin-right: 0;
  }

  .s1920\:last\:mb-0:last-child{
    margin-bottom: 0;
  }

  .s1920\:last\:ml-0:last-child{
    margin-left: 0;
  }

  .s1920\:last\:mt-1:last-child{
    margin-top: 0.25rem;
  }

  .s1920\:last\:mr-1:last-child{
    margin-right: 0.25rem;
  }

  .s1920\:last\:mb-1:last-child{
    margin-bottom: 0.25rem;
  }

  .s1920\:last\:ml-1:last-child{
    margin-left: 0.25rem;
  }

  .s1920\:last\:mt-2:last-child{
    margin-top: 0.5rem;
  }

  .s1920\:last\:mr-2:last-child{
    margin-right: 0.5rem;
  }

  .s1920\:last\:mb-2:last-child{
    margin-bottom: 0.5rem;
  }

  .s1920\:last\:ml-2:last-child{
    margin-left: 0.5rem;
  }

  .s1920\:last\:mt-3:last-child{
    margin-top: 0.75rem;
  }

  .s1920\:last\:mr-3:last-child{
    margin-right: 0.75rem;
  }

  .s1920\:last\:mb-3:last-child{
    margin-bottom: 0.75rem;
  }

  .s1920\:last\:ml-3:last-child{
    margin-left: 0.75rem;
  }

  .s1920\:last\:mt-4:last-child{
    margin-top: 1rem;
  }

  .s1920\:last\:mr-4:last-child{
    margin-right: 1rem;
  }

  .s1920\:last\:mb-4:last-child{
    margin-bottom: 1rem;
  }

  .s1920\:last\:ml-4:last-child{
    margin-left: 1rem;
  }

  .s1920\:last\:mt-5:last-child{
    margin-top: 1.25rem;
  }

  .s1920\:last\:mr-5:last-child{
    margin-right: 1.25rem;
  }

  .s1920\:last\:mb-5:last-child{
    margin-bottom: 1.25rem;
  }

  .s1920\:last\:ml-5:last-child{
    margin-left: 1.25rem;
  }

  .s1920\:last\:mt-6:last-child{
    margin-top: 1.5rem;
  }

  .s1920\:last\:mr-6:last-child{
    margin-right: 1.5rem;
  }

  .s1920\:last\:mb-6:last-child{
    margin-bottom: 1.5rem;
  }

  .s1920\:last\:ml-6:last-child{
    margin-left: 1.5rem;
  }

  .s1920\:last\:mt-7:last-child{
    margin-top: 1.75rem;
  }

  .s1920\:last\:mr-7:last-child{
    margin-right: 1.75rem;
  }

  .s1920\:last\:mb-7:last-child{
    margin-bottom: 1.75rem;
  }

  .s1920\:last\:ml-7:last-child{
    margin-left: 1.75rem;
  }

  .s1920\:last\:mt-8:last-child{
    margin-top: 2rem;
  }

  .s1920\:last\:mr-8:last-child{
    margin-right: 2rem;
  }

  .s1920\:last\:mb-8:last-child{
    margin-bottom: 2rem;
  }

  .s1920\:last\:ml-8:last-child{
    margin-left: 2rem;
  }

  .s1920\:last\:mt-10:last-child{
    margin-top: 2.5rem;
  }

  .s1920\:last\:mr-10:last-child{
    margin-right: 2.5rem;
  }

  .s1920\:last\:mb-10:last-child{
    margin-bottom: 2.5rem;
  }

  .s1920\:last\:ml-10:last-child{
    margin-left: 2.5rem;
  }

  .s1920\:last\:mt-12:last-child{
    margin-top: 3rem;
  }

  .s1920\:last\:mr-12:last-child{
    margin-right: 3rem;
  }

  .s1920\:last\:mb-12:last-child{
    margin-bottom: 3rem;
  }

  .s1920\:last\:ml-12:last-child{
    margin-left: 3rem;
  }

  .s1920\:last\:mt-14:last-child{
    margin-top: 3.5rem;
  }

  .s1920\:last\:mr-14:last-child{
    margin-right: 3.5rem;
  }

  .s1920\:last\:mb-14:last-child{
    margin-bottom: 3.5rem;
  }

  .s1920\:last\:ml-14:last-child{
    margin-left: 3.5rem;
  }

  .s1920\:last\:mt-16:last-child{
    margin-top: 4rem;
  }

  .s1920\:last\:mr-16:last-child{
    margin-right: 4rem;
  }

  .s1920\:last\:mb-16:last-child{
    margin-bottom: 4rem;
  }

  .s1920\:last\:ml-16:last-child{
    margin-left: 4rem;
  }

  .s1920\:last\:mt-18:last-child{
    margin-top: 4.5rem;
  }

  .s1920\:last\:mr-18:last-child{
    margin-right: 4.5rem;
  }

  .s1920\:last\:mb-18:last-child{
    margin-bottom: 4.5rem;
  }

  .s1920\:last\:ml-18:last-child{
    margin-left: 4.5rem;
  }

  .s1920\:last\:mt-20:last-child{
    margin-top: 5rem;
  }

  .s1920\:last\:mr-20:last-child{
    margin-right: 5rem;
  }

  .s1920\:last\:mb-20:last-child{
    margin-bottom: 5rem;
  }

  .s1920\:last\:ml-20:last-child{
    margin-left: 5rem;
  }

  .s1920\:last\:mt-24:last-child{
    margin-top: 6rem;
  }

  .s1920\:last\:mr-24:last-child{
    margin-right: 6rem;
  }

  .s1920\:last\:mb-24:last-child{
    margin-bottom: 6rem;
  }

  .s1920\:last\:ml-24:last-child{
    margin-left: 6rem;
  }

  .s1920\:last\:mt-32:last-child{
    margin-top: 8rem;
  }

  .s1920\:last\:mr-32:last-child{
    margin-right: 8rem;
  }

  .s1920\:last\:mb-32:last-child{
    margin-bottom: 8rem;
  }

  .s1920\:last\:ml-32:last-child{
    margin-left: 8rem;
  }

  .s1920\:last\:mt-40:last-child{
    margin-top: 10rem;
  }

  .s1920\:last\:mr-40:last-child{
    margin-right: 10rem;
  }

  .s1920\:last\:mb-40:last-child{
    margin-bottom: 10rem;
  }

  .s1920\:last\:ml-40:last-child{
    margin-left: 10rem;
  }

  .s1920\:last\:mt-48:last-child{
    margin-top: 12rem;
  }

  .s1920\:last\:mr-48:last-child{
    margin-right: 12rem;
  }

  .s1920\:last\:mb-48:last-child{
    margin-bottom: 12rem;
  }

  .s1920\:last\:ml-48:last-child{
    margin-left: 12rem;
  }

  .s1920\:last\:mt-56:last-child{
    margin-top: 14rem;
  }

  .s1920\:last\:mr-56:last-child{
    margin-right: 14rem;
  }

  .s1920\:last\:mb-56:last-child{
    margin-bottom: 14rem;
  }

  .s1920\:last\:ml-56:last-child{
    margin-left: 14rem;
  }

  .s1920\:last\:mt-64:last-child{
    margin-top: 16rem;
  }

  .s1920\:last\:mr-64:last-child{
    margin-right: 16rem;
  }

  .s1920\:last\:mb-64:last-child{
    margin-bottom: 16rem;
  }

  .s1920\:last\:ml-64:last-child{
    margin-left: 16rem;
  }

  .s1920\:last\:mt-auto:last-child{
    margin-top: auto;
  }

  .s1920\:last\:mr-auto:last-child{
    margin-right: auto;
  }

  .s1920\:last\:mb-auto:last-child{
    margin-bottom: auto;
  }

  .s1920\:last\:ml-auto:last-child{
    margin-left: auto;
  }

  .s1920\:last\:mt-px:last-child{
    margin-top: 1px;
  }

  .s1920\:last\:mr-px:last-child{
    margin-right: 1px;
  }

  .s1920\:last\:mb-px:last-child{
    margin-bottom: 1px;
  }

  .s1920\:last\:ml-px:last-child{
    margin-left: 1px;
  }

  .s1920\:last\:-mt-1:last-child{
    margin-top: -0.25rem;
  }

  .s1920\:last\:-mr-1:last-child{
    margin-right: -0.25rem;
  }

  .s1920\:last\:-mb-1:last-child{
    margin-bottom: -0.25rem;
  }

  .s1920\:last\:-ml-1:last-child{
    margin-left: -0.25rem;
  }

  .s1920\:last\:-mt-2:last-child{
    margin-top: -0.5rem;
  }

  .s1920\:last\:-mr-2:last-child{
    margin-right: -0.5rem;
  }

  .s1920\:last\:-mb-2:last-child{
    margin-bottom: -0.5rem;
  }

  .s1920\:last\:-ml-2:last-child{
    margin-left: -0.5rem;
  }

  .s1920\:last\:-mt-3:last-child{
    margin-top: -0.75rem;
  }

  .s1920\:last\:-mr-3:last-child{
    margin-right: -0.75rem;
  }

  .s1920\:last\:-mb-3:last-child{
    margin-bottom: -0.75rem;
  }

  .s1920\:last\:-ml-3:last-child{
    margin-left: -0.75rem;
  }

  .s1920\:last\:-mt-4:last-child{
    margin-top: -1rem;
  }

  .s1920\:last\:-mr-4:last-child{
    margin-right: -1rem;
  }

  .s1920\:last\:-mb-4:last-child{
    margin-bottom: -1rem;
  }

  .s1920\:last\:-ml-4:last-child{
    margin-left: -1rem;
  }

  .s1920\:last\:-mt-5:last-child{
    margin-top: -1.25rem;
  }

  .s1920\:last\:-mr-5:last-child{
    margin-right: -1.25rem;
  }

  .s1920\:last\:-mb-5:last-child{
    margin-bottom: -1.25rem;
  }

  .s1920\:last\:-ml-5:last-child{
    margin-left: -1.25rem;
  }

  .s1920\:last\:-mt-6:last-child{
    margin-top: -1.5rem;
  }

  .s1920\:last\:-mr-6:last-child{
    margin-right: -1.5rem;
  }

  .s1920\:last\:-mb-6:last-child{
    margin-bottom: -1.5rem;
  }

  .s1920\:last\:-ml-6:last-child{
    margin-left: -1.5rem;
  }

  .s1920\:last\:-mt-8:last-child{
    margin-top: -2rem;
  }

  .s1920\:last\:-mr-8:last-child{
    margin-right: -2rem;
  }

  .s1920\:last\:-mb-8:last-child{
    margin-bottom: -2rem;
  }

  .s1920\:last\:-ml-8:last-child{
    margin-left: -2rem;
  }

  .s1920\:last\:-mt-10:last-child{
    margin-top: -2.5rem;
  }

  .s1920\:last\:-mr-10:last-child{
    margin-right: -2.5rem;
  }

  .s1920\:last\:-mb-10:last-child{
    margin-bottom: -2.5rem;
  }

  .s1920\:last\:-ml-10:last-child{
    margin-left: -2.5rem;
  }

  .s1920\:last\:-mt-12:last-child{
    margin-top: -3rem;
  }

  .s1920\:last\:-mr-12:last-child{
    margin-right: -3rem;
  }

  .s1920\:last\:-mb-12:last-child{
    margin-bottom: -3rem;
  }

  .s1920\:last\:-ml-12:last-child{
    margin-left: -3rem;
  }

  .s1920\:last\:-mt-14:last-child{
    margin-top: -3.5rem;
  }

  .s1920\:last\:-mr-14:last-child{
    margin-right: -3.5rem;
  }

  .s1920\:last\:-mb-14:last-child{
    margin-bottom: -3.5rem;
  }

  .s1920\:last\:-ml-14:last-child{
    margin-left: -3.5rem;
  }

  .s1920\:last\:-mt-16:last-child{
    margin-top: -4rem;
  }

  .s1920\:last\:-mr-16:last-child{
    margin-right: -4rem;
  }

  .s1920\:last\:-mb-16:last-child{
    margin-bottom: -4rem;
  }

  .s1920\:last\:-ml-16:last-child{
    margin-left: -4rem;
  }

  .s1920\:last\:-mt-20:last-child{
    margin-top: -5rem;
  }

  .s1920\:last\:-mr-20:last-child{
    margin-right: -5rem;
  }

  .s1920\:last\:-mb-20:last-child{
    margin-bottom: -5rem;
  }

  .s1920\:last\:-ml-20:last-child{
    margin-left: -5rem;
  }

  .s1920\:last\:-mt-24:last-child{
    margin-top: -6rem;
  }

  .s1920\:last\:-mr-24:last-child{
    margin-right: -6rem;
  }

  .s1920\:last\:-mb-24:last-child{
    margin-bottom: -6rem;
  }

  .s1920\:last\:-ml-24:last-child{
    margin-left: -6rem;
  }

  .s1920\:last\:-mt-32:last-child{
    margin-top: -8rem;
  }

  .s1920\:last\:-mr-32:last-child{
    margin-right: -8rem;
  }

  .s1920\:last\:-mb-32:last-child{
    margin-bottom: -8rem;
  }

  .s1920\:last\:-ml-32:last-child{
    margin-left: -8rem;
  }

  .s1920\:last\:-mt-40:last-child{
    margin-top: -10rem;
  }

  .s1920\:last\:-mr-40:last-child{
    margin-right: -10rem;
  }

  .s1920\:last\:-mb-40:last-child{
    margin-bottom: -10rem;
  }

  .s1920\:last\:-ml-40:last-child{
    margin-left: -10rem;
  }

  .s1920\:last\:-mt-48:last-child{
    margin-top: -12rem;
  }

  .s1920\:last\:-mr-48:last-child{
    margin-right: -12rem;
  }

  .s1920\:last\:-mb-48:last-child{
    margin-bottom: -12rem;
  }

  .s1920\:last\:-ml-48:last-child{
    margin-left: -12rem;
  }

  .s1920\:last\:-mt-56:last-child{
    margin-top: -14rem;
  }

  .s1920\:last\:-mr-56:last-child{
    margin-right: -14rem;
  }

  .s1920\:last\:-mb-56:last-child{
    margin-bottom: -14rem;
  }

  .s1920\:last\:-ml-56:last-child{
    margin-left: -14rem;
  }

  .s1920\:last\:-mt-64:last-child{
    margin-top: -16rem;
  }

  .s1920\:last\:-mr-64:last-child{
    margin-right: -16rem;
  }

  .s1920\:last\:-mb-64:last-child{
    margin-bottom: -16rem;
  }

  .s1920\:last\:-ml-64:last-child{
    margin-left: -16rem;
  }

  .s1920\:last\:-mt-px:last-child{
    margin-top: -1px;
  }

  .s1920\:last\:-mr-px:last-child{
    margin-right: -1px;
  }

  .s1920\:last\:-mb-px:last-child{
    margin-bottom: -1px;
  }

  .s1920\:last\:-ml-px:last-child{
    margin-left: -1px;
  }

  .s1920\:last\:mt-bin:last-child{
    margin-top: -0.313rem;
  }

  .s1920\:last\:mr-bin:last-child{
    margin-right: -0.313rem;
  }

  .s1920\:last\:mb-bin:last-child{
    margin-bottom: -0.313rem;
  }

  .s1920\:last\:ml-bin:last-child{
    margin-left: -0.313rem;
  }

  .s1920\:last\:-mt-0\.25:last-child{
    margin-top: -0.0625rem;
  }

  .s1920\:last\:-mr-0\.25:last-child{
    margin-right: -0.0625rem;
  }

  .s1920\:last\:-mb-0\.25:last-child{
    margin-bottom: -0.0625rem;
  }

  .s1920\:last\:-ml-0\.25:last-child{
    margin-left: -0.0625rem;
  }

  .s1920\:last\:mt-0\.25:last-child{
    margin-top: 0.0625rem;
  }

  .s1920\:last\:mr-0\.25:last-child{
    margin-right: 0.0625rem;
  }

  .s1920\:last\:mb-0\.25:last-child{
    margin-bottom: 0.0625rem;
  }

  .s1920\:last\:ml-0\.25:last-child{
    margin-left: 0.0625rem;
  }

  .s1920\:last\:mt-3\.125:last-child{
    margin-top: 3.125rem;
  }

  .s1920\:last\:mr-3\.125:last-child{
    margin-right: 3.125rem;
  }

  .s1920\:last\:mb-3\.125:last-child{
    margin-bottom: 3.125rem;
  }

  .s1920\:last\:ml-3\.125:last-child{
    margin-left: 3.125rem;
  }

  .s1920\:last\:mt-modal:last-child{
    margin-top: 6.25rem;
  }

  .s1920\:last\:mr-modal:last-child{
    margin-right: 6.25rem;
  }

  .s1920\:last\:mb-modal:last-child{
    margin-bottom: 6.25rem;
  }

  .s1920\:last\:ml-modal:last-child{
    margin-left: 6.25rem;
  }

  .s1920\:last\:mt-sidebar:last-child{
    margin-top: 25rem;
  }

  .s1920\:last\:mr-sidebar:last-child{
    margin-right: 25rem;
  }

  .s1920\:last\:mb-sidebar:last-child{
    margin-bottom: 25rem;
  }

  .s1920\:last\:ml-sidebar:last-child{
    margin-left: 25rem;
  }

  .s1920\:max-h-full{
    max-height: 100%;
  }

  .s1920\:max-h-screen{
    max-height: 100vh;
  }

  .s1920\:hover\:max-h-full:hover{
    max-height: 100%;
  }

  .s1920\:hover\:max-h-screen:hover{
    max-height: 100vh;
  }

  .s1920\:focus\:max-h-full:focus{
    max-height: 100%;
  }

  .s1920\:focus\:max-h-screen:focus{
    max-height: 100vh;
  }

  .s1920\:active\:max-h-full:active{
    max-height: 100%;
  }

  .s1920\:active\:max-h-screen:active{
    max-height: 100vh;
  }

  .s1920\:first\:max-h-full:first-child{
    max-height: 100%;
  }

  .s1920\:first\:max-h-screen:first-child{
    max-height: 100vh;
  }

  .s1920\:last\:max-h-full:last-child{
    max-height: 100%;
  }

  .s1920\:last\:max-h-screen:last-child{
    max-height: 100vh;
  }

  .s1920\:max-w-none{
    max-width: none;
  }

  .s1920\:max-w-xs{
    max-width: 20rem;
  }

  .s1920\:max-w-sm{
    max-width: 24rem;
  }

  .s1920\:max-w-md{
    max-width: 28rem;
  }

  .s1920\:max-w-lg{
    max-width: 32rem;
  }

  .s1920\:max-w-xl{
    max-width: 36rem;
  }

  .s1920\:max-w-2xl{
    max-width: 42rem;
  }

  .s1920\:max-w-3xl{
    max-width: 48rem;
  }

  .s1920\:max-w-4xl{
    max-width: 56rem;
  }

  .s1920\:max-w-5xl{
    max-width: 64rem;
  }

  .s1920\:max-w-6xl{
    max-width: 72rem;
  }

  .s1920\:max-w-full{
    max-width: 100%;
  }

  .s1920\:max-w-screen-sm{
    max-width: 640px;
  }

  .s1920\:max-w-screen-s1440{
    max-width: 1430px;
  }

  .s1920\:max-w-screen-s1920{
    max-width: 1910px;
  }

  .s1920\:max-w-page{
    max-width: 80rem;
  }

  .s1920\:max-w-container{
    max-width: 77.25rem;
  }

  .s1920\:max-w-modalMd{
    max-width: 37.5rem;
  }

  .s1920\:max-w-modalMdXl{
    max-width: 52.5rem;
  }

  .s1920\:max-w-modalLg{
    max-width: 77.25rem;
  }

  .s1920\:max-w-input{
    max-width: 32.5rem;
  }

  .s1920\:max-w-halfInput{
    max-width: 16.25rem;
  }

  .s1920\:max-w-formContainer{
    max-width: 47.875rem;
  }

  .s1920\:max-w-sidebar{
    max-width: 27rem;
  }

  .s1920\:max-w-doubleSidebar{
    max-width: 475px;
  }

  .s1920\:max-w-practiceSidebarContent{
    max-width: 49.5rem;
  }

  .s1920\:max-w-doubleSidebarContent{
    max-width: 950px;
  }

  .s1920\:hover\:max-w-none:hover{
    max-width: none;
  }

  .s1920\:hover\:max-w-xs:hover{
    max-width: 20rem;
  }

  .s1920\:hover\:max-w-sm:hover{
    max-width: 24rem;
  }

  .s1920\:hover\:max-w-md:hover{
    max-width: 28rem;
  }

  .s1920\:hover\:max-w-lg:hover{
    max-width: 32rem;
  }

  .s1920\:hover\:max-w-xl:hover{
    max-width: 36rem;
  }

  .s1920\:hover\:max-w-2xl:hover{
    max-width: 42rem;
  }

  .s1920\:hover\:max-w-3xl:hover{
    max-width: 48rem;
  }

  .s1920\:hover\:max-w-4xl:hover{
    max-width: 56rem;
  }

  .s1920\:hover\:max-w-5xl:hover{
    max-width: 64rem;
  }

  .s1920\:hover\:max-w-6xl:hover{
    max-width: 72rem;
  }

  .s1920\:hover\:max-w-full:hover{
    max-width: 100%;
  }

  .s1920\:hover\:max-w-screen-sm:hover{
    max-width: 640px;
  }

  .s1920\:hover\:max-w-screen-s1440:hover{
    max-width: 1430px;
  }

  .s1920\:hover\:max-w-screen-s1920:hover{
    max-width: 1910px;
  }

  .s1920\:hover\:max-w-page:hover{
    max-width: 80rem;
  }

  .s1920\:hover\:max-w-container:hover{
    max-width: 77.25rem;
  }

  .s1920\:hover\:max-w-modalMd:hover{
    max-width: 37.5rem;
  }

  .s1920\:hover\:max-w-modalMdXl:hover{
    max-width: 52.5rem;
  }

  .s1920\:hover\:max-w-modalLg:hover{
    max-width: 77.25rem;
  }

  .s1920\:hover\:max-w-input:hover{
    max-width: 32.5rem;
  }

  .s1920\:hover\:max-w-halfInput:hover{
    max-width: 16.25rem;
  }

  .s1920\:hover\:max-w-formContainer:hover{
    max-width: 47.875rem;
  }

  .s1920\:hover\:max-w-sidebar:hover{
    max-width: 27rem;
  }

  .s1920\:hover\:max-w-doubleSidebar:hover{
    max-width: 475px;
  }

  .s1920\:hover\:max-w-practiceSidebarContent:hover{
    max-width: 49.5rem;
  }

  .s1920\:hover\:max-w-doubleSidebarContent:hover{
    max-width: 950px;
  }

  .s1920\:focus\:max-w-none:focus{
    max-width: none;
  }

  .s1920\:focus\:max-w-xs:focus{
    max-width: 20rem;
  }

  .s1920\:focus\:max-w-sm:focus{
    max-width: 24rem;
  }

  .s1920\:focus\:max-w-md:focus{
    max-width: 28rem;
  }

  .s1920\:focus\:max-w-lg:focus{
    max-width: 32rem;
  }

  .s1920\:focus\:max-w-xl:focus{
    max-width: 36rem;
  }

  .s1920\:focus\:max-w-2xl:focus{
    max-width: 42rem;
  }

  .s1920\:focus\:max-w-3xl:focus{
    max-width: 48rem;
  }

  .s1920\:focus\:max-w-4xl:focus{
    max-width: 56rem;
  }

  .s1920\:focus\:max-w-5xl:focus{
    max-width: 64rem;
  }

  .s1920\:focus\:max-w-6xl:focus{
    max-width: 72rem;
  }

  .s1920\:focus\:max-w-full:focus{
    max-width: 100%;
  }

  .s1920\:focus\:max-w-screen-sm:focus{
    max-width: 640px;
  }

  .s1920\:focus\:max-w-screen-s1440:focus{
    max-width: 1430px;
  }

  .s1920\:focus\:max-w-screen-s1920:focus{
    max-width: 1910px;
  }

  .s1920\:focus\:max-w-page:focus{
    max-width: 80rem;
  }

  .s1920\:focus\:max-w-container:focus{
    max-width: 77.25rem;
  }

  .s1920\:focus\:max-w-modalMd:focus{
    max-width: 37.5rem;
  }

  .s1920\:focus\:max-w-modalMdXl:focus{
    max-width: 52.5rem;
  }

  .s1920\:focus\:max-w-modalLg:focus{
    max-width: 77.25rem;
  }

  .s1920\:focus\:max-w-input:focus{
    max-width: 32.5rem;
  }

  .s1920\:focus\:max-w-halfInput:focus{
    max-width: 16.25rem;
  }

  .s1920\:focus\:max-w-formContainer:focus{
    max-width: 47.875rem;
  }

  .s1920\:focus\:max-w-sidebar:focus{
    max-width: 27rem;
  }

  .s1920\:focus\:max-w-doubleSidebar:focus{
    max-width: 475px;
  }

  .s1920\:focus\:max-w-practiceSidebarContent:focus{
    max-width: 49.5rem;
  }

  .s1920\:focus\:max-w-doubleSidebarContent:focus{
    max-width: 950px;
  }

  .s1920\:active\:max-w-none:active{
    max-width: none;
  }

  .s1920\:active\:max-w-xs:active{
    max-width: 20rem;
  }

  .s1920\:active\:max-w-sm:active{
    max-width: 24rem;
  }

  .s1920\:active\:max-w-md:active{
    max-width: 28rem;
  }

  .s1920\:active\:max-w-lg:active{
    max-width: 32rem;
  }

  .s1920\:active\:max-w-xl:active{
    max-width: 36rem;
  }

  .s1920\:active\:max-w-2xl:active{
    max-width: 42rem;
  }

  .s1920\:active\:max-w-3xl:active{
    max-width: 48rem;
  }

  .s1920\:active\:max-w-4xl:active{
    max-width: 56rem;
  }

  .s1920\:active\:max-w-5xl:active{
    max-width: 64rem;
  }

  .s1920\:active\:max-w-6xl:active{
    max-width: 72rem;
  }

  .s1920\:active\:max-w-full:active{
    max-width: 100%;
  }

  .s1920\:active\:max-w-screen-sm:active{
    max-width: 640px;
  }

  .s1920\:active\:max-w-screen-s1440:active{
    max-width: 1430px;
  }

  .s1920\:active\:max-w-screen-s1920:active{
    max-width: 1910px;
  }

  .s1920\:active\:max-w-page:active{
    max-width: 80rem;
  }

  .s1920\:active\:max-w-container:active{
    max-width: 77.25rem;
  }

  .s1920\:active\:max-w-modalMd:active{
    max-width: 37.5rem;
  }

  .s1920\:active\:max-w-modalMdXl:active{
    max-width: 52.5rem;
  }

  .s1920\:active\:max-w-modalLg:active{
    max-width: 77.25rem;
  }

  .s1920\:active\:max-w-input:active{
    max-width: 32.5rem;
  }

  .s1920\:active\:max-w-halfInput:active{
    max-width: 16.25rem;
  }

  .s1920\:active\:max-w-formContainer:active{
    max-width: 47.875rem;
  }

  .s1920\:active\:max-w-sidebar:active{
    max-width: 27rem;
  }

  .s1920\:active\:max-w-doubleSidebar:active{
    max-width: 475px;
  }

  .s1920\:active\:max-w-practiceSidebarContent:active{
    max-width: 49.5rem;
  }

  .s1920\:active\:max-w-doubleSidebarContent:active{
    max-width: 950px;
  }

  .s1920\:first\:max-w-none:first-child{
    max-width: none;
  }

  .s1920\:first\:max-w-xs:first-child{
    max-width: 20rem;
  }

  .s1920\:first\:max-w-sm:first-child{
    max-width: 24rem;
  }

  .s1920\:first\:max-w-md:first-child{
    max-width: 28rem;
  }

  .s1920\:first\:max-w-lg:first-child{
    max-width: 32rem;
  }

  .s1920\:first\:max-w-xl:first-child{
    max-width: 36rem;
  }

  .s1920\:first\:max-w-2xl:first-child{
    max-width: 42rem;
  }

  .s1920\:first\:max-w-3xl:first-child{
    max-width: 48rem;
  }

  .s1920\:first\:max-w-4xl:first-child{
    max-width: 56rem;
  }

  .s1920\:first\:max-w-5xl:first-child{
    max-width: 64rem;
  }

  .s1920\:first\:max-w-6xl:first-child{
    max-width: 72rem;
  }

  .s1920\:first\:max-w-full:first-child{
    max-width: 100%;
  }

  .s1920\:first\:max-w-screen-sm:first-child{
    max-width: 640px;
  }

  .s1920\:first\:max-w-screen-s1440:first-child{
    max-width: 1430px;
  }

  .s1920\:first\:max-w-screen-s1920:first-child{
    max-width: 1910px;
  }

  .s1920\:first\:max-w-page:first-child{
    max-width: 80rem;
  }

  .s1920\:first\:max-w-container:first-child{
    max-width: 77.25rem;
  }

  .s1920\:first\:max-w-modalMd:first-child{
    max-width: 37.5rem;
  }

  .s1920\:first\:max-w-modalMdXl:first-child{
    max-width: 52.5rem;
  }

  .s1920\:first\:max-w-modalLg:first-child{
    max-width: 77.25rem;
  }

  .s1920\:first\:max-w-input:first-child{
    max-width: 32.5rem;
  }

  .s1920\:first\:max-w-halfInput:first-child{
    max-width: 16.25rem;
  }

  .s1920\:first\:max-w-formContainer:first-child{
    max-width: 47.875rem;
  }

  .s1920\:first\:max-w-sidebar:first-child{
    max-width: 27rem;
  }

  .s1920\:first\:max-w-doubleSidebar:first-child{
    max-width: 475px;
  }

  .s1920\:first\:max-w-practiceSidebarContent:first-child{
    max-width: 49.5rem;
  }

  .s1920\:first\:max-w-doubleSidebarContent:first-child{
    max-width: 950px;
  }

  .s1920\:last\:max-w-none:last-child{
    max-width: none;
  }

  .s1920\:last\:max-w-xs:last-child{
    max-width: 20rem;
  }

  .s1920\:last\:max-w-sm:last-child{
    max-width: 24rem;
  }

  .s1920\:last\:max-w-md:last-child{
    max-width: 28rem;
  }

  .s1920\:last\:max-w-lg:last-child{
    max-width: 32rem;
  }

  .s1920\:last\:max-w-xl:last-child{
    max-width: 36rem;
  }

  .s1920\:last\:max-w-2xl:last-child{
    max-width: 42rem;
  }

  .s1920\:last\:max-w-3xl:last-child{
    max-width: 48rem;
  }

  .s1920\:last\:max-w-4xl:last-child{
    max-width: 56rem;
  }

  .s1920\:last\:max-w-5xl:last-child{
    max-width: 64rem;
  }

  .s1920\:last\:max-w-6xl:last-child{
    max-width: 72rem;
  }

  .s1920\:last\:max-w-full:last-child{
    max-width: 100%;
  }

  .s1920\:last\:max-w-screen-sm:last-child{
    max-width: 640px;
  }

  .s1920\:last\:max-w-screen-s1440:last-child{
    max-width: 1430px;
  }

  .s1920\:last\:max-w-screen-s1920:last-child{
    max-width: 1910px;
  }

  .s1920\:last\:max-w-page:last-child{
    max-width: 80rem;
  }

  .s1920\:last\:max-w-container:last-child{
    max-width: 77.25rem;
  }

  .s1920\:last\:max-w-modalMd:last-child{
    max-width: 37.5rem;
  }

  .s1920\:last\:max-w-modalMdXl:last-child{
    max-width: 52.5rem;
  }

  .s1920\:last\:max-w-modalLg:last-child{
    max-width: 77.25rem;
  }

  .s1920\:last\:max-w-input:last-child{
    max-width: 32.5rem;
  }

  .s1920\:last\:max-w-halfInput:last-child{
    max-width: 16.25rem;
  }

  .s1920\:last\:max-w-formContainer:last-child{
    max-width: 47.875rem;
  }

  .s1920\:last\:max-w-sidebar:last-child{
    max-width: 27rem;
  }

  .s1920\:last\:max-w-doubleSidebar:last-child{
    max-width: 475px;
  }

  .s1920\:last\:max-w-practiceSidebarContent:last-child{
    max-width: 49.5rem;
  }

  .s1920\:last\:max-w-doubleSidebarContent:last-child{
    max-width: 950px;
  }

  .s1920\:min-h-0{
    min-height: 0;
  }

  .s1920\:min-h-1{
    min-height: 0.25rem;
  }

  .s1920\:min-h-2{
    min-height: 0.5rem;
  }

  .s1920\:min-h-3{
    min-height: 0.75rem;
  }

  .s1920\:min-h-4{
    min-height: 1rem;
  }

  .s1920\:min-h-5{
    min-height: 1.25rem;
  }

  .s1920\:min-h-6{
    min-height: 1.5rem;
  }

  .s1920\:min-h-8{
    min-height: 2rem;
  }

  .s1920\:min-h-10{
    min-height: 2.5rem;
  }

  .s1920\:min-h-12{
    min-height: 3rem;
  }

  .s1920\:min-h-14{
    min-height: 3.5rem;
  }

  .s1920\:min-h-16{
    min-height: 4rem;
  }

  .s1920\:min-h-20{
    min-height: 5rem;
  }

  .s1920\:min-h-24{
    min-height: 6rem;
  }

  .s1920\:min-h-28{
    min-height: 7rem;
  }

  .s1920\:min-h-32{
    min-height: 8rem;
  }

  .s1920\:min-h-40{
    min-height: 10rem;
  }

  .s1920\:min-h-48{
    min-height: 12rem;
  }

  .s1920\:min-h-56{
    min-height: 14rem;
  }

  .s1920\:min-h-64{
    min-height: 16rem;
  }

  .s1920\:min-h-full{
    min-height: 100%;
  }

  .s1920\:min-h-screen{
    min-height: 100vh;
  }

  .s1920\:min-h-auto{
    min-height: auto;
  }

  .s1920\:min-h-px{
    min-height: 1px;
  }

  .s1920\:min-h-modal{
    min-height: 20rem;
  }

  .s1920\:hover\:min-h-0:hover{
    min-height: 0;
  }

  .s1920\:hover\:min-h-1:hover{
    min-height: 0.25rem;
  }

  .s1920\:hover\:min-h-2:hover{
    min-height: 0.5rem;
  }

  .s1920\:hover\:min-h-3:hover{
    min-height: 0.75rem;
  }

  .s1920\:hover\:min-h-4:hover{
    min-height: 1rem;
  }

  .s1920\:hover\:min-h-5:hover{
    min-height: 1.25rem;
  }

  .s1920\:hover\:min-h-6:hover{
    min-height: 1.5rem;
  }

  .s1920\:hover\:min-h-8:hover{
    min-height: 2rem;
  }

  .s1920\:hover\:min-h-10:hover{
    min-height: 2.5rem;
  }

  .s1920\:hover\:min-h-12:hover{
    min-height: 3rem;
  }

  .s1920\:hover\:min-h-14:hover{
    min-height: 3.5rem;
  }

  .s1920\:hover\:min-h-16:hover{
    min-height: 4rem;
  }

  .s1920\:hover\:min-h-20:hover{
    min-height: 5rem;
  }

  .s1920\:hover\:min-h-24:hover{
    min-height: 6rem;
  }

  .s1920\:hover\:min-h-28:hover{
    min-height: 7rem;
  }

  .s1920\:hover\:min-h-32:hover{
    min-height: 8rem;
  }

  .s1920\:hover\:min-h-40:hover{
    min-height: 10rem;
  }

  .s1920\:hover\:min-h-48:hover{
    min-height: 12rem;
  }

  .s1920\:hover\:min-h-56:hover{
    min-height: 14rem;
  }

  .s1920\:hover\:min-h-64:hover{
    min-height: 16rem;
  }

  .s1920\:hover\:min-h-full:hover{
    min-height: 100%;
  }

  .s1920\:hover\:min-h-screen:hover{
    min-height: 100vh;
  }

  .s1920\:hover\:min-h-auto:hover{
    min-height: auto;
  }

  .s1920\:hover\:min-h-px:hover{
    min-height: 1px;
  }

  .s1920\:hover\:min-h-modal:hover{
    min-height: 20rem;
  }

  .s1920\:focus\:min-h-0:focus{
    min-height: 0;
  }

  .s1920\:focus\:min-h-1:focus{
    min-height: 0.25rem;
  }

  .s1920\:focus\:min-h-2:focus{
    min-height: 0.5rem;
  }

  .s1920\:focus\:min-h-3:focus{
    min-height: 0.75rem;
  }

  .s1920\:focus\:min-h-4:focus{
    min-height: 1rem;
  }

  .s1920\:focus\:min-h-5:focus{
    min-height: 1.25rem;
  }

  .s1920\:focus\:min-h-6:focus{
    min-height: 1.5rem;
  }

  .s1920\:focus\:min-h-8:focus{
    min-height: 2rem;
  }

  .s1920\:focus\:min-h-10:focus{
    min-height: 2.5rem;
  }

  .s1920\:focus\:min-h-12:focus{
    min-height: 3rem;
  }

  .s1920\:focus\:min-h-14:focus{
    min-height: 3.5rem;
  }

  .s1920\:focus\:min-h-16:focus{
    min-height: 4rem;
  }

  .s1920\:focus\:min-h-20:focus{
    min-height: 5rem;
  }

  .s1920\:focus\:min-h-24:focus{
    min-height: 6rem;
  }

  .s1920\:focus\:min-h-28:focus{
    min-height: 7rem;
  }

  .s1920\:focus\:min-h-32:focus{
    min-height: 8rem;
  }

  .s1920\:focus\:min-h-40:focus{
    min-height: 10rem;
  }

  .s1920\:focus\:min-h-48:focus{
    min-height: 12rem;
  }

  .s1920\:focus\:min-h-56:focus{
    min-height: 14rem;
  }

  .s1920\:focus\:min-h-64:focus{
    min-height: 16rem;
  }

  .s1920\:focus\:min-h-full:focus{
    min-height: 100%;
  }

  .s1920\:focus\:min-h-screen:focus{
    min-height: 100vh;
  }

  .s1920\:focus\:min-h-auto:focus{
    min-height: auto;
  }

  .s1920\:focus\:min-h-px:focus{
    min-height: 1px;
  }

  .s1920\:focus\:min-h-modal:focus{
    min-height: 20rem;
  }

  .s1920\:active\:min-h-0:active{
    min-height: 0;
  }

  .s1920\:active\:min-h-1:active{
    min-height: 0.25rem;
  }

  .s1920\:active\:min-h-2:active{
    min-height: 0.5rem;
  }

  .s1920\:active\:min-h-3:active{
    min-height: 0.75rem;
  }

  .s1920\:active\:min-h-4:active{
    min-height: 1rem;
  }

  .s1920\:active\:min-h-5:active{
    min-height: 1.25rem;
  }

  .s1920\:active\:min-h-6:active{
    min-height: 1.5rem;
  }

  .s1920\:active\:min-h-8:active{
    min-height: 2rem;
  }

  .s1920\:active\:min-h-10:active{
    min-height: 2.5rem;
  }

  .s1920\:active\:min-h-12:active{
    min-height: 3rem;
  }

  .s1920\:active\:min-h-14:active{
    min-height: 3.5rem;
  }

  .s1920\:active\:min-h-16:active{
    min-height: 4rem;
  }

  .s1920\:active\:min-h-20:active{
    min-height: 5rem;
  }

  .s1920\:active\:min-h-24:active{
    min-height: 6rem;
  }

  .s1920\:active\:min-h-28:active{
    min-height: 7rem;
  }

  .s1920\:active\:min-h-32:active{
    min-height: 8rem;
  }

  .s1920\:active\:min-h-40:active{
    min-height: 10rem;
  }

  .s1920\:active\:min-h-48:active{
    min-height: 12rem;
  }

  .s1920\:active\:min-h-56:active{
    min-height: 14rem;
  }

  .s1920\:active\:min-h-64:active{
    min-height: 16rem;
  }

  .s1920\:active\:min-h-full:active{
    min-height: 100%;
  }

  .s1920\:active\:min-h-screen:active{
    min-height: 100vh;
  }

  .s1920\:active\:min-h-auto:active{
    min-height: auto;
  }

  .s1920\:active\:min-h-px:active{
    min-height: 1px;
  }

  .s1920\:active\:min-h-modal:active{
    min-height: 20rem;
  }

  .s1920\:first\:min-h-0:first-child{
    min-height: 0;
  }

  .s1920\:first\:min-h-1:first-child{
    min-height: 0.25rem;
  }

  .s1920\:first\:min-h-2:first-child{
    min-height: 0.5rem;
  }

  .s1920\:first\:min-h-3:first-child{
    min-height: 0.75rem;
  }

  .s1920\:first\:min-h-4:first-child{
    min-height: 1rem;
  }

  .s1920\:first\:min-h-5:first-child{
    min-height: 1.25rem;
  }

  .s1920\:first\:min-h-6:first-child{
    min-height: 1.5rem;
  }

  .s1920\:first\:min-h-8:first-child{
    min-height: 2rem;
  }

  .s1920\:first\:min-h-10:first-child{
    min-height: 2.5rem;
  }

  .s1920\:first\:min-h-12:first-child{
    min-height: 3rem;
  }

  .s1920\:first\:min-h-14:first-child{
    min-height: 3.5rem;
  }

  .s1920\:first\:min-h-16:first-child{
    min-height: 4rem;
  }

  .s1920\:first\:min-h-20:first-child{
    min-height: 5rem;
  }

  .s1920\:first\:min-h-24:first-child{
    min-height: 6rem;
  }

  .s1920\:first\:min-h-28:first-child{
    min-height: 7rem;
  }

  .s1920\:first\:min-h-32:first-child{
    min-height: 8rem;
  }

  .s1920\:first\:min-h-40:first-child{
    min-height: 10rem;
  }

  .s1920\:first\:min-h-48:first-child{
    min-height: 12rem;
  }

  .s1920\:first\:min-h-56:first-child{
    min-height: 14rem;
  }

  .s1920\:first\:min-h-64:first-child{
    min-height: 16rem;
  }

  .s1920\:first\:min-h-full:first-child{
    min-height: 100%;
  }

  .s1920\:first\:min-h-screen:first-child{
    min-height: 100vh;
  }

  .s1920\:first\:min-h-auto:first-child{
    min-height: auto;
  }

  .s1920\:first\:min-h-px:first-child{
    min-height: 1px;
  }

  .s1920\:first\:min-h-modal:first-child{
    min-height: 20rem;
  }

  .s1920\:last\:min-h-0:last-child{
    min-height: 0;
  }

  .s1920\:last\:min-h-1:last-child{
    min-height: 0.25rem;
  }

  .s1920\:last\:min-h-2:last-child{
    min-height: 0.5rem;
  }

  .s1920\:last\:min-h-3:last-child{
    min-height: 0.75rem;
  }

  .s1920\:last\:min-h-4:last-child{
    min-height: 1rem;
  }

  .s1920\:last\:min-h-5:last-child{
    min-height: 1.25rem;
  }

  .s1920\:last\:min-h-6:last-child{
    min-height: 1.5rem;
  }

  .s1920\:last\:min-h-8:last-child{
    min-height: 2rem;
  }

  .s1920\:last\:min-h-10:last-child{
    min-height: 2.5rem;
  }

  .s1920\:last\:min-h-12:last-child{
    min-height: 3rem;
  }

  .s1920\:last\:min-h-14:last-child{
    min-height: 3.5rem;
  }

  .s1920\:last\:min-h-16:last-child{
    min-height: 4rem;
  }

  .s1920\:last\:min-h-20:last-child{
    min-height: 5rem;
  }

  .s1920\:last\:min-h-24:last-child{
    min-height: 6rem;
  }

  .s1920\:last\:min-h-28:last-child{
    min-height: 7rem;
  }

  .s1920\:last\:min-h-32:last-child{
    min-height: 8rem;
  }

  .s1920\:last\:min-h-40:last-child{
    min-height: 10rem;
  }

  .s1920\:last\:min-h-48:last-child{
    min-height: 12rem;
  }

  .s1920\:last\:min-h-56:last-child{
    min-height: 14rem;
  }

  .s1920\:last\:min-h-64:last-child{
    min-height: 16rem;
  }

  .s1920\:last\:min-h-full:last-child{
    min-height: 100%;
  }

  .s1920\:last\:min-h-screen:last-child{
    min-height: 100vh;
  }

  .s1920\:last\:min-h-auto:last-child{
    min-height: auto;
  }

  .s1920\:last\:min-h-px:last-child{
    min-height: 1px;
  }

  .s1920\:last\:min-h-modal:last-child{
    min-height: 20rem;
  }

  .s1920\:min-w-0{
    min-width: 0;
  }

  .s1920\:min-w-1{
    min-width: 0.25rem;
  }

  .s1920\:min-w-2{
    min-width: 0.5rem;
  }

  .s1920\:min-w-3{
    min-width: 0.75rem;
  }

  .s1920\:min-w-4{
    min-width: 1rem;
  }

  .s1920\:min-w-5{
    min-width: 1.25rem;
  }

  .s1920\:min-w-6{
    min-width: 1.5rem;
  }

  .s1920\:min-w-8{
    min-width: 2rem;
  }

  .s1920\:min-w-10{
    min-width: 2.5rem;
  }

  .s1920\:min-w-12{
    min-width: 3rem;
  }

  .s1920\:min-w-14{
    min-width: 3.5rem;
  }

  .s1920\:min-w-16{
    min-width: 4rem;
  }

  .s1920\:min-w-20{
    min-width: 5rem;
  }

  .s1920\:min-w-24{
    min-width: 6rem;
  }

  .s1920\:min-w-32{
    min-width: 8rem;
  }

  .s1920\:min-w-36{
    min-width: 9rem;
  }

  .s1920\:min-w-40{
    min-width: 10rem;
  }

  .s1920\:min-w-48{
    min-width: 12rem;
  }

  .s1920\:min-w-56{
    min-width: 14rem;
  }

  .s1920\:min-w-64{
    min-width: 16rem;
  }

  .s1920\:min-w-full{
    min-width: 100%;
  }

  .s1920\:min-w-auto{
    min-width: auto;
  }

  .s1920\:min-w-px{
    min-width: 1px;
  }

  .s1920\:min-w-1\/2{
    min-width: 50%;
  }

  .s1920\:min-w-1\/3{
    min-width: 33.333333%;
  }

  .s1920\:min-w-2\/3{
    min-width: 66.666667%;
  }

  .s1920\:min-w-1\/4{
    min-width: 25%;
  }

  .s1920\:min-w-2\/4{
    min-width: 50%;
  }

  .s1920\:min-w-3\/4{
    min-width: 75%;
  }

  .s1920\:min-w-1\/5{
    min-width: 20%;
  }

  .s1920\:min-w-2\/5{
    min-width: 40%;
  }

  .s1920\:min-w-3\/5{
    min-width: 60%;
  }

  .s1920\:min-w-4\/5{
    min-width: 80%;
  }

  .s1920\:min-w-1\/6{
    min-width: 16.666667%;
  }

  .s1920\:min-w-2\/6{
    min-width: 33.333333%;
  }

  .s1920\:min-w-3\/6{
    min-width: 50%;
  }

  .s1920\:min-w-4\/6{
    min-width: 66.666667%;
  }

  .s1920\:min-w-5\/6{
    min-width: 83.333333%;
  }

  .s1920\:min-w-1\/12{
    min-width: 8.333333%;
  }

  .s1920\:min-w-2\/12{
    min-width: 16.666667%;
  }

  .s1920\:min-w-3\/12{
    min-width: 25%;
  }

  .s1920\:min-w-4\/12{
    min-width: 33.333333%;
  }

  .s1920\:min-w-5\/12{
    min-width: 41.666667%;
  }

  .s1920\:min-w-6\/12{
    min-width: 50%;
  }

  .s1920\:min-w-7\/12{
    min-width: 58.333333%;
  }

  .s1920\:min-w-8\/12{
    min-width: 66.666667%;
  }

  .s1920\:min-w-9\/12{
    min-width: 75%;
  }

  .s1920\:min-w-10\/12{
    min-width: 83.333333%;
  }

  .s1920\:min-w-11\/12{
    min-width: 91.666667%;
  }

  .s1920\:min-w-screen{
    min-width: 100vw;
  }

  .s1920\:min-w-widePage{
    min-width: 120rem;
  }

  .s1920\:min-w-page{
    min-width: 80rem;
  }

  .s1920\:min-w-container{
    min-width: 77.25rem;
  }

  .s1920\:min-w-tooltip{
    min-width: 25rem;
  }

  .s1920\:min-w-smallTooltip{
    min-width: 15rem;
  }

  .s1920\:min-w-xsmallTooltip{
    min-width: 6.0rem;
  }

  .s1920\:min-w-sidebar{
    min-width: 27rem;
  }

  .s1920\:min-w-doubleSidebar{
    min-width: 360px;
  }

  .s1920\:min-w-practiceSidebar{
    min-width: 22.5rem;
  }

  .s1920\:min-w-3\/8{
    min-width: 37.5%;
  }

  .s1920\:min-w-1\/10{
    min-width: 10%;
  }

  .s1920\:min-w-2\/10{
    min-width: 20%;
  }

  .s1920\:min-w-3\/10{
    min-width: 30%;
  }

  .s1920\:min-w-4\/10{
    min-width: 40%;
  }

  .s1920\:min-w-5\/10{
    min-width: 50%;
  }

  .s1920\:min-w-6\/10{
    min-width: 60%;
  }

  .s1920\:min-w-7\/10{
    min-width: 70%;
  }

  .s1920\:min-w-8\/10{
    min-width: 80%;
  }

  .s1920\:min-w-9\/10{
    min-width: 90%;
  }

  .s1920\:min-w-input{
    min-width: 15.75rem;
  }

  .s1920\:min-w-inherit{
    min-width: inherit;
  }

  .s1920\:min-w-modalMd{
    min-width: 37.5rem;
  }

  .s1920\:min-w-modalMdXl{
    min-width: 52.5rem;
  }

  .s1920\:min-w-modalLg{
    min-width: 77.25rem;
  }

  .s1920\:min-w-doubleSidebarContent{
    min-width: 720px;
  }

  .s1920\:hover\:min-w-0:hover{
    min-width: 0;
  }

  .s1920\:hover\:min-w-1:hover{
    min-width: 0.25rem;
  }

  .s1920\:hover\:min-w-2:hover{
    min-width: 0.5rem;
  }

  .s1920\:hover\:min-w-3:hover{
    min-width: 0.75rem;
  }

  .s1920\:hover\:min-w-4:hover{
    min-width: 1rem;
  }

  .s1920\:hover\:min-w-5:hover{
    min-width: 1.25rem;
  }

  .s1920\:hover\:min-w-6:hover{
    min-width: 1.5rem;
  }

  .s1920\:hover\:min-w-8:hover{
    min-width: 2rem;
  }

  .s1920\:hover\:min-w-10:hover{
    min-width: 2.5rem;
  }

  .s1920\:hover\:min-w-12:hover{
    min-width: 3rem;
  }

  .s1920\:hover\:min-w-14:hover{
    min-width: 3.5rem;
  }

  .s1920\:hover\:min-w-16:hover{
    min-width: 4rem;
  }

  .s1920\:hover\:min-w-20:hover{
    min-width: 5rem;
  }

  .s1920\:hover\:min-w-24:hover{
    min-width: 6rem;
  }

  .s1920\:hover\:min-w-32:hover{
    min-width: 8rem;
  }

  .s1920\:hover\:min-w-36:hover{
    min-width: 9rem;
  }

  .s1920\:hover\:min-w-40:hover{
    min-width: 10rem;
  }

  .s1920\:hover\:min-w-48:hover{
    min-width: 12rem;
  }

  .s1920\:hover\:min-w-56:hover{
    min-width: 14rem;
  }

  .s1920\:hover\:min-w-64:hover{
    min-width: 16rem;
  }

  .s1920\:hover\:min-w-full:hover{
    min-width: 100%;
  }

  .s1920\:hover\:min-w-auto:hover{
    min-width: auto;
  }

  .s1920\:hover\:min-w-px:hover{
    min-width: 1px;
  }

  .s1920\:hover\:min-w-1\/2:hover{
    min-width: 50%;
  }

  .s1920\:hover\:min-w-1\/3:hover{
    min-width: 33.333333%;
  }

  .s1920\:hover\:min-w-2\/3:hover{
    min-width: 66.666667%;
  }

  .s1920\:hover\:min-w-1\/4:hover{
    min-width: 25%;
  }

  .s1920\:hover\:min-w-2\/4:hover{
    min-width: 50%;
  }

  .s1920\:hover\:min-w-3\/4:hover{
    min-width: 75%;
  }

  .s1920\:hover\:min-w-1\/5:hover{
    min-width: 20%;
  }

  .s1920\:hover\:min-w-2\/5:hover{
    min-width: 40%;
  }

  .s1920\:hover\:min-w-3\/5:hover{
    min-width: 60%;
  }

  .s1920\:hover\:min-w-4\/5:hover{
    min-width: 80%;
  }

  .s1920\:hover\:min-w-1\/6:hover{
    min-width: 16.666667%;
  }

  .s1920\:hover\:min-w-2\/6:hover{
    min-width: 33.333333%;
  }

  .s1920\:hover\:min-w-3\/6:hover{
    min-width: 50%;
  }

  .s1920\:hover\:min-w-4\/6:hover{
    min-width: 66.666667%;
  }

  .s1920\:hover\:min-w-5\/6:hover{
    min-width: 83.333333%;
  }

  .s1920\:hover\:min-w-1\/12:hover{
    min-width: 8.333333%;
  }

  .s1920\:hover\:min-w-2\/12:hover{
    min-width: 16.666667%;
  }

  .s1920\:hover\:min-w-3\/12:hover{
    min-width: 25%;
  }

  .s1920\:hover\:min-w-4\/12:hover{
    min-width: 33.333333%;
  }

  .s1920\:hover\:min-w-5\/12:hover{
    min-width: 41.666667%;
  }

  .s1920\:hover\:min-w-6\/12:hover{
    min-width: 50%;
  }

  .s1920\:hover\:min-w-7\/12:hover{
    min-width: 58.333333%;
  }

  .s1920\:hover\:min-w-8\/12:hover{
    min-width: 66.666667%;
  }

  .s1920\:hover\:min-w-9\/12:hover{
    min-width: 75%;
  }

  .s1920\:hover\:min-w-10\/12:hover{
    min-width: 83.333333%;
  }

  .s1920\:hover\:min-w-11\/12:hover{
    min-width: 91.666667%;
  }

  .s1920\:hover\:min-w-screen:hover{
    min-width: 100vw;
  }

  .s1920\:hover\:min-w-widePage:hover{
    min-width: 120rem;
  }

  .s1920\:hover\:min-w-page:hover{
    min-width: 80rem;
  }

  .s1920\:hover\:min-w-container:hover{
    min-width: 77.25rem;
  }

  .s1920\:hover\:min-w-tooltip:hover{
    min-width: 25rem;
  }

  .s1920\:hover\:min-w-smallTooltip:hover{
    min-width: 15rem;
  }

  .s1920\:hover\:min-w-xsmallTooltip:hover{
    min-width: 6.0rem;
  }

  .s1920\:hover\:min-w-sidebar:hover{
    min-width: 27rem;
  }

  .s1920\:hover\:min-w-doubleSidebar:hover{
    min-width: 360px;
  }

  .s1920\:hover\:min-w-practiceSidebar:hover{
    min-width: 22.5rem;
  }

  .s1920\:hover\:min-w-3\/8:hover{
    min-width: 37.5%;
  }

  .s1920\:hover\:min-w-1\/10:hover{
    min-width: 10%;
  }

  .s1920\:hover\:min-w-2\/10:hover{
    min-width: 20%;
  }

  .s1920\:hover\:min-w-3\/10:hover{
    min-width: 30%;
  }

  .s1920\:hover\:min-w-4\/10:hover{
    min-width: 40%;
  }

  .s1920\:hover\:min-w-5\/10:hover{
    min-width: 50%;
  }

  .s1920\:hover\:min-w-6\/10:hover{
    min-width: 60%;
  }

  .s1920\:hover\:min-w-7\/10:hover{
    min-width: 70%;
  }

  .s1920\:hover\:min-w-8\/10:hover{
    min-width: 80%;
  }

  .s1920\:hover\:min-w-9\/10:hover{
    min-width: 90%;
  }

  .s1920\:hover\:min-w-input:hover{
    min-width: 15.75rem;
  }

  .s1920\:hover\:min-w-inherit:hover{
    min-width: inherit;
  }

  .s1920\:hover\:min-w-modalMd:hover{
    min-width: 37.5rem;
  }

  .s1920\:hover\:min-w-modalMdXl:hover{
    min-width: 52.5rem;
  }

  .s1920\:hover\:min-w-modalLg:hover{
    min-width: 77.25rem;
  }

  .s1920\:hover\:min-w-doubleSidebarContent:hover{
    min-width: 720px;
  }

  .s1920\:focus\:min-w-0:focus{
    min-width: 0;
  }

  .s1920\:focus\:min-w-1:focus{
    min-width: 0.25rem;
  }

  .s1920\:focus\:min-w-2:focus{
    min-width: 0.5rem;
  }

  .s1920\:focus\:min-w-3:focus{
    min-width: 0.75rem;
  }

  .s1920\:focus\:min-w-4:focus{
    min-width: 1rem;
  }

  .s1920\:focus\:min-w-5:focus{
    min-width: 1.25rem;
  }

  .s1920\:focus\:min-w-6:focus{
    min-width: 1.5rem;
  }

  .s1920\:focus\:min-w-8:focus{
    min-width: 2rem;
  }

  .s1920\:focus\:min-w-10:focus{
    min-width: 2.5rem;
  }

  .s1920\:focus\:min-w-12:focus{
    min-width: 3rem;
  }

  .s1920\:focus\:min-w-14:focus{
    min-width: 3.5rem;
  }

  .s1920\:focus\:min-w-16:focus{
    min-width: 4rem;
  }

  .s1920\:focus\:min-w-20:focus{
    min-width: 5rem;
  }

  .s1920\:focus\:min-w-24:focus{
    min-width: 6rem;
  }

  .s1920\:focus\:min-w-32:focus{
    min-width: 8rem;
  }

  .s1920\:focus\:min-w-36:focus{
    min-width: 9rem;
  }

  .s1920\:focus\:min-w-40:focus{
    min-width: 10rem;
  }

  .s1920\:focus\:min-w-48:focus{
    min-width: 12rem;
  }

  .s1920\:focus\:min-w-56:focus{
    min-width: 14rem;
  }

  .s1920\:focus\:min-w-64:focus{
    min-width: 16rem;
  }

  .s1920\:focus\:min-w-full:focus{
    min-width: 100%;
  }

  .s1920\:focus\:min-w-auto:focus{
    min-width: auto;
  }

  .s1920\:focus\:min-w-px:focus{
    min-width: 1px;
  }

  .s1920\:focus\:min-w-1\/2:focus{
    min-width: 50%;
  }

  .s1920\:focus\:min-w-1\/3:focus{
    min-width: 33.333333%;
  }

  .s1920\:focus\:min-w-2\/3:focus{
    min-width: 66.666667%;
  }

  .s1920\:focus\:min-w-1\/4:focus{
    min-width: 25%;
  }

  .s1920\:focus\:min-w-2\/4:focus{
    min-width: 50%;
  }

  .s1920\:focus\:min-w-3\/4:focus{
    min-width: 75%;
  }

  .s1920\:focus\:min-w-1\/5:focus{
    min-width: 20%;
  }

  .s1920\:focus\:min-w-2\/5:focus{
    min-width: 40%;
  }

  .s1920\:focus\:min-w-3\/5:focus{
    min-width: 60%;
  }

  .s1920\:focus\:min-w-4\/5:focus{
    min-width: 80%;
  }

  .s1920\:focus\:min-w-1\/6:focus{
    min-width: 16.666667%;
  }

  .s1920\:focus\:min-w-2\/6:focus{
    min-width: 33.333333%;
  }

  .s1920\:focus\:min-w-3\/6:focus{
    min-width: 50%;
  }

  .s1920\:focus\:min-w-4\/6:focus{
    min-width: 66.666667%;
  }

  .s1920\:focus\:min-w-5\/6:focus{
    min-width: 83.333333%;
  }

  .s1920\:focus\:min-w-1\/12:focus{
    min-width: 8.333333%;
  }

  .s1920\:focus\:min-w-2\/12:focus{
    min-width: 16.666667%;
  }

  .s1920\:focus\:min-w-3\/12:focus{
    min-width: 25%;
  }

  .s1920\:focus\:min-w-4\/12:focus{
    min-width: 33.333333%;
  }

  .s1920\:focus\:min-w-5\/12:focus{
    min-width: 41.666667%;
  }

  .s1920\:focus\:min-w-6\/12:focus{
    min-width: 50%;
  }

  .s1920\:focus\:min-w-7\/12:focus{
    min-width: 58.333333%;
  }

  .s1920\:focus\:min-w-8\/12:focus{
    min-width: 66.666667%;
  }

  .s1920\:focus\:min-w-9\/12:focus{
    min-width: 75%;
  }

  .s1920\:focus\:min-w-10\/12:focus{
    min-width: 83.333333%;
  }

  .s1920\:focus\:min-w-11\/12:focus{
    min-width: 91.666667%;
  }

  .s1920\:focus\:min-w-screen:focus{
    min-width: 100vw;
  }

  .s1920\:focus\:min-w-widePage:focus{
    min-width: 120rem;
  }

  .s1920\:focus\:min-w-page:focus{
    min-width: 80rem;
  }

  .s1920\:focus\:min-w-container:focus{
    min-width: 77.25rem;
  }

  .s1920\:focus\:min-w-tooltip:focus{
    min-width: 25rem;
  }

  .s1920\:focus\:min-w-smallTooltip:focus{
    min-width: 15rem;
  }

  .s1920\:focus\:min-w-xsmallTooltip:focus{
    min-width: 6.0rem;
  }

  .s1920\:focus\:min-w-sidebar:focus{
    min-width: 27rem;
  }

  .s1920\:focus\:min-w-doubleSidebar:focus{
    min-width: 360px;
  }

  .s1920\:focus\:min-w-practiceSidebar:focus{
    min-width: 22.5rem;
  }

  .s1920\:focus\:min-w-3\/8:focus{
    min-width: 37.5%;
  }

  .s1920\:focus\:min-w-1\/10:focus{
    min-width: 10%;
  }

  .s1920\:focus\:min-w-2\/10:focus{
    min-width: 20%;
  }

  .s1920\:focus\:min-w-3\/10:focus{
    min-width: 30%;
  }

  .s1920\:focus\:min-w-4\/10:focus{
    min-width: 40%;
  }

  .s1920\:focus\:min-w-5\/10:focus{
    min-width: 50%;
  }

  .s1920\:focus\:min-w-6\/10:focus{
    min-width: 60%;
  }

  .s1920\:focus\:min-w-7\/10:focus{
    min-width: 70%;
  }

  .s1920\:focus\:min-w-8\/10:focus{
    min-width: 80%;
  }

  .s1920\:focus\:min-w-9\/10:focus{
    min-width: 90%;
  }

  .s1920\:focus\:min-w-input:focus{
    min-width: 15.75rem;
  }

  .s1920\:focus\:min-w-inherit:focus{
    min-width: inherit;
  }

  .s1920\:focus\:min-w-modalMd:focus{
    min-width: 37.5rem;
  }

  .s1920\:focus\:min-w-modalMdXl:focus{
    min-width: 52.5rem;
  }

  .s1920\:focus\:min-w-modalLg:focus{
    min-width: 77.25rem;
  }

  .s1920\:focus\:min-w-doubleSidebarContent:focus{
    min-width: 720px;
  }

  .s1920\:active\:min-w-0:active{
    min-width: 0;
  }

  .s1920\:active\:min-w-1:active{
    min-width: 0.25rem;
  }

  .s1920\:active\:min-w-2:active{
    min-width: 0.5rem;
  }

  .s1920\:active\:min-w-3:active{
    min-width: 0.75rem;
  }

  .s1920\:active\:min-w-4:active{
    min-width: 1rem;
  }

  .s1920\:active\:min-w-5:active{
    min-width: 1.25rem;
  }

  .s1920\:active\:min-w-6:active{
    min-width: 1.5rem;
  }

  .s1920\:active\:min-w-8:active{
    min-width: 2rem;
  }

  .s1920\:active\:min-w-10:active{
    min-width: 2.5rem;
  }

  .s1920\:active\:min-w-12:active{
    min-width: 3rem;
  }

  .s1920\:active\:min-w-14:active{
    min-width: 3.5rem;
  }

  .s1920\:active\:min-w-16:active{
    min-width: 4rem;
  }

  .s1920\:active\:min-w-20:active{
    min-width: 5rem;
  }

  .s1920\:active\:min-w-24:active{
    min-width: 6rem;
  }

  .s1920\:active\:min-w-32:active{
    min-width: 8rem;
  }

  .s1920\:active\:min-w-36:active{
    min-width: 9rem;
  }

  .s1920\:active\:min-w-40:active{
    min-width: 10rem;
  }

  .s1920\:active\:min-w-48:active{
    min-width: 12rem;
  }

  .s1920\:active\:min-w-56:active{
    min-width: 14rem;
  }

  .s1920\:active\:min-w-64:active{
    min-width: 16rem;
  }

  .s1920\:active\:min-w-full:active{
    min-width: 100%;
  }

  .s1920\:active\:min-w-auto:active{
    min-width: auto;
  }

  .s1920\:active\:min-w-px:active{
    min-width: 1px;
  }

  .s1920\:active\:min-w-1\/2:active{
    min-width: 50%;
  }

  .s1920\:active\:min-w-1\/3:active{
    min-width: 33.333333%;
  }

  .s1920\:active\:min-w-2\/3:active{
    min-width: 66.666667%;
  }

  .s1920\:active\:min-w-1\/4:active{
    min-width: 25%;
  }

  .s1920\:active\:min-w-2\/4:active{
    min-width: 50%;
  }

  .s1920\:active\:min-w-3\/4:active{
    min-width: 75%;
  }

  .s1920\:active\:min-w-1\/5:active{
    min-width: 20%;
  }

  .s1920\:active\:min-w-2\/5:active{
    min-width: 40%;
  }

  .s1920\:active\:min-w-3\/5:active{
    min-width: 60%;
  }

  .s1920\:active\:min-w-4\/5:active{
    min-width: 80%;
  }

  .s1920\:active\:min-w-1\/6:active{
    min-width: 16.666667%;
  }

  .s1920\:active\:min-w-2\/6:active{
    min-width: 33.333333%;
  }

  .s1920\:active\:min-w-3\/6:active{
    min-width: 50%;
  }

  .s1920\:active\:min-w-4\/6:active{
    min-width: 66.666667%;
  }

  .s1920\:active\:min-w-5\/6:active{
    min-width: 83.333333%;
  }

  .s1920\:active\:min-w-1\/12:active{
    min-width: 8.333333%;
  }

  .s1920\:active\:min-w-2\/12:active{
    min-width: 16.666667%;
  }

  .s1920\:active\:min-w-3\/12:active{
    min-width: 25%;
  }

  .s1920\:active\:min-w-4\/12:active{
    min-width: 33.333333%;
  }

  .s1920\:active\:min-w-5\/12:active{
    min-width: 41.666667%;
  }

  .s1920\:active\:min-w-6\/12:active{
    min-width: 50%;
  }

  .s1920\:active\:min-w-7\/12:active{
    min-width: 58.333333%;
  }

  .s1920\:active\:min-w-8\/12:active{
    min-width: 66.666667%;
  }

  .s1920\:active\:min-w-9\/12:active{
    min-width: 75%;
  }

  .s1920\:active\:min-w-10\/12:active{
    min-width: 83.333333%;
  }

  .s1920\:active\:min-w-11\/12:active{
    min-width: 91.666667%;
  }

  .s1920\:active\:min-w-screen:active{
    min-width: 100vw;
  }

  .s1920\:active\:min-w-widePage:active{
    min-width: 120rem;
  }

  .s1920\:active\:min-w-page:active{
    min-width: 80rem;
  }

  .s1920\:active\:min-w-container:active{
    min-width: 77.25rem;
  }

  .s1920\:active\:min-w-tooltip:active{
    min-width: 25rem;
  }

  .s1920\:active\:min-w-smallTooltip:active{
    min-width: 15rem;
  }

  .s1920\:active\:min-w-xsmallTooltip:active{
    min-width: 6.0rem;
  }

  .s1920\:active\:min-w-sidebar:active{
    min-width: 27rem;
  }

  .s1920\:active\:min-w-doubleSidebar:active{
    min-width: 360px;
  }

  .s1920\:active\:min-w-practiceSidebar:active{
    min-width: 22.5rem;
  }

  .s1920\:active\:min-w-3\/8:active{
    min-width: 37.5%;
  }

  .s1920\:active\:min-w-1\/10:active{
    min-width: 10%;
  }

  .s1920\:active\:min-w-2\/10:active{
    min-width: 20%;
  }

  .s1920\:active\:min-w-3\/10:active{
    min-width: 30%;
  }

  .s1920\:active\:min-w-4\/10:active{
    min-width: 40%;
  }

  .s1920\:active\:min-w-5\/10:active{
    min-width: 50%;
  }

  .s1920\:active\:min-w-6\/10:active{
    min-width: 60%;
  }

  .s1920\:active\:min-w-7\/10:active{
    min-width: 70%;
  }

  .s1920\:active\:min-w-8\/10:active{
    min-width: 80%;
  }

  .s1920\:active\:min-w-9\/10:active{
    min-width: 90%;
  }

  .s1920\:active\:min-w-input:active{
    min-width: 15.75rem;
  }

  .s1920\:active\:min-w-inherit:active{
    min-width: inherit;
  }

  .s1920\:active\:min-w-modalMd:active{
    min-width: 37.5rem;
  }

  .s1920\:active\:min-w-modalMdXl:active{
    min-width: 52.5rem;
  }

  .s1920\:active\:min-w-modalLg:active{
    min-width: 77.25rem;
  }

  .s1920\:active\:min-w-doubleSidebarContent:active{
    min-width: 720px;
  }

  .s1920\:first\:min-w-0:first-child{
    min-width: 0;
  }

  .s1920\:first\:min-w-1:first-child{
    min-width: 0.25rem;
  }

  .s1920\:first\:min-w-2:first-child{
    min-width: 0.5rem;
  }

  .s1920\:first\:min-w-3:first-child{
    min-width: 0.75rem;
  }

  .s1920\:first\:min-w-4:first-child{
    min-width: 1rem;
  }

  .s1920\:first\:min-w-5:first-child{
    min-width: 1.25rem;
  }

  .s1920\:first\:min-w-6:first-child{
    min-width: 1.5rem;
  }

  .s1920\:first\:min-w-8:first-child{
    min-width: 2rem;
  }

  .s1920\:first\:min-w-10:first-child{
    min-width: 2.5rem;
  }

  .s1920\:first\:min-w-12:first-child{
    min-width: 3rem;
  }

  .s1920\:first\:min-w-14:first-child{
    min-width: 3.5rem;
  }

  .s1920\:first\:min-w-16:first-child{
    min-width: 4rem;
  }

  .s1920\:first\:min-w-20:first-child{
    min-width: 5rem;
  }

  .s1920\:first\:min-w-24:first-child{
    min-width: 6rem;
  }

  .s1920\:first\:min-w-32:first-child{
    min-width: 8rem;
  }

  .s1920\:first\:min-w-36:first-child{
    min-width: 9rem;
  }

  .s1920\:first\:min-w-40:first-child{
    min-width: 10rem;
  }

  .s1920\:first\:min-w-48:first-child{
    min-width: 12rem;
  }

  .s1920\:first\:min-w-56:first-child{
    min-width: 14rem;
  }

  .s1920\:first\:min-w-64:first-child{
    min-width: 16rem;
  }

  .s1920\:first\:min-w-full:first-child{
    min-width: 100%;
  }

  .s1920\:first\:min-w-auto:first-child{
    min-width: auto;
  }

  .s1920\:first\:min-w-px:first-child{
    min-width: 1px;
  }

  .s1920\:first\:min-w-1\/2:first-child{
    min-width: 50%;
  }

  .s1920\:first\:min-w-1\/3:first-child{
    min-width: 33.333333%;
  }

  .s1920\:first\:min-w-2\/3:first-child{
    min-width: 66.666667%;
  }

  .s1920\:first\:min-w-1\/4:first-child{
    min-width: 25%;
  }

  .s1920\:first\:min-w-2\/4:first-child{
    min-width: 50%;
  }

  .s1920\:first\:min-w-3\/4:first-child{
    min-width: 75%;
  }

  .s1920\:first\:min-w-1\/5:first-child{
    min-width: 20%;
  }

  .s1920\:first\:min-w-2\/5:first-child{
    min-width: 40%;
  }

  .s1920\:first\:min-w-3\/5:first-child{
    min-width: 60%;
  }

  .s1920\:first\:min-w-4\/5:first-child{
    min-width: 80%;
  }

  .s1920\:first\:min-w-1\/6:first-child{
    min-width: 16.666667%;
  }

  .s1920\:first\:min-w-2\/6:first-child{
    min-width: 33.333333%;
  }

  .s1920\:first\:min-w-3\/6:first-child{
    min-width: 50%;
  }

  .s1920\:first\:min-w-4\/6:first-child{
    min-width: 66.666667%;
  }

  .s1920\:first\:min-w-5\/6:first-child{
    min-width: 83.333333%;
  }

  .s1920\:first\:min-w-1\/12:first-child{
    min-width: 8.333333%;
  }

  .s1920\:first\:min-w-2\/12:first-child{
    min-width: 16.666667%;
  }

  .s1920\:first\:min-w-3\/12:first-child{
    min-width: 25%;
  }

  .s1920\:first\:min-w-4\/12:first-child{
    min-width: 33.333333%;
  }

  .s1920\:first\:min-w-5\/12:first-child{
    min-width: 41.666667%;
  }

  .s1920\:first\:min-w-6\/12:first-child{
    min-width: 50%;
  }

  .s1920\:first\:min-w-7\/12:first-child{
    min-width: 58.333333%;
  }

  .s1920\:first\:min-w-8\/12:first-child{
    min-width: 66.666667%;
  }

  .s1920\:first\:min-w-9\/12:first-child{
    min-width: 75%;
  }

  .s1920\:first\:min-w-10\/12:first-child{
    min-width: 83.333333%;
  }

  .s1920\:first\:min-w-11\/12:first-child{
    min-width: 91.666667%;
  }

  .s1920\:first\:min-w-screen:first-child{
    min-width: 100vw;
  }

  .s1920\:first\:min-w-widePage:first-child{
    min-width: 120rem;
  }

  .s1920\:first\:min-w-page:first-child{
    min-width: 80rem;
  }

  .s1920\:first\:min-w-container:first-child{
    min-width: 77.25rem;
  }

  .s1920\:first\:min-w-tooltip:first-child{
    min-width: 25rem;
  }

  .s1920\:first\:min-w-smallTooltip:first-child{
    min-width: 15rem;
  }

  .s1920\:first\:min-w-xsmallTooltip:first-child{
    min-width: 6.0rem;
  }

  .s1920\:first\:min-w-sidebar:first-child{
    min-width: 27rem;
  }

  .s1920\:first\:min-w-doubleSidebar:first-child{
    min-width: 360px;
  }

  .s1920\:first\:min-w-practiceSidebar:first-child{
    min-width: 22.5rem;
  }

  .s1920\:first\:min-w-3\/8:first-child{
    min-width: 37.5%;
  }

  .s1920\:first\:min-w-1\/10:first-child{
    min-width: 10%;
  }

  .s1920\:first\:min-w-2\/10:first-child{
    min-width: 20%;
  }

  .s1920\:first\:min-w-3\/10:first-child{
    min-width: 30%;
  }

  .s1920\:first\:min-w-4\/10:first-child{
    min-width: 40%;
  }

  .s1920\:first\:min-w-5\/10:first-child{
    min-width: 50%;
  }

  .s1920\:first\:min-w-6\/10:first-child{
    min-width: 60%;
  }

  .s1920\:first\:min-w-7\/10:first-child{
    min-width: 70%;
  }

  .s1920\:first\:min-w-8\/10:first-child{
    min-width: 80%;
  }

  .s1920\:first\:min-w-9\/10:first-child{
    min-width: 90%;
  }

  .s1920\:first\:min-w-input:first-child{
    min-width: 15.75rem;
  }

  .s1920\:first\:min-w-inherit:first-child{
    min-width: inherit;
  }

  .s1920\:first\:min-w-modalMd:first-child{
    min-width: 37.5rem;
  }

  .s1920\:first\:min-w-modalMdXl:first-child{
    min-width: 52.5rem;
  }

  .s1920\:first\:min-w-modalLg:first-child{
    min-width: 77.25rem;
  }

  .s1920\:first\:min-w-doubleSidebarContent:first-child{
    min-width: 720px;
  }

  .s1920\:last\:min-w-0:last-child{
    min-width: 0;
  }

  .s1920\:last\:min-w-1:last-child{
    min-width: 0.25rem;
  }

  .s1920\:last\:min-w-2:last-child{
    min-width: 0.5rem;
  }

  .s1920\:last\:min-w-3:last-child{
    min-width: 0.75rem;
  }

  .s1920\:last\:min-w-4:last-child{
    min-width: 1rem;
  }

  .s1920\:last\:min-w-5:last-child{
    min-width: 1.25rem;
  }

  .s1920\:last\:min-w-6:last-child{
    min-width: 1.5rem;
  }

  .s1920\:last\:min-w-8:last-child{
    min-width: 2rem;
  }

  .s1920\:last\:min-w-10:last-child{
    min-width: 2.5rem;
  }

  .s1920\:last\:min-w-12:last-child{
    min-width: 3rem;
  }

  .s1920\:last\:min-w-14:last-child{
    min-width: 3.5rem;
  }

  .s1920\:last\:min-w-16:last-child{
    min-width: 4rem;
  }

  .s1920\:last\:min-w-20:last-child{
    min-width: 5rem;
  }

  .s1920\:last\:min-w-24:last-child{
    min-width: 6rem;
  }

  .s1920\:last\:min-w-32:last-child{
    min-width: 8rem;
  }

  .s1920\:last\:min-w-36:last-child{
    min-width: 9rem;
  }

  .s1920\:last\:min-w-40:last-child{
    min-width: 10rem;
  }

  .s1920\:last\:min-w-48:last-child{
    min-width: 12rem;
  }

  .s1920\:last\:min-w-56:last-child{
    min-width: 14rem;
  }

  .s1920\:last\:min-w-64:last-child{
    min-width: 16rem;
  }

  .s1920\:last\:min-w-full:last-child{
    min-width: 100%;
  }

  .s1920\:last\:min-w-auto:last-child{
    min-width: auto;
  }

  .s1920\:last\:min-w-px:last-child{
    min-width: 1px;
  }

  .s1920\:last\:min-w-1\/2:last-child{
    min-width: 50%;
  }

  .s1920\:last\:min-w-1\/3:last-child{
    min-width: 33.333333%;
  }

  .s1920\:last\:min-w-2\/3:last-child{
    min-width: 66.666667%;
  }

  .s1920\:last\:min-w-1\/4:last-child{
    min-width: 25%;
  }

  .s1920\:last\:min-w-2\/4:last-child{
    min-width: 50%;
  }

  .s1920\:last\:min-w-3\/4:last-child{
    min-width: 75%;
  }

  .s1920\:last\:min-w-1\/5:last-child{
    min-width: 20%;
  }

  .s1920\:last\:min-w-2\/5:last-child{
    min-width: 40%;
  }

  .s1920\:last\:min-w-3\/5:last-child{
    min-width: 60%;
  }

  .s1920\:last\:min-w-4\/5:last-child{
    min-width: 80%;
  }

  .s1920\:last\:min-w-1\/6:last-child{
    min-width: 16.666667%;
  }

  .s1920\:last\:min-w-2\/6:last-child{
    min-width: 33.333333%;
  }

  .s1920\:last\:min-w-3\/6:last-child{
    min-width: 50%;
  }

  .s1920\:last\:min-w-4\/6:last-child{
    min-width: 66.666667%;
  }

  .s1920\:last\:min-w-5\/6:last-child{
    min-width: 83.333333%;
  }

  .s1920\:last\:min-w-1\/12:last-child{
    min-width: 8.333333%;
  }

  .s1920\:last\:min-w-2\/12:last-child{
    min-width: 16.666667%;
  }

  .s1920\:last\:min-w-3\/12:last-child{
    min-width: 25%;
  }

  .s1920\:last\:min-w-4\/12:last-child{
    min-width: 33.333333%;
  }

  .s1920\:last\:min-w-5\/12:last-child{
    min-width: 41.666667%;
  }

  .s1920\:last\:min-w-6\/12:last-child{
    min-width: 50%;
  }

  .s1920\:last\:min-w-7\/12:last-child{
    min-width: 58.333333%;
  }

  .s1920\:last\:min-w-8\/12:last-child{
    min-width: 66.666667%;
  }

  .s1920\:last\:min-w-9\/12:last-child{
    min-width: 75%;
  }

  .s1920\:last\:min-w-10\/12:last-child{
    min-width: 83.333333%;
  }

  .s1920\:last\:min-w-11\/12:last-child{
    min-width: 91.666667%;
  }

  .s1920\:last\:min-w-screen:last-child{
    min-width: 100vw;
  }

  .s1920\:last\:min-w-widePage:last-child{
    min-width: 120rem;
  }

  .s1920\:last\:min-w-page:last-child{
    min-width: 80rem;
  }

  .s1920\:last\:min-w-container:last-child{
    min-width: 77.25rem;
  }

  .s1920\:last\:min-w-tooltip:last-child{
    min-width: 25rem;
  }

  .s1920\:last\:min-w-smallTooltip:last-child{
    min-width: 15rem;
  }

  .s1920\:last\:min-w-xsmallTooltip:last-child{
    min-width: 6.0rem;
  }

  .s1920\:last\:min-w-sidebar:last-child{
    min-width: 27rem;
  }

  .s1920\:last\:min-w-doubleSidebar:last-child{
    min-width: 360px;
  }

  .s1920\:last\:min-w-practiceSidebar:last-child{
    min-width: 22.5rem;
  }

  .s1920\:last\:min-w-3\/8:last-child{
    min-width: 37.5%;
  }

  .s1920\:last\:min-w-1\/10:last-child{
    min-width: 10%;
  }

  .s1920\:last\:min-w-2\/10:last-child{
    min-width: 20%;
  }

  .s1920\:last\:min-w-3\/10:last-child{
    min-width: 30%;
  }

  .s1920\:last\:min-w-4\/10:last-child{
    min-width: 40%;
  }

  .s1920\:last\:min-w-5\/10:last-child{
    min-width: 50%;
  }

  .s1920\:last\:min-w-6\/10:last-child{
    min-width: 60%;
  }

  .s1920\:last\:min-w-7\/10:last-child{
    min-width: 70%;
  }

  .s1920\:last\:min-w-8\/10:last-child{
    min-width: 80%;
  }

  .s1920\:last\:min-w-9\/10:last-child{
    min-width: 90%;
  }

  .s1920\:last\:min-w-input:last-child{
    min-width: 15.75rem;
  }

  .s1920\:last\:min-w-inherit:last-child{
    min-width: inherit;
  }

  .s1920\:last\:min-w-modalMd:last-child{
    min-width: 37.5rem;
  }

  .s1920\:last\:min-w-modalMdXl:last-child{
    min-width: 52.5rem;
  }

  .s1920\:last\:min-w-modalLg:last-child{
    min-width: 77.25rem;
  }

  .s1920\:last\:min-w-doubleSidebarContent:last-child{
    min-width: 720px;
  }

  .s1920\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1920\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1920\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1920\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1920\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1920\:hover\:object-contain:hover{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1920\:hover\:object-cover:hover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1920\:hover\:object-fill:hover{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1920\:hover\:object-none:hover{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1920\:hover\:object-scale-down:hover{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1920\:focus\:object-contain:focus{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1920\:focus\:object-cover:focus{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1920\:focus\:object-fill:focus{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1920\:focus\:object-none:focus{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1920\:focus\:object-scale-down:focus{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1920\:active\:object-contain:active{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1920\:active\:object-cover:active{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1920\:active\:object-fill:active{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1920\:active\:object-none:active{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1920\:active\:object-scale-down:active{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1920\:first\:object-contain:first-child{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1920\:first\:object-cover:first-child{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1920\:first\:object-fill:first-child{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1920\:first\:object-none:first-child{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1920\:first\:object-scale-down:first-child{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1920\:last\:object-contain:last-child{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .s1920\:last\:object-cover:last-child{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .s1920\:last\:object-fill:last-child{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .s1920\:last\:object-none:last-child{
    -o-object-fit: none;
       object-fit: none;
  }

  .s1920\:last\:object-scale-down:last-child{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .s1920\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1920\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .s1920\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .s1920\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1920\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1920\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .s1920\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1920\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1920\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .s1920\:hover\:object-bottom:hover{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1920\:hover\:object-center:hover{
    -o-object-position: center;
       object-position: center;
  }

  .s1920\:hover\:object-left:hover{
    -o-object-position: left;
       object-position: left;
  }

  .s1920\:hover\:object-left-bottom:hover{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1920\:hover\:object-left-top:hover{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1920\:hover\:object-right:hover{
    -o-object-position: right;
       object-position: right;
  }

  .s1920\:hover\:object-right-bottom:hover{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1920\:hover\:object-right-top:hover{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1920\:hover\:object-top:hover{
    -o-object-position: top;
       object-position: top;
  }

  .s1920\:focus\:object-bottom:focus{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1920\:focus\:object-center:focus{
    -o-object-position: center;
       object-position: center;
  }

  .s1920\:focus\:object-left:focus{
    -o-object-position: left;
       object-position: left;
  }

  .s1920\:focus\:object-left-bottom:focus{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1920\:focus\:object-left-top:focus{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1920\:focus\:object-right:focus{
    -o-object-position: right;
       object-position: right;
  }

  .s1920\:focus\:object-right-bottom:focus{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1920\:focus\:object-right-top:focus{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1920\:focus\:object-top:focus{
    -o-object-position: top;
       object-position: top;
  }

  .s1920\:active\:object-bottom:active{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1920\:active\:object-center:active{
    -o-object-position: center;
       object-position: center;
  }

  .s1920\:active\:object-left:active{
    -o-object-position: left;
       object-position: left;
  }

  .s1920\:active\:object-left-bottom:active{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1920\:active\:object-left-top:active{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1920\:active\:object-right:active{
    -o-object-position: right;
       object-position: right;
  }

  .s1920\:active\:object-right-bottom:active{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1920\:active\:object-right-top:active{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1920\:active\:object-top:active{
    -o-object-position: top;
       object-position: top;
  }

  .s1920\:first\:object-bottom:first-child{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1920\:first\:object-center:first-child{
    -o-object-position: center;
       object-position: center;
  }

  .s1920\:first\:object-left:first-child{
    -o-object-position: left;
       object-position: left;
  }

  .s1920\:first\:object-left-bottom:first-child{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1920\:first\:object-left-top:first-child{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1920\:first\:object-right:first-child{
    -o-object-position: right;
       object-position: right;
  }

  .s1920\:first\:object-right-bottom:first-child{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1920\:first\:object-right-top:first-child{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1920\:first\:object-top:first-child{
    -o-object-position: top;
       object-position: top;
  }

  .s1920\:last\:object-bottom:last-child{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .s1920\:last\:object-center:last-child{
    -o-object-position: center;
       object-position: center;
  }

  .s1920\:last\:object-left:last-child{
    -o-object-position: left;
       object-position: left;
  }

  .s1920\:last\:object-left-bottom:last-child{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .s1920\:last\:object-left-top:last-child{
    -o-object-position: left top;
       object-position: left top;
  }

  .s1920\:last\:object-right:last-child{
    -o-object-position: right;
       object-position: right;
  }

  .s1920\:last\:object-right-bottom:last-child{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .s1920\:last\:object-right-top:last-child{
    -o-object-position: right top;
       object-position: right top;
  }

  .s1920\:last\:object-top:last-child{
    -o-object-position: top;
       object-position: top;
  }

  .s1920\:opacity-0{
    opacity: 0;
  }

  .s1920\:opacity-25{
    opacity: 0.25;
  }

  .s1920\:opacity-50{
    opacity: .5;
  }

  .s1920\:opacity-75{
    opacity: 0.75;
  }

  .s1920\:opacity-80{
    opacity: .8;
  }

  .s1920\:opacity-100{
    opacity: 1;
  }

  .s1920\:hover\:opacity-0:hover{
    opacity: 0;
  }

  .s1920\:hover\:opacity-25:hover{
    opacity: 0.25;
  }

  .s1920\:hover\:opacity-50:hover{
    opacity: .5;
  }

  .s1920\:hover\:opacity-75:hover{
    opacity: 0.75;
  }

  .s1920\:hover\:opacity-80:hover{
    opacity: .8;
  }

  .s1920\:hover\:opacity-100:hover{
    opacity: 1;
  }

  .s1920\:focus\:opacity-0:focus{
    opacity: 0;
  }

  .s1920\:focus\:opacity-25:focus{
    opacity: 0.25;
  }

  .s1920\:focus\:opacity-50:focus{
    opacity: .5;
  }

  .s1920\:focus\:opacity-75:focus{
    opacity: 0.75;
  }

  .s1920\:focus\:opacity-80:focus{
    opacity: .8;
  }

  .s1920\:focus\:opacity-100:focus{
    opacity: 1;
  }

  .s1920\:active\:opacity-0:active{
    opacity: 0;
  }

  .s1920\:active\:opacity-25:active{
    opacity: 0.25;
  }

  .s1920\:active\:opacity-50:active{
    opacity: .5;
  }

  .s1920\:active\:opacity-75:active{
    opacity: 0.75;
  }

  .s1920\:active\:opacity-80:active{
    opacity: .8;
  }

  .s1920\:active\:opacity-100:active{
    opacity: 1;
  }

  .s1920\:first\:opacity-0:first-child{
    opacity: 0;
  }

  .s1920\:first\:opacity-25:first-child{
    opacity: 0.25;
  }

  .s1920\:first\:opacity-50:first-child{
    opacity: .5;
  }

  .s1920\:first\:opacity-75:first-child{
    opacity: 0.75;
  }

  .s1920\:first\:opacity-80:first-child{
    opacity: .8;
  }

  .s1920\:first\:opacity-100:first-child{
    opacity: 1;
  }

  .s1920\:last\:opacity-0:last-child{
    opacity: 0;
  }

  .s1920\:last\:opacity-25:last-child{
    opacity: 0.25;
  }

  .s1920\:last\:opacity-50:last-child{
    opacity: .5;
  }

  .s1920\:last\:opacity-75:last-child{
    opacity: 0.75;
  }

  .s1920\:last\:opacity-80:last-child{
    opacity: .8;
  }

  .s1920\:last\:opacity-100:last-child{
    opacity: 1;
  }

  .s1920\:outline-none{
    outline: 0;
  }

  .s1920\:hover\:outline-none:hover{
    outline: 0;
  }

  .s1920\:focus\:outline-none:focus{
    outline: 0;
  }

  .s1920\:active\:outline-none:active{
    outline: 0;
  }

  .s1920\:first\:outline-none:first-child{
    outline: 0;
  }

  .s1920\:last\:outline-none:last-child{
    outline: 0;
  }

  .s1920\:overflow-auto{
    overflow: auto;
  }

  .s1920\:overflow-hidden{
    overflow: hidden;
  }

  .s1920\:overflow-visible{
    overflow: visible;
  }

  .s1920\:overflow-scroll{
    overflow: scroll;
  }

  .s1920\:overflow-x-auto{
    overflow-x: auto;
  }

  .s1920\:overflow-y-auto{
    overflow-y: auto;
  }

  .s1920\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .s1920\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .s1920\:overflow-x-visible{
    overflow-x: visible;
  }

  .s1920\:overflow-y-visible{
    overflow-y: visible;
  }

  .s1920\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .s1920\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .s1920\:scrolling-touch{
    -webkit-overflow-scrolling: touch;
  }

  .s1920\:scrolling-auto{
    -webkit-overflow-scrolling: auto;
  }

  .s1920\:hover\:overflow-auto:hover{
    overflow: auto;
  }

  .s1920\:hover\:overflow-hidden:hover{
    overflow: hidden;
  }

  .s1920\:hover\:overflow-visible:hover{
    overflow: visible;
  }

  .s1920\:hover\:overflow-scroll:hover{
    overflow: scroll;
  }

  .s1920\:hover\:overflow-x-auto:hover{
    overflow-x: auto;
  }

  .s1920\:hover\:overflow-y-auto:hover{
    overflow-y: auto;
  }

  .s1920\:hover\:overflow-x-hidden:hover{
    overflow-x: hidden;
  }

  .s1920\:hover\:overflow-y-hidden:hover{
    overflow-y: hidden;
  }

  .s1920\:hover\:overflow-x-visible:hover{
    overflow-x: visible;
  }

  .s1920\:hover\:overflow-y-visible:hover{
    overflow-y: visible;
  }

  .s1920\:hover\:overflow-x-scroll:hover{
    overflow-x: scroll;
  }

  .s1920\:hover\:overflow-y-scroll:hover{
    overflow-y: scroll;
  }

  .s1920\:hover\:scrolling-touch:hover{
    -webkit-overflow-scrolling: touch;
  }

  .s1920\:hover\:scrolling-auto:hover{
    -webkit-overflow-scrolling: auto;
  }

  .s1920\:focus\:overflow-auto:focus{
    overflow: auto;
  }

  .s1920\:focus\:overflow-hidden:focus{
    overflow: hidden;
  }

  .s1920\:focus\:overflow-visible:focus{
    overflow: visible;
  }

  .s1920\:focus\:overflow-scroll:focus{
    overflow: scroll;
  }

  .s1920\:focus\:overflow-x-auto:focus{
    overflow-x: auto;
  }

  .s1920\:focus\:overflow-y-auto:focus{
    overflow-y: auto;
  }

  .s1920\:focus\:overflow-x-hidden:focus{
    overflow-x: hidden;
  }

  .s1920\:focus\:overflow-y-hidden:focus{
    overflow-y: hidden;
  }

  .s1920\:focus\:overflow-x-visible:focus{
    overflow-x: visible;
  }

  .s1920\:focus\:overflow-y-visible:focus{
    overflow-y: visible;
  }

  .s1920\:focus\:overflow-x-scroll:focus{
    overflow-x: scroll;
  }

  .s1920\:focus\:overflow-y-scroll:focus{
    overflow-y: scroll;
  }

  .s1920\:focus\:scrolling-touch:focus{
    -webkit-overflow-scrolling: touch;
  }

  .s1920\:focus\:scrolling-auto:focus{
    -webkit-overflow-scrolling: auto;
  }

  .s1920\:active\:overflow-auto:active{
    overflow: auto;
  }

  .s1920\:active\:overflow-hidden:active{
    overflow: hidden;
  }

  .s1920\:active\:overflow-visible:active{
    overflow: visible;
  }

  .s1920\:active\:overflow-scroll:active{
    overflow: scroll;
  }

  .s1920\:active\:overflow-x-auto:active{
    overflow-x: auto;
  }

  .s1920\:active\:overflow-y-auto:active{
    overflow-y: auto;
  }

  .s1920\:active\:overflow-x-hidden:active{
    overflow-x: hidden;
  }

  .s1920\:active\:overflow-y-hidden:active{
    overflow-y: hidden;
  }

  .s1920\:active\:overflow-x-visible:active{
    overflow-x: visible;
  }

  .s1920\:active\:overflow-y-visible:active{
    overflow-y: visible;
  }

  .s1920\:active\:overflow-x-scroll:active{
    overflow-x: scroll;
  }

  .s1920\:active\:overflow-y-scroll:active{
    overflow-y: scroll;
  }

  .s1920\:active\:scrolling-touch:active{
    -webkit-overflow-scrolling: touch;
  }

  .s1920\:active\:scrolling-auto:active{
    -webkit-overflow-scrolling: auto;
  }

  .s1920\:first\:overflow-auto:first-child{
    overflow: auto;
  }

  .s1920\:first\:overflow-hidden:first-child{
    overflow: hidden;
  }

  .s1920\:first\:overflow-visible:first-child{
    overflow: visible;
  }

  .s1920\:first\:overflow-scroll:first-child{
    overflow: scroll;
  }

  .s1920\:first\:overflow-x-auto:first-child{
    overflow-x: auto;
  }

  .s1920\:first\:overflow-y-auto:first-child{
    overflow-y: auto;
  }

  .s1920\:first\:overflow-x-hidden:first-child{
    overflow-x: hidden;
  }

  .s1920\:first\:overflow-y-hidden:first-child{
    overflow-y: hidden;
  }

  .s1920\:first\:overflow-x-visible:first-child{
    overflow-x: visible;
  }

  .s1920\:first\:overflow-y-visible:first-child{
    overflow-y: visible;
  }

  .s1920\:first\:overflow-x-scroll:first-child{
    overflow-x: scroll;
  }

  .s1920\:first\:overflow-y-scroll:first-child{
    overflow-y: scroll;
  }

  .s1920\:first\:scrolling-touch:first-child{
    -webkit-overflow-scrolling: touch;
  }

  .s1920\:first\:scrolling-auto:first-child{
    -webkit-overflow-scrolling: auto;
  }

  .s1920\:last\:overflow-auto:last-child{
    overflow: auto;
  }

  .s1920\:last\:overflow-hidden:last-child{
    overflow: hidden;
  }

  .s1920\:last\:overflow-visible:last-child{
    overflow: visible;
  }

  .s1920\:last\:overflow-scroll:last-child{
    overflow: scroll;
  }

  .s1920\:last\:overflow-x-auto:last-child{
    overflow-x: auto;
  }

  .s1920\:last\:overflow-y-auto:last-child{
    overflow-y: auto;
  }

  .s1920\:last\:overflow-x-hidden:last-child{
    overflow-x: hidden;
  }

  .s1920\:last\:overflow-y-hidden:last-child{
    overflow-y: hidden;
  }

  .s1920\:last\:overflow-x-visible:last-child{
    overflow-x: visible;
  }

  .s1920\:last\:overflow-y-visible:last-child{
    overflow-y: visible;
  }

  .s1920\:last\:overflow-x-scroll:last-child{
    overflow-x: scroll;
  }

  .s1920\:last\:overflow-y-scroll:last-child{
    overflow-y: scroll;
  }

  .s1920\:last\:scrolling-touch:last-child{
    -webkit-overflow-scrolling: touch;
  }

  .s1920\:last\:scrolling-auto:last-child{
    -webkit-overflow-scrolling: auto;
  }

  .s1920\:overscroll-auto{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1920\:overscroll-contain{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1920\:overscroll-none{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1920\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .s1920\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .s1920\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .s1920\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .s1920\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .s1920\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .s1920\:hover\:overscroll-auto:hover{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1920\:hover\:overscroll-contain:hover{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1920\:hover\:overscroll-none:hover{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1920\:hover\:overscroll-y-auto:hover{
    overscroll-behavior-y: auto;
  }

  .s1920\:hover\:overscroll-y-contain:hover{
    overscroll-behavior-y: contain;
  }

  .s1920\:hover\:overscroll-y-none:hover{
    overscroll-behavior-y: none;
  }

  .s1920\:hover\:overscroll-x-auto:hover{
    overscroll-behavior-x: auto;
  }

  .s1920\:hover\:overscroll-x-contain:hover{
    overscroll-behavior-x: contain;
  }

  .s1920\:hover\:overscroll-x-none:hover{
    overscroll-behavior-x: none;
  }

  .s1920\:focus\:overscroll-auto:focus{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1920\:focus\:overscroll-contain:focus{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1920\:focus\:overscroll-none:focus{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1920\:focus\:overscroll-y-auto:focus{
    overscroll-behavior-y: auto;
  }

  .s1920\:focus\:overscroll-y-contain:focus{
    overscroll-behavior-y: contain;
  }

  .s1920\:focus\:overscroll-y-none:focus{
    overscroll-behavior-y: none;
  }

  .s1920\:focus\:overscroll-x-auto:focus{
    overscroll-behavior-x: auto;
  }

  .s1920\:focus\:overscroll-x-contain:focus{
    overscroll-behavior-x: contain;
  }

  .s1920\:focus\:overscroll-x-none:focus{
    overscroll-behavior-x: none;
  }

  .s1920\:active\:overscroll-auto:active{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1920\:active\:overscroll-contain:active{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1920\:active\:overscroll-none:active{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1920\:active\:overscroll-y-auto:active{
    overscroll-behavior-y: auto;
  }

  .s1920\:active\:overscroll-y-contain:active{
    overscroll-behavior-y: contain;
  }

  .s1920\:active\:overscroll-y-none:active{
    overscroll-behavior-y: none;
  }

  .s1920\:active\:overscroll-x-auto:active{
    overscroll-behavior-x: auto;
  }

  .s1920\:active\:overscroll-x-contain:active{
    overscroll-behavior-x: contain;
  }

  .s1920\:active\:overscroll-x-none:active{
    overscroll-behavior-x: none;
  }

  .s1920\:first\:overscroll-auto:first-child{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1920\:first\:overscroll-contain:first-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1920\:first\:overscroll-none:first-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1920\:first\:overscroll-y-auto:first-child{
    overscroll-behavior-y: auto;
  }

  .s1920\:first\:overscroll-y-contain:first-child{
    overscroll-behavior-y: contain;
  }

  .s1920\:first\:overscroll-y-none:first-child{
    overscroll-behavior-y: none;
  }

  .s1920\:first\:overscroll-x-auto:first-child{
    overscroll-behavior-x: auto;
  }

  .s1920\:first\:overscroll-x-contain:first-child{
    overscroll-behavior-x: contain;
  }

  .s1920\:first\:overscroll-x-none:first-child{
    overscroll-behavior-x: none;
  }

  .s1920\:last\:overscroll-auto:last-child{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .s1920\:last\:overscroll-contain:last-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .s1920\:last\:overscroll-none:last-child{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .s1920\:last\:overscroll-y-auto:last-child{
    overscroll-behavior-y: auto;
  }

  .s1920\:last\:overscroll-y-contain:last-child{
    overscroll-behavior-y: contain;
  }

  .s1920\:last\:overscroll-y-none:last-child{
    overscroll-behavior-y: none;
  }

  .s1920\:last\:overscroll-x-auto:last-child{
    overscroll-behavior-x: auto;
  }

  .s1920\:last\:overscroll-x-contain:last-child{
    overscroll-behavior-x: contain;
  }

  .s1920\:last\:overscroll-x-none:last-child{
    overscroll-behavior-x: none;
  }

  .s1920\:p-0{
    padding: 0;
  }

  .s1920\:p-1{
    padding: 0.25rem;
  }

  .s1920\:p-2{
    padding: 0.5rem;
  }

  .s1920\:p-3{
    padding: 0.75rem;
  }

  .s1920\:p-4{
    padding: 1rem;
  }

  .s1920\:p-5{
    padding: 1.25rem;
  }

  .s1920\:p-6{
    padding: 1.5rem;
  }

  .s1920\:p-8{
    padding: 2rem;
  }

  .s1920\:p-9{
    padding: 2.25rem;
  }

  .s1920\:p-10{
    padding: 2.5rem;
  }

  .s1920\:p-11{
    padding: 3rem;
  }

  .s1920\:p-12{
    padding: 3rem;
  }

  .s1920\:p-14{
    padding: 3.5rem;
  }

  .s1920\:p-16{
    padding: 4rem;
  }

  .s1920\:p-20{
    padding: 5rem;
  }

  .s1920\:p-24{
    padding: 6rem;
  }

  .s1920\:p-32{
    padding: 8rem;
  }

  .s1920\:p-40{
    padding: 10rem;
  }

  .s1920\:p-48{
    padding: 12rem;
  }

  .s1920\:p-56{
    padding: 14rem;
  }

  .s1920\:p-64{
    padding: 16rem;
  }

  .s1920\:p-px{
    padding: 1px;
  }

  .s1920\:p-0\.25{
    padding: 0.0625rem;
  }

  .s1920\:p-1\.5{
    padding: 0.375rem;
  }

  .s1920\:p-2\.5{
    padding: 0.625rem;
  }

  .s1920\:p-3\.25{
    padding: 0.8125rem;
  }

  .s1920\:p-3\.5{
    padding: 0.875rem;
  }

  .s1920\:p-5\.25{
    padding: 1.3125rem;
  }

  .s1920\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1920\:px-0{
    padding-left: 0;
    padding-right: 0;
  }

  .s1920\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1920\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1920\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1920\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1920\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1920\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1920\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1920\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1920\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1920\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1920\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1920\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1920\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1920\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1920\:py-9{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1920\:px-9{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1920\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1920\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1920\:py-11{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:px-11{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1920\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1920\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1920\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1920\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1920\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1920\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1920\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1920\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1920\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1920\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1920\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1920\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1920\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1920\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1920\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1920\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1920\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1920\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1920\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1920\:py-0\.25{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1920\:px-0\.25{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1920\:py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1920\:px-1\.5{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1920\:py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1920\:px-2\.5{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1920\:py-3\.25{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1920\:px-3\.25{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1920\:py-3\.5{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1920\:px-3\.5{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1920\:py-5\.25{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1920\:px-5\.25{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1920\:pt-0{
    padding-top: 0;
  }

  .s1920\:pr-0{
    padding-right: 0;
  }

  .s1920\:pb-0{
    padding-bottom: 0;
  }

  .s1920\:pl-0{
    padding-left: 0;
  }

  .s1920\:pt-1{
    padding-top: 0.25rem;
  }

  .s1920\:pr-1{
    padding-right: 0.25rem;
  }

  .s1920\:pb-1{
    padding-bottom: 0.25rem;
  }

  .s1920\:pl-1{
    padding-left: 0.25rem;
  }

  .s1920\:pt-2{
    padding-top: 0.5rem;
  }

  .s1920\:pr-2{
    padding-right: 0.5rem;
  }

  .s1920\:pb-2{
    padding-bottom: 0.5rem;
  }

  .s1920\:pl-2{
    padding-left: 0.5rem;
  }

  .s1920\:pt-3{
    padding-top: 0.75rem;
  }

  .s1920\:pr-3{
    padding-right: 0.75rem;
  }

  .s1920\:pb-3{
    padding-bottom: 0.75rem;
  }

  .s1920\:pl-3{
    padding-left: 0.75rem;
  }

  .s1920\:pt-4{
    padding-top: 1rem;
  }

  .s1920\:pr-4{
    padding-right: 1rem;
  }

  .s1920\:pb-4{
    padding-bottom: 1rem;
  }

  .s1920\:pl-4{
    padding-left: 1rem;
  }

  .s1920\:pt-5{
    padding-top: 1.25rem;
  }

  .s1920\:pr-5{
    padding-right: 1.25rem;
  }

  .s1920\:pb-5{
    padding-bottom: 1.25rem;
  }

  .s1920\:pl-5{
    padding-left: 1.25rem;
  }

  .s1920\:pt-6{
    padding-top: 1.5rem;
  }

  .s1920\:pr-6{
    padding-right: 1.5rem;
  }

  .s1920\:pb-6{
    padding-bottom: 1.5rem;
  }

  .s1920\:pl-6{
    padding-left: 1.5rem;
  }

  .s1920\:pt-8{
    padding-top: 2rem;
  }

  .s1920\:pr-8{
    padding-right: 2rem;
  }

  .s1920\:pb-8{
    padding-bottom: 2rem;
  }

  .s1920\:pl-8{
    padding-left: 2rem;
  }

  .s1920\:pt-9{
    padding-top: 2.25rem;
  }

  .s1920\:pr-9{
    padding-right: 2.25rem;
  }

  .s1920\:pb-9{
    padding-bottom: 2.25rem;
  }

  .s1920\:pl-9{
    padding-left: 2.25rem;
  }

  .s1920\:pt-10{
    padding-top: 2.5rem;
  }

  .s1920\:pr-10{
    padding-right: 2.5rem;
  }

  .s1920\:pb-10{
    padding-bottom: 2.5rem;
  }

  .s1920\:pl-10{
    padding-left: 2.5rem;
  }

  .s1920\:pt-11{
    padding-top: 3rem;
  }

  .s1920\:pr-11{
    padding-right: 3rem;
  }

  .s1920\:pb-11{
    padding-bottom: 3rem;
  }

  .s1920\:pl-11{
    padding-left: 3rem;
  }

  .s1920\:pt-12{
    padding-top: 3rem;
  }

  .s1920\:pr-12{
    padding-right: 3rem;
  }

  .s1920\:pb-12{
    padding-bottom: 3rem;
  }

  .s1920\:pl-12{
    padding-left: 3rem;
  }

  .s1920\:pt-14{
    padding-top: 3.5rem;
  }

  .s1920\:pr-14{
    padding-right: 3.5rem;
  }

  .s1920\:pb-14{
    padding-bottom: 3.5rem;
  }

  .s1920\:pl-14{
    padding-left: 3.5rem;
  }

  .s1920\:pt-16{
    padding-top: 4rem;
  }

  .s1920\:pr-16{
    padding-right: 4rem;
  }

  .s1920\:pb-16{
    padding-bottom: 4rem;
  }

  .s1920\:pl-16{
    padding-left: 4rem;
  }

  .s1920\:pt-20{
    padding-top: 5rem;
  }

  .s1920\:pr-20{
    padding-right: 5rem;
  }

  .s1920\:pb-20{
    padding-bottom: 5rem;
  }

  .s1920\:pl-20{
    padding-left: 5rem;
  }

  .s1920\:pt-24{
    padding-top: 6rem;
  }

  .s1920\:pr-24{
    padding-right: 6rem;
  }

  .s1920\:pb-24{
    padding-bottom: 6rem;
  }

  .s1920\:pl-24{
    padding-left: 6rem;
  }

  .s1920\:pt-32{
    padding-top: 8rem;
  }

  .s1920\:pr-32{
    padding-right: 8rem;
  }

  .s1920\:pb-32{
    padding-bottom: 8rem;
  }

  .s1920\:pl-32{
    padding-left: 8rem;
  }

  .s1920\:pt-40{
    padding-top: 10rem;
  }

  .s1920\:pr-40{
    padding-right: 10rem;
  }

  .s1920\:pb-40{
    padding-bottom: 10rem;
  }

  .s1920\:pl-40{
    padding-left: 10rem;
  }

  .s1920\:pt-48{
    padding-top: 12rem;
  }

  .s1920\:pr-48{
    padding-right: 12rem;
  }

  .s1920\:pb-48{
    padding-bottom: 12rem;
  }

  .s1920\:pl-48{
    padding-left: 12rem;
  }

  .s1920\:pt-56{
    padding-top: 14rem;
  }

  .s1920\:pr-56{
    padding-right: 14rem;
  }

  .s1920\:pb-56{
    padding-bottom: 14rem;
  }

  .s1920\:pl-56{
    padding-left: 14rem;
  }

  .s1920\:pt-64{
    padding-top: 16rem;
  }

  .s1920\:pr-64{
    padding-right: 16rem;
  }

  .s1920\:pb-64{
    padding-bottom: 16rem;
  }

  .s1920\:pl-64{
    padding-left: 16rem;
  }

  .s1920\:pt-px{
    padding-top: 1px;
  }

  .s1920\:pr-px{
    padding-right: 1px;
  }

  .s1920\:pb-px{
    padding-bottom: 1px;
  }

  .s1920\:pl-px{
    padding-left: 1px;
  }

  .s1920\:pt-0\.25{
    padding-top: 0.0625rem;
  }

  .s1920\:pr-0\.25{
    padding-right: 0.0625rem;
  }

  .s1920\:pb-0\.25{
    padding-bottom: 0.0625rem;
  }

  .s1920\:pl-0\.25{
    padding-left: 0.0625rem;
  }

  .s1920\:pt-1\.5{
    padding-top: 0.375rem;
  }

  .s1920\:pr-1\.5{
    padding-right: 0.375rem;
  }

  .s1920\:pb-1\.5{
    padding-bottom: 0.375rem;
  }

  .s1920\:pl-1\.5{
    padding-left: 0.375rem;
  }

  .s1920\:pt-2\.5{
    padding-top: 0.625rem;
  }

  .s1920\:pr-2\.5{
    padding-right: 0.625rem;
  }

  .s1920\:pb-2\.5{
    padding-bottom: 0.625rem;
  }

  .s1920\:pl-2\.5{
    padding-left: 0.625rem;
  }

  .s1920\:pt-3\.25{
    padding-top: 0.8125rem;
  }

  .s1920\:pr-3\.25{
    padding-right: 0.8125rem;
  }

  .s1920\:pb-3\.25{
    padding-bottom: 0.8125rem;
  }

  .s1920\:pl-3\.25{
    padding-left: 0.8125rem;
  }

  .s1920\:pt-3\.5{
    padding-top: 0.875rem;
  }

  .s1920\:pr-3\.5{
    padding-right: 0.875rem;
  }

  .s1920\:pb-3\.5{
    padding-bottom: 0.875rem;
  }

  .s1920\:pl-3\.5{
    padding-left: 0.875rem;
  }

  .s1920\:pt-5\.25{
    padding-top: 1.3125rem;
  }

  .s1920\:pr-5\.25{
    padding-right: 1.3125rem;
  }

  .s1920\:pb-5\.25{
    padding-bottom: 1.3125rem;
  }

  .s1920\:pl-5\.25{
    padding-left: 1.3125rem;
  }

  .s1920\:hover\:p-0:hover{
    padding: 0;
  }

  .s1920\:hover\:p-1:hover{
    padding: 0.25rem;
  }

  .s1920\:hover\:p-2:hover{
    padding: 0.5rem;
  }

  .s1920\:hover\:p-3:hover{
    padding: 0.75rem;
  }

  .s1920\:hover\:p-4:hover{
    padding: 1rem;
  }

  .s1920\:hover\:p-5:hover{
    padding: 1.25rem;
  }

  .s1920\:hover\:p-6:hover{
    padding: 1.5rem;
  }

  .s1920\:hover\:p-8:hover{
    padding: 2rem;
  }

  .s1920\:hover\:p-9:hover{
    padding: 2.25rem;
  }

  .s1920\:hover\:p-10:hover{
    padding: 2.5rem;
  }

  .s1920\:hover\:p-11:hover{
    padding: 3rem;
  }

  .s1920\:hover\:p-12:hover{
    padding: 3rem;
  }

  .s1920\:hover\:p-14:hover{
    padding: 3.5rem;
  }

  .s1920\:hover\:p-16:hover{
    padding: 4rem;
  }

  .s1920\:hover\:p-20:hover{
    padding: 5rem;
  }

  .s1920\:hover\:p-24:hover{
    padding: 6rem;
  }

  .s1920\:hover\:p-32:hover{
    padding: 8rem;
  }

  .s1920\:hover\:p-40:hover{
    padding: 10rem;
  }

  .s1920\:hover\:p-48:hover{
    padding: 12rem;
  }

  .s1920\:hover\:p-56:hover{
    padding: 14rem;
  }

  .s1920\:hover\:p-64:hover{
    padding: 16rem;
  }

  .s1920\:hover\:p-px:hover{
    padding: 1px;
  }

  .s1920\:hover\:p-0\.25:hover{
    padding: 0.0625rem;
  }

  .s1920\:hover\:p-1\.5:hover{
    padding: 0.375rem;
  }

  .s1920\:hover\:p-2\.5:hover{
    padding: 0.625rem;
  }

  .s1920\:hover\:p-3\.25:hover{
    padding: 0.8125rem;
  }

  .s1920\:hover\:p-3\.5:hover{
    padding: 0.875rem;
  }

  .s1920\:hover\:p-5\.25:hover{
    padding: 1.3125rem;
  }

  .s1920\:hover\:py-0:hover{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1920\:hover\:px-0:hover{
    padding-left: 0;
    padding-right: 0;
  }

  .s1920\:hover\:py-1:hover{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1920\:hover\:px-1:hover{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1920\:hover\:py-2:hover{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1920\:hover\:px-2:hover{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1920\:hover\:py-3:hover{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1920\:hover\:px-3:hover{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1920\:hover\:py-4:hover{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1920\:hover\:px-4:hover{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1920\:hover\:py-5:hover{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1920\:hover\:px-5:hover{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1920\:hover\:py-6:hover{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1920\:hover\:px-6:hover{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1920\:hover\:py-8:hover{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1920\:hover\:px-8:hover{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1920\:hover\:py-9:hover{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1920\:hover\:px-9:hover{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1920\:hover\:py-10:hover{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1920\:hover\:px-10:hover{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1920\:hover\:py-11:hover{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:hover\:px-11:hover{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:hover\:py-12:hover{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:hover\:px-12:hover{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:hover\:py-14:hover{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1920\:hover\:px-14:hover{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1920\:hover\:py-16:hover{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1920\:hover\:px-16:hover{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1920\:hover\:py-20:hover{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1920\:hover\:px-20:hover{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1920\:hover\:py-24:hover{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1920\:hover\:px-24:hover{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1920\:hover\:py-32:hover{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1920\:hover\:px-32:hover{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1920\:hover\:py-40:hover{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1920\:hover\:px-40:hover{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1920\:hover\:py-48:hover{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1920\:hover\:px-48:hover{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1920\:hover\:py-56:hover{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1920\:hover\:px-56:hover{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1920\:hover\:py-64:hover{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1920\:hover\:px-64:hover{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1920\:hover\:py-px:hover{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1920\:hover\:px-px:hover{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1920\:hover\:py-0\.25:hover{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1920\:hover\:px-0\.25:hover{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1920\:hover\:py-1\.5:hover{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1920\:hover\:px-1\.5:hover{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1920\:hover\:py-2\.5:hover{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1920\:hover\:px-2\.5:hover{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1920\:hover\:py-3\.25:hover{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1920\:hover\:px-3\.25:hover{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1920\:hover\:py-3\.5:hover{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1920\:hover\:px-3\.5:hover{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1920\:hover\:py-5\.25:hover{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1920\:hover\:px-5\.25:hover{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1920\:hover\:pt-0:hover{
    padding-top: 0;
  }

  .s1920\:hover\:pr-0:hover{
    padding-right: 0;
  }

  .s1920\:hover\:pb-0:hover{
    padding-bottom: 0;
  }

  .s1920\:hover\:pl-0:hover{
    padding-left: 0;
  }

  .s1920\:hover\:pt-1:hover{
    padding-top: 0.25rem;
  }

  .s1920\:hover\:pr-1:hover{
    padding-right: 0.25rem;
  }

  .s1920\:hover\:pb-1:hover{
    padding-bottom: 0.25rem;
  }

  .s1920\:hover\:pl-1:hover{
    padding-left: 0.25rem;
  }

  .s1920\:hover\:pt-2:hover{
    padding-top: 0.5rem;
  }

  .s1920\:hover\:pr-2:hover{
    padding-right: 0.5rem;
  }

  .s1920\:hover\:pb-2:hover{
    padding-bottom: 0.5rem;
  }

  .s1920\:hover\:pl-2:hover{
    padding-left: 0.5rem;
  }

  .s1920\:hover\:pt-3:hover{
    padding-top: 0.75rem;
  }

  .s1920\:hover\:pr-3:hover{
    padding-right: 0.75rem;
  }

  .s1920\:hover\:pb-3:hover{
    padding-bottom: 0.75rem;
  }

  .s1920\:hover\:pl-3:hover{
    padding-left: 0.75rem;
  }

  .s1920\:hover\:pt-4:hover{
    padding-top: 1rem;
  }

  .s1920\:hover\:pr-4:hover{
    padding-right: 1rem;
  }

  .s1920\:hover\:pb-4:hover{
    padding-bottom: 1rem;
  }

  .s1920\:hover\:pl-4:hover{
    padding-left: 1rem;
  }

  .s1920\:hover\:pt-5:hover{
    padding-top: 1.25rem;
  }

  .s1920\:hover\:pr-5:hover{
    padding-right: 1.25rem;
  }

  .s1920\:hover\:pb-5:hover{
    padding-bottom: 1.25rem;
  }

  .s1920\:hover\:pl-5:hover{
    padding-left: 1.25rem;
  }

  .s1920\:hover\:pt-6:hover{
    padding-top: 1.5rem;
  }

  .s1920\:hover\:pr-6:hover{
    padding-right: 1.5rem;
  }

  .s1920\:hover\:pb-6:hover{
    padding-bottom: 1.5rem;
  }

  .s1920\:hover\:pl-6:hover{
    padding-left: 1.5rem;
  }

  .s1920\:hover\:pt-8:hover{
    padding-top: 2rem;
  }

  .s1920\:hover\:pr-8:hover{
    padding-right: 2rem;
  }

  .s1920\:hover\:pb-8:hover{
    padding-bottom: 2rem;
  }

  .s1920\:hover\:pl-8:hover{
    padding-left: 2rem;
  }

  .s1920\:hover\:pt-9:hover{
    padding-top: 2.25rem;
  }

  .s1920\:hover\:pr-9:hover{
    padding-right: 2.25rem;
  }

  .s1920\:hover\:pb-9:hover{
    padding-bottom: 2.25rem;
  }

  .s1920\:hover\:pl-9:hover{
    padding-left: 2.25rem;
  }

  .s1920\:hover\:pt-10:hover{
    padding-top: 2.5rem;
  }

  .s1920\:hover\:pr-10:hover{
    padding-right: 2.5rem;
  }

  .s1920\:hover\:pb-10:hover{
    padding-bottom: 2.5rem;
  }

  .s1920\:hover\:pl-10:hover{
    padding-left: 2.5rem;
  }

  .s1920\:hover\:pt-11:hover{
    padding-top: 3rem;
  }

  .s1920\:hover\:pr-11:hover{
    padding-right: 3rem;
  }

  .s1920\:hover\:pb-11:hover{
    padding-bottom: 3rem;
  }

  .s1920\:hover\:pl-11:hover{
    padding-left: 3rem;
  }

  .s1920\:hover\:pt-12:hover{
    padding-top: 3rem;
  }

  .s1920\:hover\:pr-12:hover{
    padding-right: 3rem;
  }

  .s1920\:hover\:pb-12:hover{
    padding-bottom: 3rem;
  }

  .s1920\:hover\:pl-12:hover{
    padding-left: 3rem;
  }

  .s1920\:hover\:pt-14:hover{
    padding-top: 3.5rem;
  }

  .s1920\:hover\:pr-14:hover{
    padding-right: 3.5rem;
  }

  .s1920\:hover\:pb-14:hover{
    padding-bottom: 3.5rem;
  }

  .s1920\:hover\:pl-14:hover{
    padding-left: 3.5rem;
  }

  .s1920\:hover\:pt-16:hover{
    padding-top: 4rem;
  }

  .s1920\:hover\:pr-16:hover{
    padding-right: 4rem;
  }

  .s1920\:hover\:pb-16:hover{
    padding-bottom: 4rem;
  }

  .s1920\:hover\:pl-16:hover{
    padding-left: 4rem;
  }

  .s1920\:hover\:pt-20:hover{
    padding-top: 5rem;
  }

  .s1920\:hover\:pr-20:hover{
    padding-right: 5rem;
  }

  .s1920\:hover\:pb-20:hover{
    padding-bottom: 5rem;
  }

  .s1920\:hover\:pl-20:hover{
    padding-left: 5rem;
  }

  .s1920\:hover\:pt-24:hover{
    padding-top: 6rem;
  }

  .s1920\:hover\:pr-24:hover{
    padding-right: 6rem;
  }

  .s1920\:hover\:pb-24:hover{
    padding-bottom: 6rem;
  }

  .s1920\:hover\:pl-24:hover{
    padding-left: 6rem;
  }

  .s1920\:hover\:pt-32:hover{
    padding-top: 8rem;
  }

  .s1920\:hover\:pr-32:hover{
    padding-right: 8rem;
  }

  .s1920\:hover\:pb-32:hover{
    padding-bottom: 8rem;
  }

  .s1920\:hover\:pl-32:hover{
    padding-left: 8rem;
  }

  .s1920\:hover\:pt-40:hover{
    padding-top: 10rem;
  }

  .s1920\:hover\:pr-40:hover{
    padding-right: 10rem;
  }

  .s1920\:hover\:pb-40:hover{
    padding-bottom: 10rem;
  }

  .s1920\:hover\:pl-40:hover{
    padding-left: 10rem;
  }

  .s1920\:hover\:pt-48:hover{
    padding-top: 12rem;
  }

  .s1920\:hover\:pr-48:hover{
    padding-right: 12rem;
  }

  .s1920\:hover\:pb-48:hover{
    padding-bottom: 12rem;
  }

  .s1920\:hover\:pl-48:hover{
    padding-left: 12rem;
  }

  .s1920\:hover\:pt-56:hover{
    padding-top: 14rem;
  }

  .s1920\:hover\:pr-56:hover{
    padding-right: 14rem;
  }

  .s1920\:hover\:pb-56:hover{
    padding-bottom: 14rem;
  }

  .s1920\:hover\:pl-56:hover{
    padding-left: 14rem;
  }

  .s1920\:hover\:pt-64:hover{
    padding-top: 16rem;
  }

  .s1920\:hover\:pr-64:hover{
    padding-right: 16rem;
  }

  .s1920\:hover\:pb-64:hover{
    padding-bottom: 16rem;
  }

  .s1920\:hover\:pl-64:hover{
    padding-left: 16rem;
  }

  .s1920\:hover\:pt-px:hover{
    padding-top: 1px;
  }

  .s1920\:hover\:pr-px:hover{
    padding-right: 1px;
  }

  .s1920\:hover\:pb-px:hover{
    padding-bottom: 1px;
  }

  .s1920\:hover\:pl-px:hover{
    padding-left: 1px;
  }

  .s1920\:hover\:pt-0\.25:hover{
    padding-top: 0.0625rem;
  }

  .s1920\:hover\:pr-0\.25:hover{
    padding-right: 0.0625rem;
  }

  .s1920\:hover\:pb-0\.25:hover{
    padding-bottom: 0.0625rem;
  }

  .s1920\:hover\:pl-0\.25:hover{
    padding-left: 0.0625rem;
  }

  .s1920\:hover\:pt-1\.5:hover{
    padding-top: 0.375rem;
  }

  .s1920\:hover\:pr-1\.5:hover{
    padding-right: 0.375rem;
  }

  .s1920\:hover\:pb-1\.5:hover{
    padding-bottom: 0.375rem;
  }

  .s1920\:hover\:pl-1\.5:hover{
    padding-left: 0.375rem;
  }

  .s1920\:hover\:pt-2\.5:hover{
    padding-top: 0.625rem;
  }

  .s1920\:hover\:pr-2\.5:hover{
    padding-right: 0.625rem;
  }

  .s1920\:hover\:pb-2\.5:hover{
    padding-bottom: 0.625rem;
  }

  .s1920\:hover\:pl-2\.5:hover{
    padding-left: 0.625rem;
  }

  .s1920\:hover\:pt-3\.25:hover{
    padding-top: 0.8125rem;
  }

  .s1920\:hover\:pr-3\.25:hover{
    padding-right: 0.8125rem;
  }

  .s1920\:hover\:pb-3\.25:hover{
    padding-bottom: 0.8125rem;
  }

  .s1920\:hover\:pl-3\.25:hover{
    padding-left: 0.8125rem;
  }

  .s1920\:hover\:pt-3\.5:hover{
    padding-top: 0.875rem;
  }

  .s1920\:hover\:pr-3\.5:hover{
    padding-right: 0.875rem;
  }

  .s1920\:hover\:pb-3\.5:hover{
    padding-bottom: 0.875rem;
  }

  .s1920\:hover\:pl-3\.5:hover{
    padding-left: 0.875rem;
  }

  .s1920\:hover\:pt-5\.25:hover{
    padding-top: 1.3125rem;
  }

  .s1920\:hover\:pr-5\.25:hover{
    padding-right: 1.3125rem;
  }

  .s1920\:hover\:pb-5\.25:hover{
    padding-bottom: 1.3125rem;
  }

  .s1920\:hover\:pl-5\.25:hover{
    padding-left: 1.3125rem;
  }

  .s1920\:focus\:p-0:focus{
    padding: 0;
  }

  .s1920\:focus\:p-1:focus{
    padding: 0.25rem;
  }

  .s1920\:focus\:p-2:focus{
    padding: 0.5rem;
  }

  .s1920\:focus\:p-3:focus{
    padding: 0.75rem;
  }

  .s1920\:focus\:p-4:focus{
    padding: 1rem;
  }

  .s1920\:focus\:p-5:focus{
    padding: 1.25rem;
  }

  .s1920\:focus\:p-6:focus{
    padding: 1.5rem;
  }

  .s1920\:focus\:p-8:focus{
    padding: 2rem;
  }

  .s1920\:focus\:p-9:focus{
    padding: 2.25rem;
  }

  .s1920\:focus\:p-10:focus{
    padding: 2.5rem;
  }

  .s1920\:focus\:p-11:focus{
    padding: 3rem;
  }

  .s1920\:focus\:p-12:focus{
    padding: 3rem;
  }

  .s1920\:focus\:p-14:focus{
    padding: 3.5rem;
  }

  .s1920\:focus\:p-16:focus{
    padding: 4rem;
  }

  .s1920\:focus\:p-20:focus{
    padding: 5rem;
  }

  .s1920\:focus\:p-24:focus{
    padding: 6rem;
  }

  .s1920\:focus\:p-32:focus{
    padding: 8rem;
  }

  .s1920\:focus\:p-40:focus{
    padding: 10rem;
  }

  .s1920\:focus\:p-48:focus{
    padding: 12rem;
  }

  .s1920\:focus\:p-56:focus{
    padding: 14rem;
  }

  .s1920\:focus\:p-64:focus{
    padding: 16rem;
  }

  .s1920\:focus\:p-px:focus{
    padding: 1px;
  }

  .s1920\:focus\:p-0\.25:focus{
    padding: 0.0625rem;
  }

  .s1920\:focus\:p-1\.5:focus{
    padding: 0.375rem;
  }

  .s1920\:focus\:p-2\.5:focus{
    padding: 0.625rem;
  }

  .s1920\:focus\:p-3\.25:focus{
    padding: 0.8125rem;
  }

  .s1920\:focus\:p-3\.5:focus{
    padding: 0.875rem;
  }

  .s1920\:focus\:p-5\.25:focus{
    padding: 1.3125rem;
  }

  .s1920\:focus\:py-0:focus{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1920\:focus\:px-0:focus{
    padding-left: 0;
    padding-right: 0;
  }

  .s1920\:focus\:py-1:focus{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1920\:focus\:px-1:focus{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1920\:focus\:py-2:focus{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1920\:focus\:px-2:focus{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1920\:focus\:py-3:focus{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1920\:focus\:px-3:focus{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1920\:focus\:py-4:focus{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1920\:focus\:px-4:focus{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1920\:focus\:py-5:focus{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1920\:focus\:px-5:focus{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1920\:focus\:py-6:focus{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1920\:focus\:px-6:focus{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1920\:focus\:py-8:focus{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1920\:focus\:px-8:focus{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1920\:focus\:py-9:focus{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1920\:focus\:px-9:focus{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1920\:focus\:py-10:focus{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1920\:focus\:px-10:focus{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1920\:focus\:py-11:focus{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:focus\:px-11:focus{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:focus\:py-12:focus{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:focus\:px-12:focus{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:focus\:py-14:focus{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1920\:focus\:px-14:focus{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1920\:focus\:py-16:focus{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1920\:focus\:px-16:focus{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1920\:focus\:py-20:focus{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1920\:focus\:px-20:focus{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1920\:focus\:py-24:focus{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1920\:focus\:px-24:focus{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1920\:focus\:py-32:focus{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1920\:focus\:px-32:focus{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1920\:focus\:py-40:focus{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1920\:focus\:px-40:focus{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1920\:focus\:py-48:focus{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1920\:focus\:px-48:focus{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1920\:focus\:py-56:focus{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1920\:focus\:px-56:focus{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1920\:focus\:py-64:focus{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1920\:focus\:px-64:focus{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1920\:focus\:py-px:focus{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1920\:focus\:px-px:focus{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1920\:focus\:py-0\.25:focus{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1920\:focus\:px-0\.25:focus{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1920\:focus\:py-1\.5:focus{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1920\:focus\:px-1\.5:focus{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1920\:focus\:py-2\.5:focus{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1920\:focus\:px-2\.5:focus{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1920\:focus\:py-3\.25:focus{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1920\:focus\:px-3\.25:focus{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1920\:focus\:py-3\.5:focus{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1920\:focus\:px-3\.5:focus{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1920\:focus\:py-5\.25:focus{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1920\:focus\:px-5\.25:focus{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1920\:focus\:pt-0:focus{
    padding-top: 0;
  }

  .s1920\:focus\:pr-0:focus{
    padding-right: 0;
  }

  .s1920\:focus\:pb-0:focus{
    padding-bottom: 0;
  }

  .s1920\:focus\:pl-0:focus{
    padding-left: 0;
  }

  .s1920\:focus\:pt-1:focus{
    padding-top: 0.25rem;
  }

  .s1920\:focus\:pr-1:focus{
    padding-right: 0.25rem;
  }

  .s1920\:focus\:pb-1:focus{
    padding-bottom: 0.25rem;
  }

  .s1920\:focus\:pl-1:focus{
    padding-left: 0.25rem;
  }

  .s1920\:focus\:pt-2:focus{
    padding-top: 0.5rem;
  }

  .s1920\:focus\:pr-2:focus{
    padding-right: 0.5rem;
  }

  .s1920\:focus\:pb-2:focus{
    padding-bottom: 0.5rem;
  }

  .s1920\:focus\:pl-2:focus{
    padding-left: 0.5rem;
  }

  .s1920\:focus\:pt-3:focus{
    padding-top: 0.75rem;
  }

  .s1920\:focus\:pr-3:focus{
    padding-right: 0.75rem;
  }

  .s1920\:focus\:pb-3:focus{
    padding-bottom: 0.75rem;
  }

  .s1920\:focus\:pl-3:focus{
    padding-left: 0.75rem;
  }

  .s1920\:focus\:pt-4:focus{
    padding-top: 1rem;
  }

  .s1920\:focus\:pr-4:focus{
    padding-right: 1rem;
  }

  .s1920\:focus\:pb-4:focus{
    padding-bottom: 1rem;
  }

  .s1920\:focus\:pl-4:focus{
    padding-left: 1rem;
  }

  .s1920\:focus\:pt-5:focus{
    padding-top: 1.25rem;
  }

  .s1920\:focus\:pr-5:focus{
    padding-right: 1.25rem;
  }

  .s1920\:focus\:pb-5:focus{
    padding-bottom: 1.25rem;
  }

  .s1920\:focus\:pl-5:focus{
    padding-left: 1.25rem;
  }

  .s1920\:focus\:pt-6:focus{
    padding-top: 1.5rem;
  }

  .s1920\:focus\:pr-6:focus{
    padding-right: 1.5rem;
  }

  .s1920\:focus\:pb-6:focus{
    padding-bottom: 1.5rem;
  }

  .s1920\:focus\:pl-6:focus{
    padding-left: 1.5rem;
  }

  .s1920\:focus\:pt-8:focus{
    padding-top: 2rem;
  }

  .s1920\:focus\:pr-8:focus{
    padding-right: 2rem;
  }

  .s1920\:focus\:pb-8:focus{
    padding-bottom: 2rem;
  }

  .s1920\:focus\:pl-8:focus{
    padding-left: 2rem;
  }

  .s1920\:focus\:pt-9:focus{
    padding-top: 2.25rem;
  }

  .s1920\:focus\:pr-9:focus{
    padding-right: 2.25rem;
  }

  .s1920\:focus\:pb-9:focus{
    padding-bottom: 2.25rem;
  }

  .s1920\:focus\:pl-9:focus{
    padding-left: 2.25rem;
  }

  .s1920\:focus\:pt-10:focus{
    padding-top: 2.5rem;
  }

  .s1920\:focus\:pr-10:focus{
    padding-right: 2.5rem;
  }

  .s1920\:focus\:pb-10:focus{
    padding-bottom: 2.5rem;
  }

  .s1920\:focus\:pl-10:focus{
    padding-left: 2.5rem;
  }

  .s1920\:focus\:pt-11:focus{
    padding-top: 3rem;
  }

  .s1920\:focus\:pr-11:focus{
    padding-right: 3rem;
  }

  .s1920\:focus\:pb-11:focus{
    padding-bottom: 3rem;
  }

  .s1920\:focus\:pl-11:focus{
    padding-left: 3rem;
  }

  .s1920\:focus\:pt-12:focus{
    padding-top: 3rem;
  }

  .s1920\:focus\:pr-12:focus{
    padding-right: 3rem;
  }

  .s1920\:focus\:pb-12:focus{
    padding-bottom: 3rem;
  }

  .s1920\:focus\:pl-12:focus{
    padding-left: 3rem;
  }

  .s1920\:focus\:pt-14:focus{
    padding-top: 3.5rem;
  }

  .s1920\:focus\:pr-14:focus{
    padding-right: 3.5rem;
  }

  .s1920\:focus\:pb-14:focus{
    padding-bottom: 3.5rem;
  }

  .s1920\:focus\:pl-14:focus{
    padding-left: 3.5rem;
  }

  .s1920\:focus\:pt-16:focus{
    padding-top: 4rem;
  }

  .s1920\:focus\:pr-16:focus{
    padding-right: 4rem;
  }

  .s1920\:focus\:pb-16:focus{
    padding-bottom: 4rem;
  }

  .s1920\:focus\:pl-16:focus{
    padding-left: 4rem;
  }

  .s1920\:focus\:pt-20:focus{
    padding-top: 5rem;
  }

  .s1920\:focus\:pr-20:focus{
    padding-right: 5rem;
  }

  .s1920\:focus\:pb-20:focus{
    padding-bottom: 5rem;
  }

  .s1920\:focus\:pl-20:focus{
    padding-left: 5rem;
  }

  .s1920\:focus\:pt-24:focus{
    padding-top: 6rem;
  }

  .s1920\:focus\:pr-24:focus{
    padding-right: 6rem;
  }

  .s1920\:focus\:pb-24:focus{
    padding-bottom: 6rem;
  }

  .s1920\:focus\:pl-24:focus{
    padding-left: 6rem;
  }

  .s1920\:focus\:pt-32:focus{
    padding-top: 8rem;
  }

  .s1920\:focus\:pr-32:focus{
    padding-right: 8rem;
  }

  .s1920\:focus\:pb-32:focus{
    padding-bottom: 8rem;
  }

  .s1920\:focus\:pl-32:focus{
    padding-left: 8rem;
  }

  .s1920\:focus\:pt-40:focus{
    padding-top: 10rem;
  }

  .s1920\:focus\:pr-40:focus{
    padding-right: 10rem;
  }

  .s1920\:focus\:pb-40:focus{
    padding-bottom: 10rem;
  }

  .s1920\:focus\:pl-40:focus{
    padding-left: 10rem;
  }

  .s1920\:focus\:pt-48:focus{
    padding-top: 12rem;
  }

  .s1920\:focus\:pr-48:focus{
    padding-right: 12rem;
  }

  .s1920\:focus\:pb-48:focus{
    padding-bottom: 12rem;
  }

  .s1920\:focus\:pl-48:focus{
    padding-left: 12rem;
  }

  .s1920\:focus\:pt-56:focus{
    padding-top: 14rem;
  }

  .s1920\:focus\:pr-56:focus{
    padding-right: 14rem;
  }

  .s1920\:focus\:pb-56:focus{
    padding-bottom: 14rem;
  }

  .s1920\:focus\:pl-56:focus{
    padding-left: 14rem;
  }

  .s1920\:focus\:pt-64:focus{
    padding-top: 16rem;
  }

  .s1920\:focus\:pr-64:focus{
    padding-right: 16rem;
  }

  .s1920\:focus\:pb-64:focus{
    padding-bottom: 16rem;
  }

  .s1920\:focus\:pl-64:focus{
    padding-left: 16rem;
  }

  .s1920\:focus\:pt-px:focus{
    padding-top: 1px;
  }

  .s1920\:focus\:pr-px:focus{
    padding-right: 1px;
  }

  .s1920\:focus\:pb-px:focus{
    padding-bottom: 1px;
  }

  .s1920\:focus\:pl-px:focus{
    padding-left: 1px;
  }

  .s1920\:focus\:pt-0\.25:focus{
    padding-top: 0.0625rem;
  }

  .s1920\:focus\:pr-0\.25:focus{
    padding-right: 0.0625rem;
  }

  .s1920\:focus\:pb-0\.25:focus{
    padding-bottom: 0.0625rem;
  }

  .s1920\:focus\:pl-0\.25:focus{
    padding-left: 0.0625rem;
  }

  .s1920\:focus\:pt-1\.5:focus{
    padding-top: 0.375rem;
  }

  .s1920\:focus\:pr-1\.5:focus{
    padding-right: 0.375rem;
  }

  .s1920\:focus\:pb-1\.5:focus{
    padding-bottom: 0.375rem;
  }

  .s1920\:focus\:pl-1\.5:focus{
    padding-left: 0.375rem;
  }

  .s1920\:focus\:pt-2\.5:focus{
    padding-top: 0.625rem;
  }

  .s1920\:focus\:pr-2\.5:focus{
    padding-right: 0.625rem;
  }

  .s1920\:focus\:pb-2\.5:focus{
    padding-bottom: 0.625rem;
  }

  .s1920\:focus\:pl-2\.5:focus{
    padding-left: 0.625rem;
  }

  .s1920\:focus\:pt-3\.25:focus{
    padding-top: 0.8125rem;
  }

  .s1920\:focus\:pr-3\.25:focus{
    padding-right: 0.8125rem;
  }

  .s1920\:focus\:pb-3\.25:focus{
    padding-bottom: 0.8125rem;
  }

  .s1920\:focus\:pl-3\.25:focus{
    padding-left: 0.8125rem;
  }

  .s1920\:focus\:pt-3\.5:focus{
    padding-top: 0.875rem;
  }

  .s1920\:focus\:pr-3\.5:focus{
    padding-right: 0.875rem;
  }

  .s1920\:focus\:pb-3\.5:focus{
    padding-bottom: 0.875rem;
  }

  .s1920\:focus\:pl-3\.5:focus{
    padding-left: 0.875rem;
  }

  .s1920\:focus\:pt-5\.25:focus{
    padding-top: 1.3125rem;
  }

  .s1920\:focus\:pr-5\.25:focus{
    padding-right: 1.3125rem;
  }

  .s1920\:focus\:pb-5\.25:focus{
    padding-bottom: 1.3125rem;
  }

  .s1920\:focus\:pl-5\.25:focus{
    padding-left: 1.3125rem;
  }

  .s1920\:active\:p-0:active{
    padding: 0;
  }

  .s1920\:active\:p-1:active{
    padding: 0.25rem;
  }

  .s1920\:active\:p-2:active{
    padding: 0.5rem;
  }

  .s1920\:active\:p-3:active{
    padding: 0.75rem;
  }

  .s1920\:active\:p-4:active{
    padding: 1rem;
  }

  .s1920\:active\:p-5:active{
    padding: 1.25rem;
  }

  .s1920\:active\:p-6:active{
    padding: 1.5rem;
  }

  .s1920\:active\:p-8:active{
    padding: 2rem;
  }

  .s1920\:active\:p-9:active{
    padding: 2.25rem;
  }

  .s1920\:active\:p-10:active{
    padding: 2.5rem;
  }

  .s1920\:active\:p-11:active{
    padding: 3rem;
  }

  .s1920\:active\:p-12:active{
    padding: 3rem;
  }

  .s1920\:active\:p-14:active{
    padding: 3.5rem;
  }

  .s1920\:active\:p-16:active{
    padding: 4rem;
  }

  .s1920\:active\:p-20:active{
    padding: 5rem;
  }

  .s1920\:active\:p-24:active{
    padding: 6rem;
  }

  .s1920\:active\:p-32:active{
    padding: 8rem;
  }

  .s1920\:active\:p-40:active{
    padding: 10rem;
  }

  .s1920\:active\:p-48:active{
    padding: 12rem;
  }

  .s1920\:active\:p-56:active{
    padding: 14rem;
  }

  .s1920\:active\:p-64:active{
    padding: 16rem;
  }

  .s1920\:active\:p-px:active{
    padding: 1px;
  }

  .s1920\:active\:p-0\.25:active{
    padding: 0.0625rem;
  }

  .s1920\:active\:p-1\.5:active{
    padding: 0.375rem;
  }

  .s1920\:active\:p-2\.5:active{
    padding: 0.625rem;
  }

  .s1920\:active\:p-3\.25:active{
    padding: 0.8125rem;
  }

  .s1920\:active\:p-3\.5:active{
    padding: 0.875rem;
  }

  .s1920\:active\:p-5\.25:active{
    padding: 1.3125rem;
  }

  .s1920\:active\:py-0:active{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1920\:active\:px-0:active{
    padding-left: 0;
    padding-right: 0;
  }

  .s1920\:active\:py-1:active{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1920\:active\:px-1:active{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1920\:active\:py-2:active{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1920\:active\:px-2:active{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1920\:active\:py-3:active{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1920\:active\:px-3:active{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1920\:active\:py-4:active{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1920\:active\:px-4:active{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1920\:active\:py-5:active{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1920\:active\:px-5:active{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1920\:active\:py-6:active{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1920\:active\:px-6:active{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1920\:active\:py-8:active{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1920\:active\:px-8:active{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1920\:active\:py-9:active{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1920\:active\:px-9:active{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1920\:active\:py-10:active{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1920\:active\:px-10:active{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1920\:active\:py-11:active{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:active\:px-11:active{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:active\:py-12:active{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:active\:px-12:active{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:active\:py-14:active{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1920\:active\:px-14:active{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1920\:active\:py-16:active{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1920\:active\:px-16:active{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1920\:active\:py-20:active{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1920\:active\:px-20:active{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1920\:active\:py-24:active{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1920\:active\:px-24:active{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1920\:active\:py-32:active{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1920\:active\:px-32:active{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1920\:active\:py-40:active{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1920\:active\:px-40:active{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1920\:active\:py-48:active{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1920\:active\:px-48:active{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1920\:active\:py-56:active{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1920\:active\:px-56:active{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1920\:active\:py-64:active{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1920\:active\:px-64:active{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1920\:active\:py-px:active{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1920\:active\:px-px:active{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1920\:active\:py-0\.25:active{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1920\:active\:px-0\.25:active{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1920\:active\:py-1\.5:active{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1920\:active\:px-1\.5:active{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1920\:active\:py-2\.5:active{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1920\:active\:px-2\.5:active{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1920\:active\:py-3\.25:active{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1920\:active\:px-3\.25:active{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1920\:active\:py-3\.5:active{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1920\:active\:px-3\.5:active{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1920\:active\:py-5\.25:active{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1920\:active\:px-5\.25:active{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1920\:active\:pt-0:active{
    padding-top: 0;
  }

  .s1920\:active\:pr-0:active{
    padding-right: 0;
  }

  .s1920\:active\:pb-0:active{
    padding-bottom: 0;
  }

  .s1920\:active\:pl-0:active{
    padding-left: 0;
  }

  .s1920\:active\:pt-1:active{
    padding-top: 0.25rem;
  }

  .s1920\:active\:pr-1:active{
    padding-right: 0.25rem;
  }

  .s1920\:active\:pb-1:active{
    padding-bottom: 0.25rem;
  }

  .s1920\:active\:pl-1:active{
    padding-left: 0.25rem;
  }

  .s1920\:active\:pt-2:active{
    padding-top: 0.5rem;
  }

  .s1920\:active\:pr-2:active{
    padding-right: 0.5rem;
  }

  .s1920\:active\:pb-2:active{
    padding-bottom: 0.5rem;
  }

  .s1920\:active\:pl-2:active{
    padding-left: 0.5rem;
  }

  .s1920\:active\:pt-3:active{
    padding-top: 0.75rem;
  }

  .s1920\:active\:pr-3:active{
    padding-right: 0.75rem;
  }

  .s1920\:active\:pb-3:active{
    padding-bottom: 0.75rem;
  }

  .s1920\:active\:pl-3:active{
    padding-left: 0.75rem;
  }

  .s1920\:active\:pt-4:active{
    padding-top: 1rem;
  }

  .s1920\:active\:pr-4:active{
    padding-right: 1rem;
  }

  .s1920\:active\:pb-4:active{
    padding-bottom: 1rem;
  }

  .s1920\:active\:pl-4:active{
    padding-left: 1rem;
  }

  .s1920\:active\:pt-5:active{
    padding-top: 1.25rem;
  }

  .s1920\:active\:pr-5:active{
    padding-right: 1.25rem;
  }

  .s1920\:active\:pb-5:active{
    padding-bottom: 1.25rem;
  }

  .s1920\:active\:pl-5:active{
    padding-left: 1.25rem;
  }

  .s1920\:active\:pt-6:active{
    padding-top: 1.5rem;
  }

  .s1920\:active\:pr-6:active{
    padding-right: 1.5rem;
  }

  .s1920\:active\:pb-6:active{
    padding-bottom: 1.5rem;
  }

  .s1920\:active\:pl-6:active{
    padding-left: 1.5rem;
  }

  .s1920\:active\:pt-8:active{
    padding-top: 2rem;
  }

  .s1920\:active\:pr-8:active{
    padding-right: 2rem;
  }

  .s1920\:active\:pb-8:active{
    padding-bottom: 2rem;
  }

  .s1920\:active\:pl-8:active{
    padding-left: 2rem;
  }

  .s1920\:active\:pt-9:active{
    padding-top: 2.25rem;
  }

  .s1920\:active\:pr-9:active{
    padding-right: 2.25rem;
  }

  .s1920\:active\:pb-9:active{
    padding-bottom: 2.25rem;
  }

  .s1920\:active\:pl-9:active{
    padding-left: 2.25rem;
  }

  .s1920\:active\:pt-10:active{
    padding-top: 2.5rem;
  }

  .s1920\:active\:pr-10:active{
    padding-right: 2.5rem;
  }

  .s1920\:active\:pb-10:active{
    padding-bottom: 2.5rem;
  }

  .s1920\:active\:pl-10:active{
    padding-left: 2.5rem;
  }

  .s1920\:active\:pt-11:active{
    padding-top: 3rem;
  }

  .s1920\:active\:pr-11:active{
    padding-right: 3rem;
  }

  .s1920\:active\:pb-11:active{
    padding-bottom: 3rem;
  }

  .s1920\:active\:pl-11:active{
    padding-left: 3rem;
  }

  .s1920\:active\:pt-12:active{
    padding-top: 3rem;
  }

  .s1920\:active\:pr-12:active{
    padding-right: 3rem;
  }

  .s1920\:active\:pb-12:active{
    padding-bottom: 3rem;
  }

  .s1920\:active\:pl-12:active{
    padding-left: 3rem;
  }

  .s1920\:active\:pt-14:active{
    padding-top: 3.5rem;
  }

  .s1920\:active\:pr-14:active{
    padding-right: 3.5rem;
  }

  .s1920\:active\:pb-14:active{
    padding-bottom: 3.5rem;
  }

  .s1920\:active\:pl-14:active{
    padding-left: 3.5rem;
  }

  .s1920\:active\:pt-16:active{
    padding-top: 4rem;
  }

  .s1920\:active\:pr-16:active{
    padding-right: 4rem;
  }

  .s1920\:active\:pb-16:active{
    padding-bottom: 4rem;
  }

  .s1920\:active\:pl-16:active{
    padding-left: 4rem;
  }

  .s1920\:active\:pt-20:active{
    padding-top: 5rem;
  }

  .s1920\:active\:pr-20:active{
    padding-right: 5rem;
  }

  .s1920\:active\:pb-20:active{
    padding-bottom: 5rem;
  }

  .s1920\:active\:pl-20:active{
    padding-left: 5rem;
  }

  .s1920\:active\:pt-24:active{
    padding-top: 6rem;
  }

  .s1920\:active\:pr-24:active{
    padding-right: 6rem;
  }

  .s1920\:active\:pb-24:active{
    padding-bottom: 6rem;
  }

  .s1920\:active\:pl-24:active{
    padding-left: 6rem;
  }

  .s1920\:active\:pt-32:active{
    padding-top: 8rem;
  }

  .s1920\:active\:pr-32:active{
    padding-right: 8rem;
  }

  .s1920\:active\:pb-32:active{
    padding-bottom: 8rem;
  }

  .s1920\:active\:pl-32:active{
    padding-left: 8rem;
  }

  .s1920\:active\:pt-40:active{
    padding-top: 10rem;
  }

  .s1920\:active\:pr-40:active{
    padding-right: 10rem;
  }

  .s1920\:active\:pb-40:active{
    padding-bottom: 10rem;
  }

  .s1920\:active\:pl-40:active{
    padding-left: 10rem;
  }

  .s1920\:active\:pt-48:active{
    padding-top: 12rem;
  }

  .s1920\:active\:pr-48:active{
    padding-right: 12rem;
  }

  .s1920\:active\:pb-48:active{
    padding-bottom: 12rem;
  }

  .s1920\:active\:pl-48:active{
    padding-left: 12rem;
  }

  .s1920\:active\:pt-56:active{
    padding-top: 14rem;
  }

  .s1920\:active\:pr-56:active{
    padding-right: 14rem;
  }

  .s1920\:active\:pb-56:active{
    padding-bottom: 14rem;
  }

  .s1920\:active\:pl-56:active{
    padding-left: 14rem;
  }

  .s1920\:active\:pt-64:active{
    padding-top: 16rem;
  }

  .s1920\:active\:pr-64:active{
    padding-right: 16rem;
  }

  .s1920\:active\:pb-64:active{
    padding-bottom: 16rem;
  }

  .s1920\:active\:pl-64:active{
    padding-left: 16rem;
  }

  .s1920\:active\:pt-px:active{
    padding-top: 1px;
  }

  .s1920\:active\:pr-px:active{
    padding-right: 1px;
  }

  .s1920\:active\:pb-px:active{
    padding-bottom: 1px;
  }

  .s1920\:active\:pl-px:active{
    padding-left: 1px;
  }

  .s1920\:active\:pt-0\.25:active{
    padding-top: 0.0625rem;
  }

  .s1920\:active\:pr-0\.25:active{
    padding-right: 0.0625rem;
  }

  .s1920\:active\:pb-0\.25:active{
    padding-bottom: 0.0625rem;
  }

  .s1920\:active\:pl-0\.25:active{
    padding-left: 0.0625rem;
  }

  .s1920\:active\:pt-1\.5:active{
    padding-top: 0.375rem;
  }

  .s1920\:active\:pr-1\.5:active{
    padding-right: 0.375rem;
  }

  .s1920\:active\:pb-1\.5:active{
    padding-bottom: 0.375rem;
  }

  .s1920\:active\:pl-1\.5:active{
    padding-left: 0.375rem;
  }

  .s1920\:active\:pt-2\.5:active{
    padding-top: 0.625rem;
  }

  .s1920\:active\:pr-2\.5:active{
    padding-right: 0.625rem;
  }

  .s1920\:active\:pb-2\.5:active{
    padding-bottom: 0.625rem;
  }

  .s1920\:active\:pl-2\.5:active{
    padding-left: 0.625rem;
  }

  .s1920\:active\:pt-3\.25:active{
    padding-top: 0.8125rem;
  }

  .s1920\:active\:pr-3\.25:active{
    padding-right: 0.8125rem;
  }

  .s1920\:active\:pb-3\.25:active{
    padding-bottom: 0.8125rem;
  }

  .s1920\:active\:pl-3\.25:active{
    padding-left: 0.8125rem;
  }

  .s1920\:active\:pt-3\.5:active{
    padding-top: 0.875rem;
  }

  .s1920\:active\:pr-3\.5:active{
    padding-right: 0.875rem;
  }

  .s1920\:active\:pb-3\.5:active{
    padding-bottom: 0.875rem;
  }

  .s1920\:active\:pl-3\.5:active{
    padding-left: 0.875rem;
  }

  .s1920\:active\:pt-5\.25:active{
    padding-top: 1.3125rem;
  }

  .s1920\:active\:pr-5\.25:active{
    padding-right: 1.3125rem;
  }

  .s1920\:active\:pb-5\.25:active{
    padding-bottom: 1.3125rem;
  }

  .s1920\:active\:pl-5\.25:active{
    padding-left: 1.3125rem;
  }

  .s1920\:first\:p-0:first-child{
    padding: 0;
  }

  .s1920\:first\:p-1:first-child{
    padding: 0.25rem;
  }

  .s1920\:first\:p-2:first-child{
    padding: 0.5rem;
  }

  .s1920\:first\:p-3:first-child{
    padding: 0.75rem;
  }

  .s1920\:first\:p-4:first-child{
    padding: 1rem;
  }

  .s1920\:first\:p-5:first-child{
    padding: 1.25rem;
  }

  .s1920\:first\:p-6:first-child{
    padding: 1.5rem;
  }

  .s1920\:first\:p-8:first-child{
    padding: 2rem;
  }

  .s1920\:first\:p-9:first-child{
    padding: 2.25rem;
  }

  .s1920\:first\:p-10:first-child{
    padding: 2.5rem;
  }

  .s1920\:first\:p-11:first-child{
    padding: 3rem;
  }

  .s1920\:first\:p-12:first-child{
    padding: 3rem;
  }

  .s1920\:first\:p-14:first-child{
    padding: 3.5rem;
  }

  .s1920\:first\:p-16:first-child{
    padding: 4rem;
  }

  .s1920\:first\:p-20:first-child{
    padding: 5rem;
  }

  .s1920\:first\:p-24:first-child{
    padding: 6rem;
  }

  .s1920\:first\:p-32:first-child{
    padding: 8rem;
  }

  .s1920\:first\:p-40:first-child{
    padding: 10rem;
  }

  .s1920\:first\:p-48:first-child{
    padding: 12rem;
  }

  .s1920\:first\:p-56:first-child{
    padding: 14rem;
  }

  .s1920\:first\:p-64:first-child{
    padding: 16rem;
  }

  .s1920\:first\:p-px:first-child{
    padding: 1px;
  }

  .s1920\:first\:p-0\.25:first-child{
    padding: 0.0625rem;
  }

  .s1920\:first\:p-1\.5:first-child{
    padding: 0.375rem;
  }

  .s1920\:first\:p-2\.5:first-child{
    padding: 0.625rem;
  }

  .s1920\:first\:p-3\.25:first-child{
    padding: 0.8125rem;
  }

  .s1920\:first\:p-3\.5:first-child{
    padding: 0.875rem;
  }

  .s1920\:first\:p-5\.25:first-child{
    padding: 1.3125rem;
  }

  .s1920\:first\:py-0:first-child{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1920\:first\:px-0:first-child{
    padding-left: 0;
    padding-right: 0;
  }

  .s1920\:first\:py-1:first-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1920\:first\:px-1:first-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1920\:first\:py-2:first-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1920\:first\:px-2:first-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1920\:first\:py-3:first-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1920\:first\:px-3:first-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1920\:first\:py-4:first-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1920\:first\:px-4:first-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1920\:first\:py-5:first-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1920\:first\:px-5:first-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1920\:first\:py-6:first-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1920\:first\:px-6:first-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1920\:first\:py-8:first-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1920\:first\:px-8:first-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1920\:first\:py-9:first-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1920\:first\:px-9:first-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1920\:first\:py-10:first-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1920\:first\:px-10:first-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1920\:first\:py-11:first-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:first\:px-11:first-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:first\:py-12:first-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:first\:px-12:first-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:first\:py-14:first-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1920\:first\:px-14:first-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1920\:first\:py-16:first-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1920\:first\:px-16:first-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1920\:first\:py-20:first-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1920\:first\:px-20:first-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1920\:first\:py-24:first-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1920\:first\:px-24:first-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1920\:first\:py-32:first-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1920\:first\:px-32:first-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1920\:first\:py-40:first-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1920\:first\:px-40:first-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1920\:first\:py-48:first-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1920\:first\:px-48:first-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1920\:first\:py-56:first-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1920\:first\:px-56:first-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1920\:first\:py-64:first-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1920\:first\:px-64:first-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1920\:first\:py-px:first-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1920\:first\:px-px:first-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1920\:first\:py-0\.25:first-child{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1920\:first\:px-0\.25:first-child{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1920\:first\:py-1\.5:first-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1920\:first\:px-1\.5:first-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1920\:first\:py-2\.5:first-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1920\:first\:px-2\.5:first-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1920\:first\:py-3\.25:first-child{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1920\:first\:px-3\.25:first-child{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1920\:first\:py-3\.5:first-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1920\:first\:px-3\.5:first-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1920\:first\:py-5\.25:first-child{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1920\:first\:px-5\.25:first-child{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1920\:first\:pt-0:first-child{
    padding-top: 0;
  }

  .s1920\:first\:pr-0:first-child{
    padding-right: 0;
  }

  .s1920\:first\:pb-0:first-child{
    padding-bottom: 0;
  }

  .s1920\:first\:pl-0:first-child{
    padding-left: 0;
  }

  .s1920\:first\:pt-1:first-child{
    padding-top: 0.25rem;
  }

  .s1920\:first\:pr-1:first-child{
    padding-right: 0.25rem;
  }

  .s1920\:first\:pb-1:first-child{
    padding-bottom: 0.25rem;
  }

  .s1920\:first\:pl-1:first-child{
    padding-left: 0.25rem;
  }

  .s1920\:first\:pt-2:first-child{
    padding-top: 0.5rem;
  }

  .s1920\:first\:pr-2:first-child{
    padding-right: 0.5rem;
  }

  .s1920\:first\:pb-2:first-child{
    padding-bottom: 0.5rem;
  }

  .s1920\:first\:pl-2:first-child{
    padding-left: 0.5rem;
  }

  .s1920\:first\:pt-3:first-child{
    padding-top: 0.75rem;
  }

  .s1920\:first\:pr-3:first-child{
    padding-right: 0.75rem;
  }

  .s1920\:first\:pb-3:first-child{
    padding-bottom: 0.75rem;
  }

  .s1920\:first\:pl-3:first-child{
    padding-left: 0.75rem;
  }

  .s1920\:first\:pt-4:first-child{
    padding-top: 1rem;
  }

  .s1920\:first\:pr-4:first-child{
    padding-right: 1rem;
  }

  .s1920\:first\:pb-4:first-child{
    padding-bottom: 1rem;
  }

  .s1920\:first\:pl-4:first-child{
    padding-left: 1rem;
  }

  .s1920\:first\:pt-5:first-child{
    padding-top: 1.25rem;
  }

  .s1920\:first\:pr-5:first-child{
    padding-right: 1.25rem;
  }

  .s1920\:first\:pb-5:first-child{
    padding-bottom: 1.25rem;
  }

  .s1920\:first\:pl-5:first-child{
    padding-left: 1.25rem;
  }

  .s1920\:first\:pt-6:first-child{
    padding-top: 1.5rem;
  }

  .s1920\:first\:pr-6:first-child{
    padding-right: 1.5rem;
  }

  .s1920\:first\:pb-6:first-child{
    padding-bottom: 1.5rem;
  }

  .s1920\:first\:pl-6:first-child{
    padding-left: 1.5rem;
  }

  .s1920\:first\:pt-8:first-child{
    padding-top: 2rem;
  }

  .s1920\:first\:pr-8:first-child{
    padding-right: 2rem;
  }

  .s1920\:first\:pb-8:first-child{
    padding-bottom: 2rem;
  }

  .s1920\:first\:pl-8:first-child{
    padding-left: 2rem;
  }

  .s1920\:first\:pt-9:first-child{
    padding-top: 2.25rem;
  }

  .s1920\:first\:pr-9:first-child{
    padding-right: 2.25rem;
  }

  .s1920\:first\:pb-9:first-child{
    padding-bottom: 2.25rem;
  }

  .s1920\:first\:pl-9:first-child{
    padding-left: 2.25rem;
  }

  .s1920\:first\:pt-10:first-child{
    padding-top: 2.5rem;
  }

  .s1920\:first\:pr-10:first-child{
    padding-right: 2.5rem;
  }

  .s1920\:first\:pb-10:first-child{
    padding-bottom: 2.5rem;
  }

  .s1920\:first\:pl-10:first-child{
    padding-left: 2.5rem;
  }

  .s1920\:first\:pt-11:first-child{
    padding-top: 3rem;
  }

  .s1920\:first\:pr-11:first-child{
    padding-right: 3rem;
  }

  .s1920\:first\:pb-11:first-child{
    padding-bottom: 3rem;
  }

  .s1920\:first\:pl-11:first-child{
    padding-left: 3rem;
  }

  .s1920\:first\:pt-12:first-child{
    padding-top: 3rem;
  }

  .s1920\:first\:pr-12:first-child{
    padding-right: 3rem;
  }

  .s1920\:first\:pb-12:first-child{
    padding-bottom: 3rem;
  }

  .s1920\:first\:pl-12:first-child{
    padding-left: 3rem;
  }

  .s1920\:first\:pt-14:first-child{
    padding-top: 3.5rem;
  }

  .s1920\:first\:pr-14:first-child{
    padding-right: 3.5rem;
  }

  .s1920\:first\:pb-14:first-child{
    padding-bottom: 3.5rem;
  }

  .s1920\:first\:pl-14:first-child{
    padding-left: 3.5rem;
  }

  .s1920\:first\:pt-16:first-child{
    padding-top: 4rem;
  }

  .s1920\:first\:pr-16:first-child{
    padding-right: 4rem;
  }

  .s1920\:first\:pb-16:first-child{
    padding-bottom: 4rem;
  }

  .s1920\:first\:pl-16:first-child{
    padding-left: 4rem;
  }

  .s1920\:first\:pt-20:first-child{
    padding-top: 5rem;
  }

  .s1920\:first\:pr-20:first-child{
    padding-right: 5rem;
  }

  .s1920\:first\:pb-20:first-child{
    padding-bottom: 5rem;
  }

  .s1920\:first\:pl-20:first-child{
    padding-left: 5rem;
  }

  .s1920\:first\:pt-24:first-child{
    padding-top: 6rem;
  }

  .s1920\:first\:pr-24:first-child{
    padding-right: 6rem;
  }

  .s1920\:first\:pb-24:first-child{
    padding-bottom: 6rem;
  }

  .s1920\:first\:pl-24:first-child{
    padding-left: 6rem;
  }

  .s1920\:first\:pt-32:first-child{
    padding-top: 8rem;
  }

  .s1920\:first\:pr-32:first-child{
    padding-right: 8rem;
  }

  .s1920\:first\:pb-32:first-child{
    padding-bottom: 8rem;
  }

  .s1920\:first\:pl-32:first-child{
    padding-left: 8rem;
  }

  .s1920\:first\:pt-40:first-child{
    padding-top: 10rem;
  }

  .s1920\:first\:pr-40:first-child{
    padding-right: 10rem;
  }

  .s1920\:first\:pb-40:first-child{
    padding-bottom: 10rem;
  }

  .s1920\:first\:pl-40:first-child{
    padding-left: 10rem;
  }

  .s1920\:first\:pt-48:first-child{
    padding-top: 12rem;
  }

  .s1920\:first\:pr-48:first-child{
    padding-right: 12rem;
  }

  .s1920\:first\:pb-48:first-child{
    padding-bottom: 12rem;
  }

  .s1920\:first\:pl-48:first-child{
    padding-left: 12rem;
  }

  .s1920\:first\:pt-56:first-child{
    padding-top: 14rem;
  }

  .s1920\:first\:pr-56:first-child{
    padding-right: 14rem;
  }

  .s1920\:first\:pb-56:first-child{
    padding-bottom: 14rem;
  }

  .s1920\:first\:pl-56:first-child{
    padding-left: 14rem;
  }

  .s1920\:first\:pt-64:first-child{
    padding-top: 16rem;
  }

  .s1920\:first\:pr-64:first-child{
    padding-right: 16rem;
  }

  .s1920\:first\:pb-64:first-child{
    padding-bottom: 16rem;
  }

  .s1920\:first\:pl-64:first-child{
    padding-left: 16rem;
  }

  .s1920\:first\:pt-px:first-child{
    padding-top: 1px;
  }

  .s1920\:first\:pr-px:first-child{
    padding-right: 1px;
  }

  .s1920\:first\:pb-px:first-child{
    padding-bottom: 1px;
  }

  .s1920\:first\:pl-px:first-child{
    padding-left: 1px;
  }

  .s1920\:first\:pt-0\.25:first-child{
    padding-top: 0.0625rem;
  }

  .s1920\:first\:pr-0\.25:first-child{
    padding-right: 0.0625rem;
  }

  .s1920\:first\:pb-0\.25:first-child{
    padding-bottom: 0.0625rem;
  }

  .s1920\:first\:pl-0\.25:first-child{
    padding-left: 0.0625rem;
  }

  .s1920\:first\:pt-1\.5:first-child{
    padding-top: 0.375rem;
  }

  .s1920\:first\:pr-1\.5:first-child{
    padding-right: 0.375rem;
  }

  .s1920\:first\:pb-1\.5:first-child{
    padding-bottom: 0.375rem;
  }

  .s1920\:first\:pl-1\.5:first-child{
    padding-left: 0.375rem;
  }

  .s1920\:first\:pt-2\.5:first-child{
    padding-top: 0.625rem;
  }

  .s1920\:first\:pr-2\.5:first-child{
    padding-right: 0.625rem;
  }

  .s1920\:first\:pb-2\.5:first-child{
    padding-bottom: 0.625rem;
  }

  .s1920\:first\:pl-2\.5:first-child{
    padding-left: 0.625rem;
  }

  .s1920\:first\:pt-3\.25:first-child{
    padding-top: 0.8125rem;
  }

  .s1920\:first\:pr-3\.25:first-child{
    padding-right: 0.8125rem;
  }

  .s1920\:first\:pb-3\.25:first-child{
    padding-bottom: 0.8125rem;
  }

  .s1920\:first\:pl-3\.25:first-child{
    padding-left: 0.8125rem;
  }

  .s1920\:first\:pt-3\.5:first-child{
    padding-top: 0.875rem;
  }

  .s1920\:first\:pr-3\.5:first-child{
    padding-right: 0.875rem;
  }

  .s1920\:first\:pb-3\.5:first-child{
    padding-bottom: 0.875rem;
  }

  .s1920\:first\:pl-3\.5:first-child{
    padding-left: 0.875rem;
  }

  .s1920\:first\:pt-5\.25:first-child{
    padding-top: 1.3125rem;
  }

  .s1920\:first\:pr-5\.25:first-child{
    padding-right: 1.3125rem;
  }

  .s1920\:first\:pb-5\.25:first-child{
    padding-bottom: 1.3125rem;
  }

  .s1920\:first\:pl-5\.25:first-child{
    padding-left: 1.3125rem;
  }

  .s1920\:last\:p-0:last-child{
    padding: 0;
  }

  .s1920\:last\:p-1:last-child{
    padding: 0.25rem;
  }

  .s1920\:last\:p-2:last-child{
    padding: 0.5rem;
  }

  .s1920\:last\:p-3:last-child{
    padding: 0.75rem;
  }

  .s1920\:last\:p-4:last-child{
    padding: 1rem;
  }

  .s1920\:last\:p-5:last-child{
    padding: 1.25rem;
  }

  .s1920\:last\:p-6:last-child{
    padding: 1.5rem;
  }

  .s1920\:last\:p-8:last-child{
    padding: 2rem;
  }

  .s1920\:last\:p-9:last-child{
    padding: 2.25rem;
  }

  .s1920\:last\:p-10:last-child{
    padding: 2.5rem;
  }

  .s1920\:last\:p-11:last-child{
    padding: 3rem;
  }

  .s1920\:last\:p-12:last-child{
    padding: 3rem;
  }

  .s1920\:last\:p-14:last-child{
    padding: 3.5rem;
  }

  .s1920\:last\:p-16:last-child{
    padding: 4rem;
  }

  .s1920\:last\:p-20:last-child{
    padding: 5rem;
  }

  .s1920\:last\:p-24:last-child{
    padding: 6rem;
  }

  .s1920\:last\:p-32:last-child{
    padding: 8rem;
  }

  .s1920\:last\:p-40:last-child{
    padding: 10rem;
  }

  .s1920\:last\:p-48:last-child{
    padding: 12rem;
  }

  .s1920\:last\:p-56:last-child{
    padding: 14rem;
  }

  .s1920\:last\:p-64:last-child{
    padding: 16rem;
  }

  .s1920\:last\:p-px:last-child{
    padding: 1px;
  }

  .s1920\:last\:p-0\.25:last-child{
    padding: 0.0625rem;
  }

  .s1920\:last\:p-1\.5:last-child{
    padding: 0.375rem;
  }

  .s1920\:last\:p-2\.5:last-child{
    padding: 0.625rem;
  }

  .s1920\:last\:p-3\.25:last-child{
    padding: 0.8125rem;
  }

  .s1920\:last\:p-3\.5:last-child{
    padding: 0.875rem;
  }

  .s1920\:last\:p-5\.25:last-child{
    padding: 1.3125rem;
  }

  .s1920\:last\:py-0:last-child{
    padding-top: 0;
    padding-bottom: 0;
  }

  .s1920\:last\:px-0:last-child{
    padding-left: 0;
    padding-right: 0;
  }

  .s1920\:last\:py-1:last-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .s1920\:last\:px-1:last-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .s1920\:last\:py-2:last-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .s1920\:last\:px-2:last-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .s1920\:last\:py-3:last-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .s1920\:last\:px-3:last-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .s1920\:last\:py-4:last-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .s1920\:last\:px-4:last-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .s1920\:last\:py-5:last-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s1920\:last\:px-5:last-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s1920\:last\:py-6:last-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .s1920\:last\:px-6:last-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1920\:last\:py-8:last-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .s1920\:last\:px-8:last-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .s1920\:last\:py-9:last-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .s1920\:last\:px-9:last-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .s1920\:last\:py-10:last-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s1920\:last\:px-10:last-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .s1920\:last\:py-11:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:last\:px-11:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:last\:py-12:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .s1920\:last\:px-12:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .s1920\:last\:py-14:last-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .s1920\:last\:px-14:last-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .s1920\:last\:py-16:last-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .s1920\:last\:px-16:last-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .s1920\:last\:py-20:last-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s1920\:last\:px-20:last-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .s1920\:last\:py-24:last-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .s1920\:last\:px-24:last-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .s1920\:last\:py-32:last-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .s1920\:last\:px-32:last-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .s1920\:last\:py-40:last-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .s1920\:last\:px-40:last-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .s1920\:last\:py-48:last-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .s1920\:last\:px-48:last-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .s1920\:last\:py-56:last-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .s1920\:last\:px-56:last-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .s1920\:last\:py-64:last-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .s1920\:last\:px-64:last-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .s1920\:last\:py-px:last-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .s1920\:last\:px-px:last-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .s1920\:last\:py-0\.25:last-child{
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
  }

  .s1920\:last\:px-0\.25:last-child{
    padding-left: 0.0625rem;
    padding-right: 0.0625rem;
  }

  .s1920\:last\:py-1\.5:last-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .s1920\:last\:px-1\.5:last-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .s1920\:last\:py-2\.5:last-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s1920\:last\:px-2\.5:last-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s1920\:last\:py-3\.25:last-child{
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }

  .s1920\:last\:px-3\.25:last-child{
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }

  .s1920\:last\:py-3\.5:last-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .s1920\:last\:px-3\.5:last-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .s1920\:last\:py-5\.25:last-child{
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .s1920\:last\:px-5\.25:last-child{
    padding-left: 1.3125rem;
    padding-right: 1.3125rem;
  }

  .s1920\:last\:pt-0:last-child{
    padding-top: 0;
  }

  .s1920\:last\:pr-0:last-child{
    padding-right: 0;
  }

  .s1920\:last\:pb-0:last-child{
    padding-bottom: 0;
  }

  .s1920\:last\:pl-0:last-child{
    padding-left: 0;
  }

  .s1920\:last\:pt-1:last-child{
    padding-top: 0.25rem;
  }

  .s1920\:last\:pr-1:last-child{
    padding-right: 0.25rem;
  }

  .s1920\:last\:pb-1:last-child{
    padding-bottom: 0.25rem;
  }

  .s1920\:last\:pl-1:last-child{
    padding-left: 0.25rem;
  }

  .s1920\:last\:pt-2:last-child{
    padding-top: 0.5rem;
  }

  .s1920\:last\:pr-2:last-child{
    padding-right: 0.5rem;
  }

  .s1920\:last\:pb-2:last-child{
    padding-bottom: 0.5rem;
  }

  .s1920\:last\:pl-2:last-child{
    padding-left: 0.5rem;
  }

  .s1920\:last\:pt-3:last-child{
    padding-top: 0.75rem;
  }

  .s1920\:last\:pr-3:last-child{
    padding-right: 0.75rem;
  }

  .s1920\:last\:pb-3:last-child{
    padding-bottom: 0.75rem;
  }

  .s1920\:last\:pl-3:last-child{
    padding-left: 0.75rem;
  }

  .s1920\:last\:pt-4:last-child{
    padding-top: 1rem;
  }

  .s1920\:last\:pr-4:last-child{
    padding-right: 1rem;
  }

  .s1920\:last\:pb-4:last-child{
    padding-bottom: 1rem;
  }

  .s1920\:last\:pl-4:last-child{
    padding-left: 1rem;
  }

  .s1920\:last\:pt-5:last-child{
    padding-top: 1.25rem;
  }

  .s1920\:last\:pr-5:last-child{
    padding-right: 1.25rem;
  }

  .s1920\:last\:pb-5:last-child{
    padding-bottom: 1.25rem;
  }

  .s1920\:last\:pl-5:last-child{
    padding-left: 1.25rem;
  }

  .s1920\:last\:pt-6:last-child{
    padding-top: 1.5rem;
  }

  .s1920\:last\:pr-6:last-child{
    padding-right: 1.5rem;
  }

  .s1920\:last\:pb-6:last-child{
    padding-bottom: 1.5rem;
  }

  .s1920\:last\:pl-6:last-child{
    padding-left: 1.5rem;
  }

  .s1920\:last\:pt-8:last-child{
    padding-top: 2rem;
  }

  .s1920\:last\:pr-8:last-child{
    padding-right: 2rem;
  }

  .s1920\:last\:pb-8:last-child{
    padding-bottom: 2rem;
  }

  .s1920\:last\:pl-8:last-child{
    padding-left: 2rem;
  }

  .s1920\:last\:pt-9:last-child{
    padding-top: 2.25rem;
  }

  .s1920\:last\:pr-9:last-child{
    padding-right: 2.25rem;
  }

  .s1920\:last\:pb-9:last-child{
    padding-bottom: 2.25rem;
  }

  .s1920\:last\:pl-9:last-child{
    padding-left: 2.25rem;
  }

  .s1920\:last\:pt-10:last-child{
    padding-top: 2.5rem;
  }

  .s1920\:last\:pr-10:last-child{
    padding-right: 2.5rem;
  }

  .s1920\:last\:pb-10:last-child{
    padding-bottom: 2.5rem;
  }

  .s1920\:last\:pl-10:last-child{
    padding-left: 2.5rem;
  }

  .s1920\:last\:pt-11:last-child{
    padding-top: 3rem;
  }

  .s1920\:last\:pr-11:last-child{
    padding-right: 3rem;
  }

  .s1920\:last\:pb-11:last-child{
    padding-bottom: 3rem;
  }

  .s1920\:last\:pl-11:last-child{
    padding-left: 3rem;
  }

  .s1920\:last\:pt-12:last-child{
    padding-top: 3rem;
  }

  .s1920\:last\:pr-12:last-child{
    padding-right: 3rem;
  }

  .s1920\:last\:pb-12:last-child{
    padding-bottom: 3rem;
  }

  .s1920\:last\:pl-12:last-child{
    padding-left: 3rem;
  }

  .s1920\:last\:pt-14:last-child{
    padding-top: 3.5rem;
  }

  .s1920\:last\:pr-14:last-child{
    padding-right: 3.5rem;
  }

  .s1920\:last\:pb-14:last-child{
    padding-bottom: 3.5rem;
  }

  .s1920\:last\:pl-14:last-child{
    padding-left: 3.5rem;
  }

  .s1920\:last\:pt-16:last-child{
    padding-top: 4rem;
  }

  .s1920\:last\:pr-16:last-child{
    padding-right: 4rem;
  }

  .s1920\:last\:pb-16:last-child{
    padding-bottom: 4rem;
  }

  .s1920\:last\:pl-16:last-child{
    padding-left: 4rem;
  }

  .s1920\:last\:pt-20:last-child{
    padding-top: 5rem;
  }

  .s1920\:last\:pr-20:last-child{
    padding-right: 5rem;
  }

  .s1920\:last\:pb-20:last-child{
    padding-bottom: 5rem;
  }

  .s1920\:last\:pl-20:last-child{
    padding-left: 5rem;
  }

  .s1920\:last\:pt-24:last-child{
    padding-top: 6rem;
  }

  .s1920\:last\:pr-24:last-child{
    padding-right: 6rem;
  }

  .s1920\:last\:pb-24:last-child{
    padding-bottom: 6rem;
  }

  .s1920\:last\:pl-24:last-child{
    padding-left: 6rem;
  }

  .s1920\:last\:pt-32:last-child{
    padding-top: 8rem;
  }

  .s1920\:last\:pr-32:last-child{
    padding-right: 8rem;
  }

  .s1920\:last\:pb-32:last-child{
    padding-bottom: 8rem;
  }

  .s1920\:last\:pl-32:last-child{
    padding-left: 8rem;
  }

  .s1920\:last\:pt-40:last-child{
    padding-top: 10rem;
  }

  .s1920\:last\:pr-40:last-child{
    padding-right: 10rem;
  }

  .s1920\:last\:pb-40:last-child{
    padding-bottom: 10rem;
  }

  .s1920\:last\:pl-40:last-child{
    padding-left: 10rem;
  }

  .s1920\:last\:pt-48:last-child{
    padding-top: 12rem;
  }

  .s1920\:last\:pr-48:last-child{
    padding-right: 12rem;
  }

  .s1920\:last\:pb-48:last-child{
    padding-bottom: 12rem;
  }

  .s1920\:last\:pl-48:last-child{
    padding-left: 12rem;
  }

  .s1920\:last\:pt-56:last-child{
    padding-top: 14rem;
  }

  .s1920\:last\:pr-56:last-child{
    padding-right: 14rem;
  }

  .s1920\:last\:pb-56:last-child{
    padding-bottom: 14rem;
  }

  .s1920\:last\:pl-56:last-child{
    padding-left: 14rem;
  }

  .s1920\:last\:pt-64:last-child{
    padding-top: 16rem;
  }

  .s1920\:last\:pr-64:last-child{
    padding-right: 16rem;
  }

  .s1920\:last\:pb-64:last-child{
    padding-bottom: 16rem;
  }

  .s1920\:last\:pl-64:last-child{
    padding-left: 16rem;
  }

  .s1920\:last\:pt-px:last-child{
    padding-top: 1px;
  }

  .s1920\:last\:pr-px:last-child{
    padding-right: 1px;
  }

  .s1920\:last\:pb-px:last-child{
    padding-bottom: 1px;
  }

  .s1920\:last\:pl-px:last-child{
    padding-left: 1px;
  }

  .s1920\:last\:pt-0\.25:last-child{
    padding-top: 0.0625rem;
  }

  .s1920\:last\:pr-0\.25:last-child{
    padding-right: 0.0625rem;
  }

  .s1920\:last\:pb-0\.25:last-child{
    padding-bottom: 0.0625rem;
  }

  .s1920\:last\:pl-0\.25:last-child{
    padding-left: 0.0625rem;
  }

  .s1920\:last\:pt-1\.5:last-child{
    padding-top: 0.375rem;
  }

  .s1920\:last\:pr-1\.5:last-child{
    padding-right: 0.375rem;
  }

  .s1920\:last\:pb-1\.5:last-child{
    padding-bottom: 0.375rem;
  }

  .s1920\:last\:pl-1\.5:last-child{
    padding-left: 0.375rem;
  }

  .s1920\:last\:pt-2\.5:last-child{
    padding-top: 0.625rem;
  }

  .s1920\:last\:pr-2\.5:last-child{
    padding-right: 0.625rem;
  }

  .s1920\:last\:pb-2\.5:last-child{
    padding-bottom: 0.625rem;
  }

  .s1920\:last\:pl-2\.5:last-child{
    padding-left: 0.625rem;
  }

  .s1920\:last\:pt-3\.25:last-child{
    padding-top: 0.8125rem;
  }

  .s1920\:last\:pr-3\.25:last-child{
    padding-right: 0.8125rem;
  }

  .s1920\:last\:pb-3\.25:last-child{
    padding-bottom: 0.8125rem;
  }

  .s1920\:last\:pl-3\.25:last-child{
    padding-left: 0.8125rem;
  }

  .s1920\:last\:pt-3\.5:last-child{
    padding-top: 0.875rem;
  }

  .s1920\:last\:pr-3\.5:last-child{
    padding-right: 0.875rem;
  }

  .s1920\:last\:pb-3\.5:last-child{
    padding-bottom: 0.875rem;
  }

  .s1920\:last\:pl-3\.5:last-child{
    padding-left: 0.875rem;
  }

  .s1920\:last\:pt-5\.25:last-child{
    padding-top: 1.3125rem;
  }

  .s1920\:last\:pr-5\.25:last-child{
    padding-right: 1.3125rem;
  }

  .s1920\:last\:pb-5\.25:last-child{
    padding-bottom: 1.3125rem;
  }

  .s1920\:last\:pl-5\.25:last-child{
    padding-left: 1.3125rem;
  }

  .s1920\:placeholder-black::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:placeholder-black::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .s1920\:placeholder-transparent:-ms-input-placeholder{
    color: transparent;
  }

  .s1920\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .s1920\:placeholder-error::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:placeholder-error:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:placeholder-error::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:placeholder-success::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:placeholder-success:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:placeholder-success::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:placeholder-white-10::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:placeholder-white-10:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:placeholder-white-10::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:placeholder-white-20::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:placeholder-white-20:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:placeholder-white-20::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:placeholder-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:placeholder-white::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-very-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-very-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-very-light::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-light::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-dark::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-hocus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-hocus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-hocus::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-active::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-ml-plus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-ml-plus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-ml-plus::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-banner::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-banner:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:placeholder-cheeto-banner::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-1::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-1:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-1::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-10::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-10:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-10::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-20::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-20:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-20::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-30::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-30:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-30::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-40::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-40:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-40::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-50::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-50:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-50::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-60::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-60:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-60::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-70::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-70:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-70::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-80::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-80:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-80::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-90::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-90:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-90::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-100::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-100:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-100::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:placeholder-gracy-overlay-90::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:placeholder-gracy-overlay-90:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:placeholder-gracy-overlay-90::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:placeholder-login::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:placeholder-login:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:placeholder-login::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:placeholder-olive-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:placeholder-olive-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:placeholder-olive-light::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:placeholder-olive-drab::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:placeholder-olive-drab:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:placeholder-olive-drab::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:placeholder-olive-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:placeholder-olive-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:placeholder-olive-dark::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:placeholder-daisy-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:placeholder-daisy-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:placeholder-daisy-light::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-gumby::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-gumby:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-gumby::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-daisy::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-daisy:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-daisy::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-pokey::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-pokey:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-pokey::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-aster::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-aster:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-aster::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-aster-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-aster-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-aster-dark::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-roxo::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-roxo:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-roxo::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-error::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-error:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-error::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-success::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-success:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:placeholder-feedback-success::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-dark:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-dark::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-hocus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-hocus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-hocus::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-active::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-aoki-light::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-kermit::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-kermit:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:placeholder-functional-kermit::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:placeholder-mixlabPlus-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:placeholder-mixlabPlus-light:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:placeholder-mixlabPlus-light::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:placeholder-primary-orange-light::-moz-placeholder{
    color: ;
  }

  .s1920\:placeholder-primary-orange-light:-ms-input-placeholder{
    color: ;
  }

  .s1920\:placeholder-primary-orange-light::placeholder{
    color: ;
  }

  .s1920\:placeholder-off-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:placeholder-off-white:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:placeholder-off-white::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-black:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-black:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-black:hover::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-transparent:hover::-moz-placeholder{
    color: transparent;
  }

  .s1920\:hover\:placeholder-transparent:hover:-ms-input-placeholder{
    color: transparent;
  }

  .s1920\:hover\:placeholder-transparent:hover::placeholder{
    color: transparent;
  }

  .s1920\:hover\:placeholder-error:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-error:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-error:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-success:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-success:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-success:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-white-10:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-white-10:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-white-10:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-white-20:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-white-20:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-white-20:hover::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-white:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-white:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-white:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-very-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-very-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-very-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-hocus:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-hocus:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-hocus:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-active:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-active:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-active:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-ml-plus:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-ml-plus:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-ml-plus:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-banner:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-banner:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-cheeto-banner:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-1:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-1:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-1:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-10:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-10:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-10:hover::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-20:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-20:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-20:hover::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-30:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-30:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-30:hover::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-40:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-40:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-40:hover::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-50:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-50:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-50:hover::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-60:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-60:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-60:hover::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-70:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-70:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-70:hover::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-80:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-80:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-80:hover::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-90:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-90:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-90:hover::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-100:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-100:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-100:hover::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy:hover::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-gracy-overlay-90:hover::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:hover\:placeholder-gracy-overlay-90:hover:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:hover\:placeholder-gracy-overlay-90:hover::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:hover\:placeholder-login:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-login:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-login:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-olive-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-olive-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-olive-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-olive-drab:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-olive-drab:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-olive-drab:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-olive-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-olive-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-olive-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-daisy-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-daisy-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-daisy-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-gumby:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-gumby:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-gumby:hover::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-daisy:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-daisy:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-daisy:hover::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-pokey:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-pokey:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-pokey:hover::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-aster:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-aster:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-aster:hover::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-aster-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-aster-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-aster-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-roxo:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-roxo:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-roxo:hover::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-error:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-error:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-error:hover::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-success:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-success:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-feedback-success:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki:hover::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-dark:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-dark:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-dark:hover::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-hocus:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-hocus:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-hocus:hover::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-active:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-active:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-active:hover::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-aoki-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-kermit:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-kermit:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-functional-kermit:hover::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-mixlabPlus-light:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-mixlabPlus-light:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-mixlabPlus-light:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-primary-orange-light:hover::-moz-placeholder{
    color: ;
  }

  .s1920\:hover\:placeholder-primary-orange-light:hover:-ms-input-placeholder{
    color: ;
  }

  .s1920\:hover\:placeholder-primary-orange-light:hover::placeholder{
    color: ;
  }

  .s1920\:hover\:placeholder-off-white:hover::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-off-white:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:hover\:placeholder-off-white:hover::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-black:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .s1920\:focus\:placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent;
  }

  .s1920\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .s1920\:focus\:placeholder-error:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-error:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-error:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-success:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-success:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-success:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-white-10:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-white-10:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-white-10:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-white-20:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-white-20:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-white-20:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-white:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-very-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-very-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-very-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-hocus:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-hocus:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-hocus:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-active:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-ml-plus:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-ml-plus:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-ml-plus:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-banner:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-banner:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-cheeto-banner:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-1:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-1:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-1:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-10:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-10:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-10:focus::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-20:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-20:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-20:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-30:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-30:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-30:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-40:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-40:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-40:focus::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-50:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-50:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-50:focus::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-60:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-60:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-60:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-70:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-70:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-70:focus::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-80:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-80:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-80:focus::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-90:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-90:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-90:focus::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-100:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-100:focus::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy:focus::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-gracy-overlay-90:focus::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:focus\:placeholder-gracy-overlay-90:focus:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:focus\:placeholder-gracy-overlay-90:focus::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:focus\:placeholder-login:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-login:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-login:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-olive-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-olive-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-olive-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-olive-drab:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-olive-drab:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-olive-drab:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-olive-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-olive-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-olive-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-daisy-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-daisy-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-daisy-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-gumby:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-gumby:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-gumby:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-daisy:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-daisy:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-daisy:focus::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-pokey:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-pokey:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-pokey:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-aster:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-aster:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-aster:focus::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-aster-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-aster-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-aster-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-roxo:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-roxo:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-roxo:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-error:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-error:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-error:focus::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-success:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-success:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-feedback-success:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki:focus::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-dark:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-hocus:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-hocus:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-hocus:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-active:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-aoki-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-kermit:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-kermit:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-functional-kermit:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-mixlabPlus-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-mixlabPlus-light:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-mixlabPlus-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-primary-orange-light:focus::-moz-placeholder{
    color: ;
  }

  .s1920\:focus\:placeholder-primary-orange-light:focus:-ms-input-placeholder{
    color: ;
  }

  .s1920\:focus\:placeholder-primary-orange-light:focus::placeholder{
    color: ;
  }

  .s1920\:focus\:placeholder-off-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-off-white:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:focus\:placeholder-off-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-black:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-black:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-black:active::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-transparent:active::-moz-placeholder{
    color: transparent;
  }

  .s1920\:active\:placeholder-transparent:active:-ms-input-placeholder{
    color: transparent;
  }

  .s1920\:active\:placeholder-transparent:active::placeholder{
    color: transparent;
  }

  .s1920\:active\:placeholder-error:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-error:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-error:active::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-success:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-success:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-success:active::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-white-10:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-white-10:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-white-10:active::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-white-20:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-white-20:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-white-20:active::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-white:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-white:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-white:active::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto:active::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-very-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-very-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-very-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-hocus:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-hocus:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-hocus:active::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-active:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-active:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-active:active::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-ml-plus:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-ml-plus:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-ml-plus:active::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-banner:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-banner:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-cheeto-banner:active::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-1:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-1:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-1:active::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-10:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-10:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-10:active::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-20:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-20:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-20:active::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-30:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-30:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-30:active::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-40:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-40:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-40:active::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-50:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-50:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-50:active::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-60:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-60:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-60:active::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-70:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-70:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-70:active::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-80:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-80:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-80:active::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-90:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-90:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-90:active::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-100:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-100:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-100:active::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy:active::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-gracy-overlay-90:active::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:active\:placeholder-gracy-overlay-90:active:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:active\:placeholder-gracy-overlay-90:active::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:active\:placeholder-login:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-login:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-login:active::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-olive-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-olive-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-olive-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-olive-drab:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-olive-drab:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-olive-drab:active::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-olive-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-olive-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-olive-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-daisy-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-daisy-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-daisy-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-gumby:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-gumby:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-gumby:active::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-daisy:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-daisy:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-daisy:active::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-pokey:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-pokey:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-pokey:active::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-aster:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-aster:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-aster:active::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-aster-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-aster-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-aster-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-roxo:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-roxo:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-roxo:active::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-error:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-error:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-error:active::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-success:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-success:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-feedback-success:active::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki:active::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-dark:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-dark:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-dark:active::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-hocus:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-hocus:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-hocus:active::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-active:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-active:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-active:active::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-aoki-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-kermit:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-kermit:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-functional-kermit:active::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-mixlabPlus-light:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-mixlabPlus-light:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-mixlabPlus-light:active::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-primary-orange-light:active::-moz-placeholder{
    color: ;
  }

  .s1920\:active\:placeholder-primary-orange-light:active:-ms-input-placeholder{
    color: ;
  }

  .s1920\:active\:placeholder-primary-orange-light:active::placeholder{
    color: ;
  }

  .s1920\:active\:placeholder-off-white:active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-off-white:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:active\:placeholder-off-white:active::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-black:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-black:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-black:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-transparent:first-child::-moz-placeholder{
    color: transparent;
  }

  .s1920\:first\:placeholder-transparent:first-child:-ms-input-placeholder{
    color: transparent;
  }

  .s1920\:first\:placeholder-transparent:first-child::placeholder{
    color: transparent;
  }

  .s1920\:first\:placeholder-error:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-error:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-error:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-success:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-success:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-success:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-white-10:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-white-10:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-white-10:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-white-20:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-white-20:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-white-20:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-white:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-white:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-white:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-very-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-very-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-very-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-hocus:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-hocus:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-hocus:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-active:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-active:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-active:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-ml-plus:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-ml-plus:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-ml-plus:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-banner:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-banner:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-cheeto-banner:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-1:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-1:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-1:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-10:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-10:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-10:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-20:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-20:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-20:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-30:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-30:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-30:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-40:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-40:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-40:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-50:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-50:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-50:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-60:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-60:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-60:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-70:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-70:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-70:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-80:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-80:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-80:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-90:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-90:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-90:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-100:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-100:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-100:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-gracy-overlay-90:first-child::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:first\:placeholder-gracy-overlay-90:first-child:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:first\:placeholder-gracy-overlay-90:first-child::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:first\:placeholder-login:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-login:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-login:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-olive-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-olive-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-olive-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-olive-drab:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-olive-drab:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-olive-drab:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-olive-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-olive-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-olive-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-daisy-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-daisy-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-daisy-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-gumby:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-gumby:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-gumby:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-daisy:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-daisy:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-daisy:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-pokey:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-pokey:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-pokey:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-aster:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-aster:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-aster:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-aster-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-aster-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-aster-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-roxo:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-roxo:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-roxo:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-error:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-error:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-error:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-success:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-success:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-feedback-success:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-dark:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-dark:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-dark:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-hocus:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-hocus:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-hocus:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-active:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-active:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-active:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-aoki-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-kermit:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-kermit:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-functional-kermit:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-mixlabPlus-light:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-mixlabPlus-light:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-mixlabPlus-light:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-primary-orange-light:first-child::-moz-placeholder{
    color: ;
  }

  .s1920\:first\:placeholder-primary-orange-light:first-child:-ms-input-placeholder{
    color: ;
  }

  .s1920\:first\:placeholder-primary-orange-light:first-child::placeholder{
    color: ;
  }

  .s1920\:first\:placeholder-off-white:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-off-white:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:first\:placeholder-off-white:first-child::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-black:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-black:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-black:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-transparent:last-child::-moz-placeholder{
    color: transparent;
  }

  .s1920\:last\:placeholder-transparent:last-child:-ms-input-placeholder{
    color: transparent;
  }

  .s1920\:last\:placeholder-transparent:last-child::placeholder{
    color: transparent;
  }

  .s1920\:last\:placeholder-error:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-error:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-error:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-success:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-success:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-success:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-white-10:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-white-10:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-white-10:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-white-20:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-white-20:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-white-20:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-white:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-white:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-white:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-very-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-very-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-very-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-hocus:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-hocus:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-hocus:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-active:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-active:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-active:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-ml-plus:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-ml-plus:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-ml-plus:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-banner:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-banner:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-cheeto-banner:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-1:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-1:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-1:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-10:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-10:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-10:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-20:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-20:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-20:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-30:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-30:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-30:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-40:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-40:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-40:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-50:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-50:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-50:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-60:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-60:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-60:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-70:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-70:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-70:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-80:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-80:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-80:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-90:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-90:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-90:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-100:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-100:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-100:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-gracy-overlay-90:last-child::-moz-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:last\:placeholder-gracy-overlay-90:last-child:-ms-input-placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:last\:placeholder-gracy-overlay-90:last-child::placeholder{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:last\:placeholder-login:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-login:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-login:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-olive-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-olive-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-olive-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-olive-drab:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-olive-drab:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-olive-drab:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-olive-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-olive-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-olive-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-daisy-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-daisy-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-daisy-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-gumby:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-gumby:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-gumby:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-daisy:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-daisy:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-daisy:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-pokey:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-pokey:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-pokey:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-aster:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-aster:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-aster:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-aster-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-aster-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-aster-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-roxo:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-roxo:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-roxo:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-error:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-error:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-error:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-success:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-success:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-feedback-success:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-dark:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-dark:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-dark:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-hocus:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-hocus:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-hocus:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-active:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-active:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-active:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-aoki-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-kermit:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-kermit:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-functional-kermit:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-mixlabPlus-light:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-mixlabPlus-light:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-mixlabPlus-light:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-primary-orange-light:last-child::-moz-placeholder{
    color: ;
  }

  .s1920\:last\:placeholder-primary-orange-light:last-child:-ms-input-placeholder{
    color: ;
  }

  .s1920\:last\:placeholder-primary-orange-light:last-child::placeholder{
    color: ;
  }

  .s1920\:last\:placeholder-off-white:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-off-white:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:last\:placeholder-off-white:last-child::placeholder{
    --placeholder-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--placeholder-opacity));
  }

  .s1920\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:placeholder-opacity-0::placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:placeholder-opacity-25::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:placeholder-opacity-50::placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:placeholder-opacity-75::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:placeholder-opacity-80::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:placeholder-opacity-80:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:placeholder-opacity-80::placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:placeholder-opacity-100::placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:hover\:placeholder-opacity-0:hover::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:hover\:placeholder-opacity-0:hover:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:hover\:placeholder-opacity-0:hover::placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:hover\:placeholder-opacity-25:hover::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:hover\:placeholder-opacity-25:hover:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:hover\:placeholder-opacity-25:hover::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:hover\:placeholder-opacity-50:hover::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:hover\:placeholder-opacity-50:hover:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:hover\:placeholder-opacity-50:hover::placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:hover\:placeholder-opacity-75:hover::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:hover\:placeholder-opacity-75:hover:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:hover\:placeholder-opacity-75:hover::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:hover\:placeholder-opacity-80:hover::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:hover\:placeholder-opacity-80:hover:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:hover\:placeholder-opacity-80:hover::placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:hover\:placeholder-opacity-100:hover::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:hover\:placeholder-opacity-100:hover:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:hover\:placeholder-opacity-100:hover::placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:focus\:placeholder-opacity-80:focus::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:focus\:placeholder-opacity-80:focus::placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:active\:placeholder-opacity-0:active::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:active\:placeholder-opacity-0:active:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:active\:placeholder-opacity-0:active::placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:active\:placeholder-opacity-25:active::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:active\:placeholder-opacity-25:active:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:active\:placeholder-opacity-25:active::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:active\:placeholder-opacity-50:active::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:active\:placeholder-opacity-50:active:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:active\:placeholder-opacity-50:active::placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:active\:placeholder-opacity-75:active::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:active\:placeholder-opacity-75:active:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:active\:placeholder-opacity-75:active::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:active\:placeholder-opacity-80:active::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:active\:placeholder-opacity-80:active:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:active\:placeholder-opacity-80:active::placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:active\:placeholder-opacity-100:active::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:active\:placeholder-opacity-100:active:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:active\:placeholder-opacity-100:active::placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:first\:placeholder-opacity-0:first-child::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:first\:placeholder-opacity-0:first-child:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:first\:placeholder-opacity-0:first-child::placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:first\:placeholder-opacity-25:first-child::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:first\:placeholder-opacity-25:first-child:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:first\:placeholder-opacity-25:first-child::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:first\:placeholder-opacity-50:first-child::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:first\:placeholder-opacity-50:first-child:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:first\:placeholder-opacity-50:first-child::placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:first\:placeholder-opacity-75:first-child::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:first\:placeholder-opacity-75:first-child:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:first\:placeholder-opacity-75:first-child::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:first\:placeholder-opacity-80:first-child::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:first\:placeholder-opacity-80:first-child:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:first\:placeholder-opacity-80:first-child::placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:first\:placeholder-opacity-100:first-child::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:first\:placeholder-opacity-100:first-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:first\:placeholder-opacity-100:first-child::placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:last\:placeholder-opacity-0:last-child::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:last\:placeholder-opacity-0:last-child:-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:last\:placeholder-opacity-0:last-child::placeholder{
    --placeholder-opacity: 0;
  }

  .s1920\:last\:placeholder-opacity-25:last-child::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:last\:placeholder-opacity-25:last-child:-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:last\:placeholder-opacity-25:last-child::placeholder{
    --placeholder-opacity: 0.25;
  }

  .s1920\:last\:placeholder-opacity-50:last-child::-moz-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:last\:placeholder-opacity-50:last-child:-ms-input-placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:last\:placeholder-opacity-50:last-child::placeholder{
    --placeholder-opacity: .5;
  }

  .s1920\:last\:placeholder-opacity-75:last-child::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:last\:placeholder-opacity-75:last-child:-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:last\:placeholder-opacity-75:last-child::placeholder{
    --placeholder-opacity: 0.75;
  }

  .s1920\:last\:placeholder-opacity-80:last-child::-moz-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:last\:placeholder-opacity-80:last-child:-ms-input-placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:last\:placeholder-opacity-80:last-child::placeholder{
    --placeholder-opacity: .8;
  }

  .s1920\:last\:placeholder-opacity-100:last-child::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:last\:placeholder-opacity-100:last-child:-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:last\:placeholder-opacity-100:last-child::placeholder{
    --placeholder-opacity: 1;
  }

  .s1920\:pointer-events-none{
    pointer-events: none;
  }

  .s1920\:pointer-events-auto{
    pointer-events: auto;
  }

  .s1920\:hover\:pointer-events-none:hover{
    pointer-events: none;
  }

  .s1920\:hover\:pointer-events-auto:hover{
    pointer-events: auto;
  }

  .s1920\:focus\:pointer-events-none:focus{
    pointer-events: none;
  }

  .s1920\:focus\:pointer-events-auto:focus{
    pointer-events: auto;
  }

  .s1920\:active\:pointer-events-none:active{
    pointer-events: none;
  }

  .s1920\:active\:pointer-events-auto:active{
    pointer-events: auto;
  }

  .s1920\:first\:pointer-events-none:first-child{
    pointer-events: none;
  }

  .s1920\:first\:pointer-events-auto:first-child{
    pointer-events: auto;
  }

  .s1920\:last\:pointer-events-none:last-child{
    pointer-events: none;
  }

  .s1920\:last\:pointer-events-auto:last-child{
    pointer-events: auto;
  }

  .s1920\:static{
    position: static;
  }

  .s1920\:fixed{
    position: fixed;
  }

  .s1920\:absolute{
    position: absolute;
  }

  .s1920\:relative{
    position: relative;
  }

  .s1920\:sticky{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1920\:hover\:static:hover{
    position: static;
  }

  .s1920\:hover\:fixed:hover{
    position: fixed;
  }

  .s1920\:hover\:absolute:hover{
    position: absolute;
  }

  .s1920\:hover\:relative:hover{
    position: relative;
  }

  .s1920\:hover\:sticky:hover{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1920\:focus\:static:focus{
    position: static;
  }

  .s1920\:focus\:fixed:focus{
    position: fixed;
  }

  .s1920\:focus\:absolute:focus{
    position: absolute;
  }

  .s1920\:focus\:relative:focus{
    position: relative;
  }

  .s1920\:focus\:sticky:focus{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1920\:active\:static:active{
    position: static;
  }

  .s1920\:active\:fixed:active{
    position: fixed;
  }

  .s1920\:active\:absolute:active{
    position: absolute;
  }

  .s1920\:active\:relative:active{
    position: relative;
  }

  .s1920\:active\:sticky:active{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1920\:first\:static:first-child{
    position: static;
  }

  .s1920\:first\:fixed:first-child{
    position: fixed;
  }

  .s1920\:first\:absolute:first-child{
    position: absolute;
  }

  .s1920\:first\:relative:first-child{
    position: relative;
  }

  .s1920\:first\:sticky:first-child{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1920\:last\:static:last-child{
    position: static;
  }

  .s1920\:last\:fixed:last-child{
    position: fixed;
  }

  .s1920\:last\:absolute:last-child{
    position: absolute;
  }

  .s1920\:last\:relative:last-child{
    position: relative;
  }

  .s1920\:last\:sticky:last-child{
    position: -webkit-sticky;
    position: sticky;
  }

  .s1920\:inset-0{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1920\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1920\:inset-1\/2{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1920\:inset-header{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1920\:inset-y-0{
    top: 0;
    bottom: 0;
  }

  .s1920\:inset-x-0{
    right: 0;
    left: 0;
  }

  .s1920\:inset-y-auto{
    top: auto;
    bottom: auto;
  }

  .s1920\:inset-x-auto{
    right: auto;
    left: auto;
  }

  .s1920\:inset-y-1\/2{
    top: 50%;
    bottom: 50%;
  }

  .s1920\:inset-x-1\/2{
    right: 50%;
    left: 50%;
  }

  .s1920\:inset-y-header{
    top: 5rem;
    bottom: 5rem;
  }

  .s1920\:inset-x-header{
    right: 5rem;
    left: 5rem;
  }

  .s1920\:top-0{
    top: 0;
  }

  .s1920\:right-0{
    right: 0;
  }

  .s1920\:bottom-0{
    bottom: 0;
  }

  .s1920\:left-0{
    left: 0;
  }

  .s1920\:top-auto{
    top: auto;
  }

  .s1920\:right-auto{
    right: auto;
  }

  .s1920\:bottom-auto{
    bottom: auto;
  }

  .s1920\:left-auto{
    left: auto;
  }

  .s1920\:top-1\/2{
    top: 50%;
  }

  .s1920\:right-1\/2{
    right: 50%;
  }

  .s1920\:bottom-1\/2{
    bottom: 50%;
  }

  .s1920\:left-1\/2{
    left: 50%;
  }

  .s1920\:top-header{
    top: 5rem;
  }

  .s1920\:right-header{
    right: 5rem;
  }

  .s1920\:bottom-header{
    bottom: 5rem;
  }

  .s1920\:left-header{
    left: 5rem;
  }

  .s1920\:hover\:inset-0:hover{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1920\:hover\:inset-auto:hover{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1920\:hover\:inset-1\/2:hover{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1920\:hover\:inset-header:hover{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1920\:hover\:inset-y-0:hover{
    top: 0;
    bottom: 0;
  }

  .s1920\:hover\:inset-x-0:hover{
    right: 0;
    left: 0;
  }

  .s1920\:hover\:inset-y-auto:hover{
    top: auto;
    bottom: auto;
  }

  .s1920\:hover\:inset-x-auto:hover{
    right: auto;
    left: auto;
  }

  .s1920\:hover\:inset-y-1\/2:hover{
    top: 50%;
    bottom: 50%;
  }

  .s1920\:hover\:inset-x-1\/2:hover{
    right: 50%;
    left: 50%;
  }

  .s1920\:hover\:inset-y-header:hover{
    top: 5rem;
    bottom: 5rem;
  }

  .s1920\:hover\:inset-x-header:hover{
    right: 5rem;
    left: 5rem;
  }

  .s1920\:hover\:top-0:hover{
    top: 0;
  }

  .s1920\:hover\:right-0:hover{
    right: 0;
  }

  .s1920\:hover\:bottom-0:hover{
    bottom: 0;
  }

  .s1920\:hover\:left-0:hover{
    left: 0;
  }

  .s1920\:hover\:top-auto:hover{
    top: auto;
  }

  .s1920\:hover\:right-auto:hover{
    right: auto;
  }

  .s1920\:hover\:bottom-auto:hover{
    bottom: auto;
  }

  .s1920\:hover\:left-auto:hover{
    left: auto;
  }

  .s1920\:hover\:top-1\/2:hover{
    top: 50%;
  }

  .s1920\:hover\:right-1\/2:hover{
    right: 50%;
  }

  .s1920\:hover\:bottom-1\/2:hover{
    bottom: 50%;
  }

  .s1920\:hover\:left-1\/2:hover{
    left: 50%;
  }

  .s1920\:hover\:top-header:hover{
    top: 5rem;
  }

  .s1920\:hover\:right-header:hover{
    right: 5rem;
  }

  .s1920\:hover\:bottom-header:hover{
    bottom: 5rem;
  }

  .s1920\:hover\:left-header:hover{
    left: 5rem;
  }

  .s1920\:focus\:inset-0:focus{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1920\:focus\:inset-auto:focus{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1920\:focus\:inset-1\/2:focus{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1920\:focus\:inset-header:focus{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1920\:focus\:inset-y-0:focus{
    top: 0;
    bottom: 0;
  }

  .s1920\:focus\:inset-x-0:focus{
    right: 0;
    left: 0;
  }

  .s1920\:focus\:inset-y-auto:focus{
    top: auto;
    bottom: auto;
  }

  .s1920\:focus\:inset-x-auto:focus{
    right: auto;
    left: auto;
  }

  .s1920\:focus\:inset-y-1\/2:focus{
    top: 50%;
    bottom: 50%;
  }

  .s1920\:focus\:inset-x-1\/2:focus{
    right: 50%;
    left: 50%;
  }

  .s1920\:focus\:inset-y-header:focus{
    top: 5rem;
    bottom: 5rem;
  }

  .s1920\:focus\:inset-x-header:focus{
    right: 5rem;
    left: 5rem;
  }

  .s1920\:focus\:top-0:focus{
    top: 0;
  }

  .s1920\:focus\:right-0:focus{
    right: 0;
  }

  .s1920\:focus\:bottom-0:focus{
    bottom: 0;
  }

  .s1920\:focus\:left-0:focus{
    left: 0;
  }

  .s1920\:focus\:top-auto:focus{
    top: auto;
  }

  .s1920\:focus\:right-auto:focus{
    right: auto;
  }

  .s1920\:focus\:bottom-auto:focus{
    bottom: auto;
  }

  .s1920\:focus\:left-auto:focus{
    left: auto;
  }

  .s1920\:focus\:top-1\/2:focus{
    top: 50%;
  }

  .s1920\:focus\:right-1\/2:focus{
    right: 50%;
  }

  .s1920\:focus\:bottom-1\/2:focus{
    bottom: 50%;
  }

  .s1920\:focus\:left-1\/2:focus{
    left: 50%;
  }

  .s1920\:focus\:top-header:focus{
    top: 5rem;
  }

  .s1920\:focus\:right-header:focus{
    right: 5rem;
  }

  .s1920\:focus\:bottom-header:focus{
    bottom: 5rem;
  }

  .s1920\:focus\:left-header:focus{
    left: 5rem;
  }

  .s1920\:active\:inset-0:active{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1920\:active\:inset-auto:active{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1920\:active\:inset-1\/2:active{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1920\:active\:inset-header:active{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1920\:active\:inset-y-0:active{
    top: 0;
    bottom: 0;
  }

  .s1920\:active\:inset-x-0:active{
    right: 0;
    left: 0;
  }

  .s1920\:active\:inset-y-auto:active{
    top: auto;
    bottom: auto;
  }

  .s1920\:active\:inset-x-auto:active{
    right: auto;
    left: auto;
  }

  .s1920\:active\:inset-y-1\/2:active{
    top: 50%;
    bottom: 50%;
  }

  .s1920\:active\:inset-x-1\/2:active{
    right: 50%;
    left: 50%;
  }

  .s1920\:active\:inset-y-header:active{
    top: 5rem;
    bottom: 5rem;
  }

  .s1920\:active\:inset-x-header:active{
    right: 5rem;
    left: 5rem;
  }

  .s1920\:active\:top-0:active{
    top: 0;
  }

  .s1920\:active\:right-0:active{
    right: 0;
  }

  .s1920\:active\:bottom-0:active{
    bottom: 0;
  }

  .s1920\:active\:left-0:active{
    left: 0;
  }

  .s1920\:active\:top-auto:active{
    top: auto;
  }

  .s1920\:active\:right-auto:active{
    right: auto;
  }

  .s1920\:active\:bottom-auto:active{
    bottom: auto;
  }

  .s1920\:active\:left-auto:active{
    left: auto;
  }

  .s1920\:active\:top-1\/2:active{
    top: 50%;
  }

  .s1920\:active\:right-1\/2:active{
    right: 50%;
  }

  .s1920\:active\:bottom-1\/2:active{
    bottom: 50%;
  }

  .s1920\:active\:left-1\/2:active{
    left: 50%;
  }

  .s1920\:active\:top-header:active{
    top: 5rem;
  }

  .s1920\:active\:right-header:active{
    right: 5rem;
  }

  .s1920\:active\:bottom-header:active{
    bottom: 5rem;
  }

  .s1920\:active\:left-header:active{
    left: 5rem;
  }

  .s1920\:first\:inset-0:first-child{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1920\:first\:inset-auto:first-child{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1920\:first\:inset-1\/2:first-child{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1920\:first\:inset-header:first-child{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1920\:first\:inset-y-0:first-child{
    top: 0;
    bottom: 0;
  }

  .s1920\:first\:inset-x-0:first-child{
    right: 0;
    left: 0;
  }

  .s1920\:first\:inset-y-auto:first-child{
    top: auto;
    bottom: auto;
  }

  .s1920\:first\:inset-x-auto:first-child{
    right: auto;
    left: auto;
  }

  .s1920\:first\:inset-y-1\/2:first-child{
    top: 50%;
    bottom: 50%;
  }

  .s1920\:first\:inset-x-1\/2:first-child{
    right: 50%;
    left: 50%;
  }

  .s1920\:first\:inset-y-header:first-child{
    top: 5rem;
    bottom: 5rem;
  }

  .s1920\:first\:inset-x-header:first-child{
    right: 5rem;
    left: 5rem;
  }

  .s1920\:first\:top-0:first-child{
    top: 0;
  }

  .s1920\:first\:right-0:first-child{
    right: 0;
  }

  .s1920\:first\:bottom-0:first-child{
    bottom: 0;
  }

  .s1920\:first\:left-0:first-child{
    left: 0;
  }

  .s1920\:first\:top-auto:first-child{
    top: auto;
  }

  .s1920\:first\:right-auto:first-child{
    right: auto;
  }

  .s1920\:first\:bottom-auto:first-child{
    bottom: auto;
  }

  .s1920\:first\:left-auto:first-child{
    left: auto;
  }

  .s1920\:first\:top-1\/2:first-child{
    top: 50%;
  }

  .s1920\:first\:right-1\/2:first-child{
    right: 50%;
  }

  .s1920\:first\:bottom-1\/2:first-child{
    bottom: 50%;
  }

  .s1920\:first\:left-1\/2:first-child{
    left: 50%;
  }

  .s1920\:first\:top-header:first-child{
    top: 5rem;
  }

  .s1920\:first\:right-header:first-child{
    right: 5rem;
  }

  .s1920\:first\:bottom-header:first-child{
    bottom: 5rem;
  }

  .s1920\:first\:left-header:first-child{
    left: 5rem;
  }

  .s1920\:last\:inset-0:last-child{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .s1920\:last\:inset-auto:last-child{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .s1920\:last\:inset-1\/2:last-child{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .s1920\:last\:inset-header:last-child{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .s1920\:last\:inset-y-0:last-child{
    top: 0;
    bottom: 0;
  }

  .s1920\:last\:inset-x-0:last-child{
    right: 0;
    left: 0;
  }

  .s1920\:last\:inset-y-auto:last-child{
    top: auto;
    bottom: auto;
  }

  .s1920\:last\:inset-x-auto:last-child{
    right: auto;
    left: auto;
  }

  .s1920\:last\:inset-y-1\/2:last-child{
    top: 50%;
    bottom: 50%;
  }

  .s1920\:last\:inset-x-1\/2:last-child{
    right: 50%;
    left: 50%;
  }

  .s1920\:last\:inset-y-header:last-child{
    top: 5rem;
    bottom: 5rem;
  }

  .s1920\:last\:inset-x-header:last-child{
    right: 5rem;
    left: 5rem;
  }

  .s1920\:last\:top-0:last-child{
    top: 0;
  }

  .s1920\:last\:right-0:last-child{
    right: 0;
  }

  .s1920\:last\:bottom-0:last-child{
    bottom: 0;
  }

  .s1920\:last\:left-0:last-child{
    left: 0;
  }

  .s1920\:last\:top-auto:last-child{
    top: auto;
  }

  .s1920\:last\:right-auto:last-child{
    right: auto;
  }

  .s1920\:last\:bottom-auto:last-child{
    bottom: auto;
  }

  .s1920\:last\:left-auto:last-child{
    left: auto;
  }

  .s1920\:last\:top-1\/2:last-child{
    top: 50%;
  }

  .s1920\:last\:right-1\/2:last-child{
    right: 50%;
  }

  .s1920\:last\:bottom-1\/2:last-child{
    bottom: 50%;
  }

  .s1920\:last\:left-1\/2:last-child{
    left: 50%;
  }

  .s1920\:last\:top-header:last-child{
    top: 5rem;
  }

  .s1920\:last\:right-header:last-child{
    right: 5rem;
  }

  .s1920\:last\:bottom-header:last-child{
    bottom: 5rem;
  }

  .s1920\:last\:left-header:last-child{
    left: 5rem;
  }

  .s1920\:resize-none{
    resize: none;
  }

  .s1920\:resize-y{
    resize: vertical;
  }

  .s1920\:resize-x{
    resize: horizontal;
  }

  .s1920\:resize{
    resize: both;
  }

  .s1920\:hover\:resize-none:hover{
    resize: none;
  }

  .s1920\:hover\:resize-y:hover{
    resize: vertical;
  }

  .s1920\:hover\:resize-x:hover{
    resize: horizontal;
  }

  .s1920\:hover\:resize:hover{
    resize: both;
  }

  .s1920\:focus\:resize-none:focus{
    resize: none;
  }

  .s1920\:focus\:resize-y:focus{
    resize: vertical;
  }

  .s1920\:focus\:resize-x:focus{
    resize: horizontal;
  }

  .s1920\:focus\:resize:focus{
    resize: both;
  }

  .s1920\:active\:resize-none:active{
    resize: none;
  }

  .s1920\:active\:resize-y:active{
    resize: vertical;
  }

  .s1920\:active\:resize-x:active{
    resize: horizontal;
  }

  .s1920\:active\:resize:active{
    resize: both;
  }

  .s1920\:first\:resize-none:first-child{
    resize: none;
  }

  .s1920\:first\:resize-y:first-child{
    resize: vertical;
  }

  .s1920\:first\:resize-x:first-child{
    resize: horizontal;
  }

  .s1920\:first\:resize:first-child{
    resize: both;
  }

  .s1920\:last\:resize-none:last-child{
    resize: none;
  }

  .s1920\:last\:resize-y:last-child{
    resize: vertical;
  }

  .s1920\:last\:resize-x:last-child{
    resize: horizontal;
  }

  .s1920\:last\:resize:last-child{
    resize: both;
  }

  .s1920\:shadow-xs{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1920\:shadow-sm{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1920\:shadow{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:shadow-md{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1920\:shadow-lg{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1920\:shadow-xl{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1920\:shadow-2xl{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1920\:shadow-inner{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:shadow-outline{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1920\:shadow-none{
    box-shadow: none;
  }

  .s1920\:shadow-upper{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1920\:hover\:shadow-xs:hover{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1920\:hover\:shadow-sm:hover{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1920\:hover\:shadow:hover{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:hover\:shadow-md:hover{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1920\:hover\:shadow-lg:hover{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1920\:hover\:shadow-xl:hover{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1920\:hover\:shadow-2xl:hover{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1920\:hover\:shadow-inner:hover{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:hover\:shadow-outline:hover{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1920\:hover\:shadow-none:hover{
    box-shadow: none;
  }

  .s1920\:hover\:shadow-upper:hover{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1920\:focus\:shadow-xs:focus{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1920\:focus\:shadow-sm:focus{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1920\:focus\:shadow:focus{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:focus\:shadow-md:focus{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1920\:focus\:shadow-lg:focus{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1920\:focus\:shadow-xl:focus{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1920\:focus\:shadow-2xl:focus{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1920\:focus\:shadow-inner:focus{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:focus\:shadow-outline:focus{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1920\:focus\:shadow-none:focus{
    box-shadow: none;
  }

  .s1920\:focus\:shadow-upper:focus{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1920\:active\:shadow-xs:active{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1920\:active\:shadow-sm:active{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1920\:active\:shadow:active{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:active\:shadow-md:active{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1920\:active\:shadow-lg:active{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1920\:active\:shadow-xl:active{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1920\:active\:shadow-2xl:active{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1920\:active\:shadow-inner:active{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:active\:shadow-outline:active{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1920\:active\:shadow-none:active{
    box-shadow: none;
  }

  .s1920\:active\:shadow-upper:active{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1920\:first\:shadow-xs:first-child{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1920\:first\:shadow-sm:first-child{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1920\:first\:shadow:first-child{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:first\:shadow-md:first-child{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1920\:first\:shadow-lg:first-child{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1920\:first\:shadow-xl:first-child{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1920\:first\:shadow-2xl:first-child{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1920\:first\:shadow-inner:first-child{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:first\:shadow-outline:first-child{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1920\:first\:shadow-none:first-child{
    box-shadow: none;
  }

  .s1920\:first\:shadow-upper:first-child{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1920\:last\:shadow-xs:last-child{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  }

  .s1920\:last\:shadow-sm:last-child{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .s1920\:last\:shadow:last-child{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:last\:shadow-md:last-child{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .s1920\:last\:shadow-lg:last-child{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .s1920\:last\:shadow-xl:last-child{
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .s1920\:last\:shadow-2xl:last-child{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .s1920\:last\:shadow-inner:last-child{
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .s1920\:last\:shadow-outline:last-child{
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  }

  .s1920\:last\:shadow-none:last-child{
    box-shadow: none;
  }

  .s1920\:last\:shadow-upper:last-child{
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.12);
  }

  .s1920\:fill-current{
    fill: currentColor;
  }

  .s1920\:hover\:fill-current:hover{
    fill: currentColor;
  }

  .s1920\:focus\:fill-current:focus{
    fill: currentColor;
  }

  .s1920\:active\:fill-current:active{
    fill: currentColor;
  }

  .s1920\:first\:fill-current:first-child{
    fill: currentColor;
  }

  .s1920\:last\:fill-current:last-child{
    fill: currentColor;
  }

  .s1920\:stroke-current{
    stroke: currentColor;
  }

  .s1920\:hover\:stroke-current:hover{
    stroke: currentColor;
  }

  .s1920\:focus\:stroke-current:focus{
    stroke: currentColor;
  }

  .s1920\:active\:stroke-current:active{
    stroke: currentColor;
  }

  .s1920\:first\:stroke-current:first-child{
    stroke: currentColor;
  }

  .s1920\:last\:stroke-current:last-child{
    stroke: currentColor;
  }

  .s1920\:stroke-0{
    stroke-width: 0;
  }

  .s1920\:stroke-1{
    stroke-width: 1;
  }

  .s1920\:stroke-2{
    stroke-width: 2;
  }

  .s1920\:hover\:stroke-0:hover{
    stroke-width: 0;
  }

  .s1920\:hover\:stroke-1:hover{
    stroke-width: 1;
  }

  .s1920\:hover\:stroke-2:hover{
    stroke-width: 2;
  }

  .s1920\:focus\:stroke-0:focus{
    stroke-width: 0;
  }

  .s1920\:focus\:stroke-1:focus{
    stroke-width: 1;
  }

  .s1920\:focus\:stroke-2:focus{
    stroke-width: 2;
  }

  .s1920\:active\:stroke-0:active{
    stroke-width: 0;
  }

  .s1920\:active\:stroke-1:active{
    stroke-width: 1;
  }

  .s1920\:active\:stroke-2:active{
    stroke-width: 2;
  }

  .s1920\:first\:stroke-0:first-child{
    stroke-width: 0;
  }

  .s1920\:first\:stroke-1:first-child{
    stroke-width: 1;
  }

  .s1920\:first\:stroke-2:first-child{
    stroke-width: 2;
  }

  .s1920\:last\:stroke-0:last-child{
    stroke-width: 0;
  }

  .s1920\:last\:stroke-1:last-child{
    stroke-width: 1;
  }

  .s1920\:last\:stroke-2:last-child{
    stroke-width: 2;
  }

  .s1920\:table-auto{
    table-layout: auto;
  }

  .s1920\:table-fixed{
    table-layout: fixed;
  }

  .s1920\:hover\:table-auto:hover{
    table-layout: auto;
  }

  .s1920\:hover\:table-fixed:hover{
    table-layout: fixed;
  }

  .s1920\:focus\:table-auto:focus{
    table-layout: auto;
  }

  .s1920\:focus\:table-fixed:focus{
    table-layout: fixed;
  }

  .s1920\:active\:table-auto:active{
    table-layout: auto;
  }

  .s1920\:active\:table-fixed:active{
    table-layout: fixed;
  }

  .s1920\:first\:table-auto:first-child{
    table-layout: auto;
  }

  .s1920\:first\:table-fixed:first-child{
    table-layout: fixed;
  }

  .s1920\:last\:table-auto:last-child{
    table-layout: auto;
  }

  .s1920\:last\:table-fixed:last-child{
    table-layout: fixed;
  }

  .s1920\:text-left{
    text-align: left;
  }

  .s1920\:text-center{
    text-align: center;
  }

  .s1920\:text-right{
    text-align: right;
  }

  .s1920\:text-justify{
    text-align: justify;
  }

  .s1920\:hover\:text-left:hover{
    text-align: left;
  }

  .s1920\:hover\:text-center:hover{
    text-align: center;
  }

  .s1920\:hover\:text-right:hover{
    text-align: right;
  }

  .s1920\:hover\:text-justify:hover{
    text-align: justify;
  }

  .s1920\:focus\:text-left:focus{
    text-align: left;
  }

  .s1920\:focus\:text-center:focus{
    text-align: center;
  }

  .s1920\:focus\:text-right:focus{
    text-align: right;
  }

  .s1920\:focus\:text-justify:focus{
    text-align: justify;
  }

  .s1920\:active\:text-left:active{
    text-align: left;
  }

  .s1920\:active\:text-center:active{
    text-align: center;
  }

  .s1920\:active\:text-right:active{
    text-align: right;
  }

  .s1920\:active\:text-justify:active{
    text-align: justify;
  }

  .s1920\:first\:text-left:first-child{
    text-align: left;
  }

  .s1920\:first\:text-center:first-child{
    text-align: center;
  }

  .s1920\:first\:text-right:first-child{
    text-align: right;
  }

  .s1920\:first\:text-justify:first-child{
    text-align: justify;
  }

  .s1920\:last\:text-left:last-child{
    text-align: left;
  }

  .s1920\:last\:text-center:last-child{
    text-align: center;
  }

  .s1920\:last\:text-right:last-child{
    text-align: right;
  }

  .s1920\:last\:text-justify:last-child{
    text-align: justify;
  }

  .s1920\:text-black{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1920\:text-transparent{
    color: transparent;
  }

  .s1920\:text-error{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:text-success{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:text-white-10{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1920\:text-white-20{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1920\:text-white{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1920\:text-cheeto{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1920\:text-cheeto-very-light{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1920\:text-cheeto-light{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1920\:text-cheeto-dark{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1920\:text-cheeto-hocus{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1920\:text-cheeto-active{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1920\:text-cheeto-ml-plus{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1920\:text-cheeto-banner{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1920\:text-gracy-1{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1920\:text-gracy-10{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1920\:text-gracy-20{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1920\:text-gracy-30{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1920\:text-gracy-40{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1920\:text-gracy-50{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1920\:text-gracy-60{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1920\:text-gracy-70{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1920\:text-gracy-80{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1920\:text-gracy-90{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1920\:text-gracy-100{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1920\:text-gracy{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1920\:text-gracy-overlay-90{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:text-login{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1920\:text-olive-light{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1920\:text-olive-drab{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:text-olive-dark{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1920\:text-daisy-light{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1920\:text-feedback-gumby{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1920\:text-feedback-daisy{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1920\:text-feedback-pokey{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1920\:text-feedback-aster{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1920\:text-feedback-aster-dark{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1920\:text-feedback-roxo{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1920\:text-feedback-error{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:text-feedback-success{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:text-functional-aoki{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1920\:text-functional-aoki-dark{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1920\:text-functional-aoki-hocus{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1920\:text-functional-aoki-active{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1920\:text-functional-aoki-light{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1920\:text-functional-kermit{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1920\:text-mixlabPlus-light{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1920\:text-primary-orange-light{
    color: ;
  }

  .s1920\:text-off-white{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1920\:hover\:text-black:hover{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1920\:hover\:text-transparent:hover{
    color: transparent;
  }

  .s1920\:hover\:text-error:hover{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:hover\:text-success:hover{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:hover\:text-white-10:hover{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1920\:hover\:text-white-20:hover{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1920\:hover\:text-white:hover{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1920\:hover\:text-cheeto:hover{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1920\:hover\:text-cheeto-very-light:hover{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1920\:hover\:text-cheeto-light:hover{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1920\:hover\:text-cheeto-dark:hover{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1920\:hover\:text-cheeto-hocus:hover{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1920\:hover\:text-cheeto-active:hover{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1920\:hover\:text-cheeto-ml-plus:hover{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1920\:hover\:text-cheeto-banner:hover{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-1:hover{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-10:hover{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-20:hover{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-30:hover{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-40:hover{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-50:hover{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-60:hover{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-70:hover{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-80:hover{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-90:hover{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-100:hover{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy:hover{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1920\:hover\:text-gracy-overlay-90:hover{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:hover\:text-login:hover{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1920\:hover\:text-olive-light:hover{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1920\:hover\:text-olive-drab:hover{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:hover\:text-olive-dark:hover{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1920\:hover\:text-daisy-light:hover{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1920\:hover\:text-feedback-gumby:hover{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1920\:hover\:text-feedback-daisy:hover{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1920\:hover\:text-feedback-pokey:hover{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1920\:hover\:text-feedback-aster:hover{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1920\:hover\:text-feedback-aster-dark:hover{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1920\:hover\:text-feedback-roxo:hover{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1920\:hover\:text-feedback-error:hover{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:hover\:text-feedback-success:hover{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:hover\:text-functional-aoki:hover{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1920\:hover\:text-functional-aoki-dark:hover{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1920\:hover\:text-functional-aoki-hocus:hover{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1920\:hover\:text-functional-aoki-active:hover{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1920\:hover\:text-functional-aoki-light:hover{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1920\:hover\:text-functional-kermit:hover{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1920\:hover\:text-mixlabPlus-light:hover{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1920\:hover\:text-primary-orange-light:hover{
    color: ;
  }

  .s1920\:hover\:text-off-white:hover{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1920\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1920\:focus\:text-transparent:focus{
    color: transparent;
  }

  .s1920\:focus\:text-error:focus{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:focus\:text-success:focus{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:focus\:text-white-10:focus{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1920\:focus\:text-white-20:focus{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1920\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1920\:focus\:text-cheeto:focus{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1920\:focus\:text-cheeto-very-light:focus{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1920\:focus\:text-cheeto-light:focus{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1920\:focus\:text-cheeto-dark:focus{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1920\:focus\:text-cheeto-hocus:focus{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1920\:focus\:text-cheeto-active:focus{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1920\:focus\:text-cheeto-ml-plus:focus{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1920\:focus\:text-cheeto-banner:focus{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-1:focus{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-10:focus{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-20:focus{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-30:focus{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-40:focus{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-50:focus{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-60:focus{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-70:focus{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-80:focus{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-90:focus{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-100:focus{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy:focus{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1920\:focus\:text-gracy-overlay-90:focus{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:focus\:text-login:focus{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1920\:focus\:text-olive-light:focus{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1920\:focus\:text-olive-drab:focus{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:focus\:text-olive-dark:focus{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1920\:focus\:text-daisy-light:focus{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1920\:focus\:text-feedback-gumby:focus{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1920\:focus\:text-feedback-daisy:focus{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1920\:focus\:text-feedback-pokey:focus{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1920\:focus\:text-feedback-aster:focus{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1920\:focus\:text-feedback-aster-dark:focus{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1920\:focus\:text-feedback-roxo:focus{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1920\:focus\:text-feedback-error:focus{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:focus\:text-feedback-success:focus{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:focus\:text-functional-aoki:focus{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1920\:focus\:text-functional-aoki-dark:focus{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1920\:focus\:text-functional-aoki-hocus:focus{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1920\:focus\:text-functional-aoki-active:focus{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1920\:focus\:text-functional-aoki-light:focus{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1920\:focus\:text-functional-kermit:focus{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1920\:focus\:text-mixlabPlus-light:focus{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1920\:focus\:text-primary-orange-light:focus{
    color: ;
  }

  .s1920\:focus\:text-off-white:focus{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1920\:active\:text-black:active{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1920\:active\:text-transparent:active{
    color: transparent;
  }

  .s1920\:active\:text-error:active{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:active\:text-success:active{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:active\:text-white-10:active{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1920\:active\:text-white-20:active{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1920\:active\:text-white:active{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1920\:active\:text-cheeto:active{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1920\:active\:text-cheeto-very-light:active{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1920\:active\:text-cheeto-light:active{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1920\:active\:text-cheeto-dark:active{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1920\:active\:text-cheeto-hocus:active{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1920\:active\:text-cheeto-active:active{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1920\:active\:text-cheeto-ml-plus:active{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1920\:active\:text-cheeto-banner:active{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-1:active{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-10:active{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-20:active{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-30:active{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-40:active{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-50:active{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-60:active{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-70:active{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-80:active{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-90:active{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-100:active{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1920\:active\:text-gracy:active{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1920\:active\:text-gracy-overlay-90:active{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:active\:text-login:active{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1920\:active\:text-olive-light:active{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1920\:active\:text-olive-drab:active{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:active\:text-olive-dark:active{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1920\:active\:text-daisy-light:active{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1920\:active\:text-feedback-gumby:active{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1920\:active\:text-feedback-daisy:active{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1920\:active\:text-feedback-pokey:active{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1920\:active\:text-feedback-aster:active{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1920\:active\:text-feedback-aster-dark:active{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1920\:active\:text-feedback-roxo:active{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1920\:active\:text-feedback-error:active{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:active\:text-feedback-success:active{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:active\:text-functional-aoki:active{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1920\:active\:text-functional-aoki-dark:active{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1920\:active\:text-functional-aoki-hocus:active{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1920\:active\:text-functional-aoki-active:active{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1920\:active\:text-functional-aoki-light:active{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1920\:active\:text-functional-kermit:active{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1920\:active\:text-mixlabPlus-light:active{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1920\:active\:text-primary-orange-light:active{
    color: ;
  }

  .s1920\:active\:text-off-white:active{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1920\:first\:text-black:first-child{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1920\:first\:text-transparent:first-child{
    color: transparent;
  }

  .s1920\:first\:text-error:first-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:first\:text-success:first-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:first\:text-white-10:first-child{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1920\:first\:text-white-20:first-child{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1920\:first\:text-white:first-child{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1920\:first\:text-cheeto:first-child{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1920\:first\:text-cheeto-very-light:first-child{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1920\:first\:text-cheeto-light:first-child{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1920\:first\:text-cheeto-dark:first-child{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1920\:first\:text-cheeto-hocus:first-child{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1920\:first\:text-cheeto-active:first-child{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1920\:first\:text-cheeto-ml-plus:first-child{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1920\:first\:text-cheeto-banner:first-child{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-1:first-child{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-10:first-child{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-20:first-child{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-30:first-child{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-40:first-child{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-50:first-child{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-60:first-child{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-70:first-child{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-80:first-child{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-90:first-child{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-100:first-child{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1920\:first\:text-gracy:first-child{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1920\:first\:text-gracy-overlay-90:first-child{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:first\:text-login:first-child{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1920\:first\:text-olive-light:first-child{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1920\:first\:text-olive-drab:first-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:first\:text-olive-dark:first-child{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1920\:first\:text-daisy-light:first-child{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1920\:first\:text-feedback-gumby:first-child{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1920\:first\:text-feedback-daisy:first-child{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1920\:first\:text-feedback-pokey:first-child{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1920\:first\:text-feedback-aster:first-child{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1920\:first\:text-feedback-aster-dark:first-child{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1920\:first\:text-feedback-roxo:first-child{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1920\:first\:text-feedback-error:first-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:first\:text-feedback-success:first-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:first\:text-functional-aoki:first-child{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1920\:first\:text-functional-aoki-dark:first-child{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1920\:first\:text-functional-aoki-hocus:first-child{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1920\:first\:text-functional-aoki-active:first-child{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1920\:first\:text-functional-aoki-light:first-child{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1920\:first\:text-functional-kermit:first-child{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1920\:first\:text-mixlabPlus-light:first-child{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1920\:first\:text-primary-orange-light:first-child{
    color: ;
  }

  .s1920\:first\:text-off-white:first-child{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1920\:last\:text-black:last-child{
    --text-opacity: 1;
    color: #000000;
    color: rgba(0, 0, 0, var(--text-opacity));
  }

  .s1920\:last\:text-transparent:last-child{
    color: transparent;
  }

  .s1920\:last\:text-error:last-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:last\:text-success:last-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:last\:text-white-10:last-child{
    --text-opacity: 1;
    color: #FBFBFB;
    color: rgba(251, 251, 251, var(--text-opacity));
  }

  .s1920\:last\:text-white-20:last-child{
    --text-opacity: 1;
    color: #ECECEC;
    color: rgba(236, 236, 236, var(--text-opacity));
  }

  .s1920\:last\:text-white:last-child{
    --text-opacity: 1;
    color: #FFFFFF;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .s1920\:last\:text-cheeto:last-child{
    --text-opacity: 1;
    color: #f7a500;
    color: rgba(247, 165, 0, var(--text-opacity));
  }

  .s1920\:last\:text-cheeto-very-light:last-child{
    --text-opacity: 1;
    color: #fffaf2;
    color: rgba(255, 250, 242, var(--text-opacity));
  }

  .s1920\:last\:text-cheeto-light:last-child{
    --text-opacity: 1;
    color: #ffd649;
    color: rgba(255, 214, 73, var(--text-opacity));
  }

  .s1920\:last\:text-cheeto-dark:last-child{
    --text-opacity: 1;
    color: #bf7600;
    color: rgba(191, 118, 0, var(--text-opacity));
  }

  .s1920\:last\:text-cheeto-hocus:last-child{
    --text-opacity: 1;
    color: #f8bd0f;
    color: rgba(248, 189, 15, var(--text-opacity));
  }

  .s1920\:last\:text-cheeto-active:last-child{
    --text-opacity: 1;
    color: #f8d61b;
    color: rgba(248, 214, 27, var(--text-opacity));
  }

  .s1920\:last\:text-cheeto-ml-plus:last-child{
    --text-opacity: 1;
    color: #FBEFCA;
    color: rgba(251, 239, 202, var(--text-opacity));
  }

  .s1920\:last\:text-cheeto-banner:last-child{
    --text-opacity: 1;
    color: #fef7e5;
    color: rgba(254, 247, 229, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-1:last-child{
    --text-opacity: 1;
    color: #f8f8fa;
    color: rgba(248, 248, 250, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-10:last-child{
    --text-opacity: 1;
    color: #faf7fd;
    color: rgba(250, 247, 253, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-20:last-child{
    --text-opacity: 1;
    color: #e0dde3;
    color: rgba(224, 221, 227, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-30:last-child{
    --text-opacity: 1;
    color: #c8c5ca;
    color: rgba(200, 197, 202, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-40:last-child{
    --text-opacity: 1;
    color: #aeacb0;
    color: rgba(174, 172, 176, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-50:last-child{
    --text-opacity: 1;
    color: #969497;
    color: rgba(150, 148, 151, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-60:last-child{
    --text-opacity: 1;
    color: #7c7b7e;
    color: rgba(124, 123, 126, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-70:last-child{
    --text-opacity: 1;
    color: #646265;
    color: rgba(100, 98, 101, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-80:last-child{
    --text-opacity: 1;
    color: #4a494b;
    color: rgba(74, 73, 75, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-90:last-child{
    --text-opacity: 1;
    color: #323132;
    color: rgba(50, 49, 50, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-100:last-child{
    --text-opacity: 1;
    color: #181818;
    color: rgba(24, 24, 24, var(--text-opacity));
  }

  .s1920\:last\:text-gracy:last-child{
    --text-opacity: 1;
    color: #6F7878;
    color: rgba(111, 120, 120, var(--text-opacity));
  }

  .s1920\:last\:text-gracy-overlay-90:last-child{
    color: rgba(50,49,50,0.5);
  }

  .s1920\:last\:text-login:last-child{
    --text-opacity: 1;
    color: #FDF7E7;
    color: rgba(253, 247, 231, var(--text-opacity));
  }

  .s1920\:last\:text-olive-light:last-child{
    --text-opacity: 1;
    color: #DFF5F6;
    color: rgba(223, 245, 246, var(--text-opacity));
  }

  .s1920\:last\:text-olive-drab:last-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:last\:text-olive-dark:last-child{
    --text-opacity: 1;
    color: #096348;
    color: rgba(9, 99, 72, var(--text-opacity));
  }

  .s1920\:last\:text-daisy-light:last-child{
    --text-opacity: 1;
    color: #fffce1;
    color: rgba(255, 252, 225, var(--text-opacity));
  }

  .s1920\:last\:text-feedback-gumby:last-child{
    --text-opacity: 1;
    color: #c8e6c9;
    color: rgba(200, 230, 201, var(--text-opacity));
  }

  .s1920\:last\:text-feedback-daisy:last-child{
    --text-opacity: 1;
    color: #fff9c4;
    color: rgba(255, 249, 196, var(--text-opacity));
  }

  .s1920\:last\:text-feedback-pokey:last-child{
    --text-opacity: 1;
    color: #ffcdd2;
    color: rgba(255, 205, 210, var(--text-opacity));
  }

  .s1920\:last\:text-feedback-aster:last-child{
    --text-opacity: 1;
    color: #b3e5fc;
    color: rgba(179, 229, 252, var(--text-opacity));
  }

  .s1920\:last\:text-feedback-aster-dark:last-child{
    --text-opacity: 1;
    color: #03567C;
    color: rgba(3, 86, 124, var(--text-opacity));
  }

  .s1920\:last\:text-feedback-roxo:last-child{
    --text-opacity: 1;
    color: #d1c4e9;
    color: rgba(209, 196, 233, var(--text-opacity));
  }

  .s1920\:last\:text-feedback-error:last-child{
    --text-opacity: 1;
    color: #f44336;
    color: rgba(244, 67, 54, var(--text-opacity));
  }

  .s1920\:last\:text-feedback-success:last-child{
    --text-opacity: 1;
    color: #5ca02c;
    color: rgba(92, 160, 44, var(--text-opacity));
  }

  .s1920\:last\:text-functional-aoki:last-child{
    --text-opacity: 1;
    color: #6f2ca0;
    color: rgba(111, 44, 160, var(--text-opacity));
  }

  .s1920\:last\:text-functional-aoki-dark:last-child{
    --text-opacity: 1;
    color: #3e0071;
    color: rgba(62, 0, 113, var(--text-opacity));
  }

  .s1920\:last\:text-functional-aoki-hocus:last-child{
    --text-opacity: 1;
    color: #9035af;
    color: rgba(144, 53, 175, var(--text-opacity));
  }

  .s1920\:last\:text-functional-aoki-active:last-child{
    --text-opacity: 1;
    color: #a04fbc;
    color: rgba(160, 79, 188, var(--text-opacity));
  }

  .s1920\:last\:text-functional-aoki-light:last-child{
    --text-opacity: 1;
    color: #a15ad2;
    color: rgba(161, 90, 210, var(--text-opacity));
  }

  .s1920\:last\:text-functional-kermit:last-child{
    --text-opacity: 1;
    color: #5aa120;
    color: rgba(90, 161, 32, var(--text-opacity));
  }

  .s1920\:last\:text-mixlabPlus-light:last-child{
    --text-opacity: 1;
    color: #FFFEF9;
    color: rgba(255, 254, 249, var(--text-opacity));
  }

  .s1920\:last\:text-primary-orange-light:last-child{
    color: ;
  }

  .s1920\:last\:text-off-white:last-child{
    --text-opacity: 1;
    color: #FAF9F6;
    color: rgba(250, 249, 246, var(--text-opacity));
  }

  .s1920\:text-opacity-0{
    --text-opacity: 0;
  }

  .s1920\:text-opacity-25{
    --text-opacity: 0.25;
  }

  .s1920\:text-opacity-50{
    --text-opacity: .5;
  }

  .s1920\:text-opacity-75{
    --text-opacity: 0.75;
  }

  .s1920\:text-opacity-80{
    --text-opacity: .8;
  }

  .s1920\:text-opacity-100{
    --text-opacity: 1;
  }

  .s1920\:hover\:text-opacity-0:hover{
    --text-opacity: 0;
  }

  .s1920\:hover\:text-opacity-25:hover{
    --text-opacity: 0.25;
  }

  .s1920\:hover\:text-opacity-50:hover{
    --text-opacity: .5;
  }

  .s1920\:hover\:text-opacity-75:hover{
    --text-opacity: 0.75;
  }

  .s1920\:hover\:text-opacity-80:hover{
    --text-opacity: .8;
  }

  .s1920\:hover\:text-opacity-100:hover{
    --text-opacity: 1;
  }

  .s1920\:focus\:text-opacity-0:focus{
    --text-opacity: 0;
  }

  .s1920\:focus\:text-opacity-25:focus{
    --text-opacity: 0.25;
  }

  .s1920\:focus\:text-opacity-50:focus{
    --text-opacity: .5;
  }

  .s1920\:focus\:text-opacity-75:focus{
    --text-opacity: 0.75;
  }

  .s1920\:focus\:text-opacity-80:focus{
    --text-opacity: .8;
  }

  .s1920\:focus\:text-opacity-100:focus{
    --text-opacity: 1;
  }

  .s1920\:active\:text-opacity-0:active{
    --text-opacity: 0;
  }

  .s1920\:active\:text-opacity-25:active{
    --text-opacity: 0.25;
  }

  .s1920\:active\:text-opacity-50:active{
    --text-opacity: .5;
  }

  .s1920\:active\:text-opacity-75:active{
    --text-opacity: 0.75;
  }

  .s1920\:active\:text-opacity-80:active{
    --text-opacity: .8;
  }

  .s1920\:active\:text-opacity-100:active{
    --text-opacity: 1;
  }

  .s1920\:first\:text-opacity-0:first-child{
    --text-opacity: 0;
  }

  .s1920\:first\:text-opacity-25:first-child{
    --text-opacity: 0.25;
  }

  .s1920\:first\:text-opacity-50:first-child{
    --text-opacity: .5;
  }

  .s1920\:first\:text-opacity-75:first-child{
    --text-opacity: 0.75;
  }

  .s1920\:first\:text-opacity-80:first-child{
    --text-opacity: .8;
  }

  .s1920\:first\:text-opacity-100:first-child{
    --text-opacity: 1;
  }

  .s1920\:last\:text-opacity-0:last-child{
    --text-opacity: 0;
  }

  .s1920\:last\:text-opacity-25:last-child{
    --text-opacity: 0.25;
  }

  .s1920\:last\:text-opacity-50:last-child{
    --text-opacity: .5;
  }

  .s1920\:last\:text-opacity-75:last-child{
    --text-opacity: 0.75;
  }

  .s1920\:last\:text-opacity-80:last-child{
    --text-opacity: .8;
  }

  .s1920\:last\:text-opacity-100:last-child{
    --text-opacity: 1;
  }

  .s1920\:italic{
    font-style: italic;
  }

  .s1920\:not-italic{
    font-style: normal;
  }

  .s1920\:hover\:italic:hover{
    font-style: italic;
  }

  .s1920\:hover\:not-italic:hover{
    font-style: normal;
  }

  .s1920\:focus\:italic:focus{
    font-style: italic;
  }

  .s1920\:focus\:not-italic:focus{
    font-style: normal;
  }

  .s1920\:active\:italic:active{
    font-style: italic;
  }

  .s1920\:active\:not-italic:active{
    font-style: normal;
  }

  .s1920\:first\:italic:first-child{
    font-style: italic;
  }

  .s1920\:first\:not-italic:first-child{
    font-style: normal;
  }

  .s1920\:last\:italic:last-child{
    font-style: italic;
  }

  .s1920\:last\:not-italic:last-child{
    font-style: normal;
  }

  .s1920\:uppercase{
    text-transform: uppercase;
  }

  .s1920\:lowercase{
    text-transform: lowercase;
  }

  .s1920\:capitalize{
    text-transform: capitalize;
  }

  .s1920\:normal-case{
    text-transform: none;
  }

  .s1920\:hover\:uppercase:hover{
    text-transform: uppercase;
  }

  .s1920\:hover\:lowercase:hover{
    text-transform: lowercase;
  }

  .s1920\:hover\:capitalize:hover{
    text-transform: capitalize;
  }

  .s1920\:hover\:normal-case:hover{
    text-transform: none;
  }

  .s1920\:focus\:uppercase:focus{
    text-transform: uppercase;
  }

  .s1920\:focus\:lowercase:focus{
    text-transform: lowercase;
  }

  .s1920\:focus\:capitalize:focus{
    text-transform: capitalize;
  }

  .s1920\:focus\:normal-case:focus{
    text-transform: none;
  }

  .s1920\:active\:uppercase:active{
    text-transform: uppercase;
  }

  .s1920\:active\:lowercase:active{
    text-transform: lowercase;
  }

  .s1920\:active\:capitalize:active{
    text-transform: capitalize;
  }

  .s1920\:active\:normal-case:active{
    text-transform: none;
  }

  .s1920\:first\:uppercase:first-child{
    text-transform: uppercase;
  }

  .s1920\:first\:lowercase:first-child{
    text-transform: lowercase;
  }

  .s1920\:first\:capitalize:first-child{
    text-transform: capitalize;
  }

  .s1920\:first\:normal-case:first-child{
    text-transform: none;
  }

  .s1920\:last\:uppercase:last-child{
    text-transform: uppercase;
  }

  .s1920\:last\:lowercase:last-child{
    text-transform: lowercase;
  }

  .s1920\:last\:capitalize:last-child{
    text-transform: capitalize;
  }

  .s1920\:last\:normal-case:last-child{
    text-transform: none;
  }

  .s1920\:underline{
    text-decoration: underline;
  }

  .s1920\:line-through{
    text-decoration: line-through;
  }

  .s1920\:no-underline{
    text-decoration: none;
  }

  .s1920\:hover\:underline:hover{
    text-decoration: underline;
  }

  .s1920\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .s1920\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .s1920\:focus\:underline:focus{
    text-decoration: underline;
  }

  .s1920\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .s1920\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .s1920\:active\:underline:active{
    text-decoration: underline;
  }

  .s1920\:active\:line-through:active{
    text-decoration: line-through;
  }

  .s1920\:active\:no-underline:active{
    text-decoration: none;
  }

  .s1920\:first\:underline:first-child{
    text-decoration: underline;
  }

  .s1920\:first\:line-through:first-child{
    text-decoration: line-through;
  }

  .s1920\:first\:no-underline:first-child{
    text-decoration: none;
  }

  .s1920\:last\:underline:last-child{
    text-decoration: underline;
  }

  .s1920\:last\:line-through:last-child{
    text-decoration: line-through;
  }

  .s1920\:last\:no-underline:last-child{
    text-decoration: none;
  }

  .s1920\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1920\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1920\:hover\:antialiased:hover{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1920\:hover\:subpixel-antialiased:hover{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1920\:focus\:antialiased:focus{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1920\:focus\:subpixel-antialiased:focus{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1920\:active\:antialiased:active{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1920\:active\:subpixel-antialiased:active{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1920\:first\:antialiased:first-child{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1920\:first\:subpixel-antialiased:first-child{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1920\:last\:antialiased:last-child{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s1920\:last\:subpixel-antialiased:last-child{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .s1920\:ordinal, .s1920\:slashed-zero, .s1920\:lining-nums, .s1920\:oldstyle-nums, .s1920\:proportional-nums, .s1920\:tabular-nums, .s1920\:diagonal-fractions, .s1920\:stacked-fractions{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1920\:normal-nums{
    font-variant-numeric: normal;
  }

  .s1920\:ordinal{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1920\:slashed-zero{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1920\:lining-nums{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1920\:oldstyle-nums{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1920\:proportional-nums{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1920\:tabular-nums{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1920\:diagonal-fractions{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1920\:stacked-fractions{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1920\:hover\:ordinal:hover, .s1920\:hover\:slashed-zero:hover, .s1920\:hover\:lining-nums:hover, .s1920\:hover\:oldstyle-nums:hover, .s1920\:hover\:proportional-nums:hover, .s1920\:hover\:tabular-nums:hover, .s1920\:hover\:diagonal-fractions:hover, .s1920\:hover\:stacked-fractions:hover{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1920\:hover\:normal-nums:hover{
    font-variant-numeric: normal;
  }

  .s1920\:hover\:ordinal:hover{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1920\:hover\:slashed-zero:hover{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1920\:hover\:lining-nums:hover{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1920\:hover\:oldstyle-nums:hover{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1920\:hover\:proportional-nums:hover{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1920\:hover\:tabular-nums:hover{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1920\:hover\:diagonal-fractions:hover{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1920\:hover\:stacked-fractions:hover{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1920\:focus\:ordinal:focus, .s1920\:focus\:slashed-zero:focus, .s1920\:focus\:lining-nums:focus, .s1920\:focus\:oldstyle-nums:focus, .s1920\:focus\:proportional-nums:focus, .s1920\:focus\:tabular-nums:focus, .s1920\:focus\:diagonal-fractions:focus, .s1920\:focus\:stacked-fractions:focus{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1920\:focus\:normal-nums:focus{
    font-variant-numeric: normal;
  }

  .s1920\:focus\:ordinal:focus{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1920\:focus\:slashed-zero:focus{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1920\:focus\:lining-nums:focus{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1920\:focus\:oldstyle-nums:focus{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1920\:focus\:proportional-nums:focus{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1920\:focus\:tabular-nums:focus{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1920\:focus\:diagonal-fractions:focus{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1920\:focus\:stacked-fractions:focus{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1920\:active\:ordinal:active, .s1920\:active\:slashed-zero:active, .s1920\:active\:lining-nums:active, .s1920\:active\:oldstyle-nums:active, .s1920\:active\:proportional-nums:active, .s1920\:active\:tabular-nums:active, .s1920\:active\:diagonal-fractions:active, .s1920\:active\:stacked-fractions:active{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1920\:active\:normal-nums:active{
    font-variant-numeric: normal;
  }

  .s1920\:active\:ordinal:active{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1920\:active\:slashed-zero:active{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1920\:active\:lining-nums:active{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1920\:active\:oldstyle-nums:active{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1920\:active\:proportional-nums:active{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1920\:active\:tabular-nums:active{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1920\:active\:diagonal-fractions:active{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1920\:active\:stacked-fractions:active{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1920\:first\:ordinal:first-child, .s1920\:first\:slashed-zero:first-child, .s1920\:first\:lining-nums:first-child, .s1920\:first\:oldstyle-nums:first-child, .s1920\:first\:proportional-nums:first-child, .s1920\:first\:tabular-nums:first-child, .s1920\:first\:diagonal-fractions:first-child, .s1920\:first\:stacked-fractions:first-child{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1920\:first\:normal-nums:first-child{
    font-variant-numeric: normal;
  }

  .s1920\:first\:ordinal:first-child{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1920\:first\:slashed-zero:first-child{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1920\:first\:lining-nums:first-child{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1920\:first\:oldstyle-nums:first-child{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1920\:first\:proportional-nums:first-child{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1920\:first\:tabular-nums:first-child{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1920\:first\:diagonal-fractions:first-child{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1920\:first\:stacked-fractions:first-child{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1920\:last\:ordinal:last-child, .s1920\:last\:slashed-zero:last-child, .s1920\:last\:lining-nums:last-child, .s1920\:last\:oldstyle-nums:last-child, .s1920\:last\:proportional-nums:last-child, .s1920\:last\:tabular-nums:last-child, .s1920\:last\:diagonal-fractions:last-child, .s1920\:last\:stacked-fractions:last-child{
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/);
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
  }

  .s1920\:last\:normal-nums:last-child{
    font-variant-numeric: normal;
  }

  .s1920\:last\:ordinal:last-child{
    --font-variant-numeric-ordinal: ordinal;
  }

  .s1920\:last\:slashed-zero:last-child{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .s1920\:last\:lining-nums:last-child{
    --font-variant-numeric-figure: lining-nums;
  }

  .s1920\:last\:oldstyle-nums:last-child{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .s1920\:last\:proportional-nums:last-child{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .s1920\:last\:tabular-nums:last-child{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .s1920\:last\:diagonal-fractions:last-child{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .s1920\:last\:stacked-fractions:last-child{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .s1920\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .s1920\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .s1920\:tracking-normal{
    letter-spacing: 0;
  }

  .s1920\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .s1920\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .s1920\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .s1920\:hover\:tracking-tighter:hover{
    letter-spacing: -0.05em;
  }

  .s1920\:hover\:tracking-tight:hover{
    letter-spacing: -0.025em;
  }

  .s1920\:hover\:tracking-normal:hover{
    letter-spacing: 0;
  }

  .s1920\:hover\:tracking-wide:hover{
    letter-spacing: 0.025em;
  }

  .s1920\:hover\:tracking-wider:hover{
    letter-spacing: 0.05em;
  }

  .s1920\:hover\:tracking-widest:hover{
    letter-spacing: 0.1em;
  }

  .s1920\:focus\:tracking-tighter:focus{
    letter-spacing: -0.05em;
  }

  .s1920\:focus\:tracking-tight:focus{
    letter-spacing: -0.025em;
  }

  .s1920\:focus\:tracking-normal:focus{
    letter-spacing: 0;
  }

  .s1920\:focus\:tracking-wide:focus{
    letter-spacing: 0.025em;
  }

  .s1920\:focus\:tracking-wider:focus{
    letter-spacing: 0.05em;
  }

  .s1920\:focus\:tracking-widest:focus{
    letter-spacing: 0.1em;
  }

  .s1920\:active\:tracking-tighter:active{
    letter-spacing: -0.05em;
  }

  .s1920\:active\:tracking-tight:active{
    letter-spacing: -0.025em;
  }

  .s1920\:active\:tracking-normal:active{
    letter-spacing: 0;
  }

  .s1920\:active\:tracking-wide:active{
    letter-spacing: 0.025em;
  }

  .s1920\:active\:tracking-wider:active{
    letter-spacing: 0.05em;
  }

  .s1920\:active\:tracking-widest:active{
    letter-spacing: 0.1em;
  }

  .s1920\:first\:tracking-tighter:first-child{
    letter-spacing: -0.05em;
  }

  .s1920\:first\:tracking-tight:first-child{
    letter-spacing: -0.025em;
  }

  .s1920\:first\:tracking-normal:first-child{
    letter-spacing: 0;
  }

  .s1920\:first\:tracking-wide:first-child{
    letter-spacing: 0.025em;
  }

  .s1920\:first\:tracking-wider:first-child{
    letter-spacing: 0.05em;
  }

  .s1920\:first\:tracking-widest:first-child{
    letter-spacing: 0.1em;
  }

  .s1920\:last\:tracking-tighter:last-child{
    letter-spacing: -0.05em;
  }

  .s1920\:last\:tracking-tight:last-child{
    letter-spacing: -0.025em;
  }

  .s1920\:last\:tracking-normal:last-child{
    letter-spacing: 0;
  }

  .s1920\:last\:tracking-wide:last-child{
    letter-spacing: 0.025em;
  }

  .s1920\:last\:tracking-wider:last-child{
    letter-spacing: 0.05em;
  }

  .s1920\:last\:tracking-widest:last-child{
    letter-spacing: 0.1em;
  }

  .s1920\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1920\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1920\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1920\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1920\:hover\:select-none:hover{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1920\:hover\:select-text:hover{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1920\:hover\:select-all:hover{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1920\:hover\:select-auto:hover{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1920\:focus\:select-none:focus{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1920\:focus\:select-text:focus{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1920\:focus\:select-all:focus{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1920\:focus\:select-auto:focus{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1920\:active\:select-none:active{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1920\:active\:select-text:active{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1920\:active\:select-all:active{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1920\:active\:select-auto:active{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1920\:first\:select-none:first-child{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1920\:first\:select-text:first-child{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1920\:first\:select-all:first-child{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1920\:first\:select-auto:first-child{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1920\:last\:select-none:last-child{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .s1920\:last\:select-text:last-child{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .s1920\:last\:select-all:last-child{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .s1920\:last\:select-auto:last-child{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .s1920\:align-baseline{
    vertical-align: baseline;
  }

  .s1920\:align-top{
    vertical-align: top;
  }

  .s1920\:align-middle{
    vertical-align: middle;
  }

  .s1920\:align-bottom{
    vertical-align: bottom;
  }

  .s1920\:align-text-top{
    vertical-align: text-top;
  }

  .s1920\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .s1920\:hover\:align-baseline:hover{
    vertical-align: baseline;
  }

  .s1920\:hover\:align-top:hover{
    vertical-align: top;
  }

  .s1920\:hover\:align-middle:hover{
    vertical-align: middle;
  }

  .s1920\:hover\:align-bottom:hover{
    vertical-align: bottom;
  }

  .s1920\:hover\:align-text-top:hover{
    vertical-align: text-top;
  }

  .s1920\:hover\:align-text-bottom:hover{
    vertical-align: text-bottom;
  }

  .s1920\:focus\:align-baseline:focus{
    vertical-align: baseline;
  }

  .s1920\:focus\:align-top:focus{
    vertical-align: top;
  }

  .s1920\:focus\:align-middle:focus{
    vertical-align: middle;
  }

  .s1920\:focus\:align-bottom:focus{
    vertical-align: bottom;
  }

  .s1920\:focus\:align-text-top:focus{
    vertical-align: text-top;
  }

  .s1920\:focus\:align-text-bottom:focus{
    vertical-align: text-bottom;
  }

  .s1920\:active\:align-baseline:active{
    vertical-align: baseline;
  }

  .s1920\:active\:align-top:active{
    vertical-align: top;
  }

  .s1920\:active\:align-middle:active{
    vertical-align: middle;
  }

  .s1920\:active\:align-bottom:active{
    vertical-align: bottom;
  }

  .s1920\:active\:align-text-top:active{
    vertical-align: text-top;
  }

  .s1920\:active\:align-text-bottom:active{
    vertical-align: text-bottom;
  }

  .s1920\:first\:align-baseline:first-child{
    vertical-align: baseline;
  }

  .s1920\:first\:align-top:first-child{
    vertical-align: top;
  }

  .s1920\:first\:align-middle:first-child{
    vertical-align: middle;
  }

  .s1920\:first\:align-bottom:first-child{
    vertical-align: bottom;
  }

  .s1920\:first\:align-text-top:first-child{
    vertical-align: text-top;
  }

  .s1920\:first\:align-text-bottom:first-child{
    vertical-align: text-bottom;
  }

  .s1920\:last\:align-baseline:last-child{
    vertical-align: baseline;
  }

  .s1920\:last\:align-top:last-child{
    vertical-align: top;
  }

  .s1920\:last\:align-middle:last-child{
    vertical-align: middle;
  }

  .s1920\:last\:align-bottom:last-child{
    vertical-align: bottom;
  }

  .s1920\:last\:align-text-top:last-child{
    vertical-align: text-top;
  }

  .s1920\:last\:align-text-bottom:last-child{
    vertical-align: text-bottom;
  }

  .s1920\:visible{
    visibility: visible;
  }

  .s1920\:invisible{
    visibility: hidden;
  }

  .s1920\:hover\:visible:hover{
    visibility: visible;
  }

  .s1920\:hover\:invisible:hover{
    visibility: hidden;
  }

  .s1920\:focus\:visible:focus{
    visibility: visible;
  }

  .s1920\:focus\:invisible:focus{
    visibility: hidden;
  }

  .s1920\:active\:visible:active{
    visibility: visible;
  }

  .s1920\:active\:invisible:active{
    visibility: hidden;
  }

  .s1920\:first\:visible:first-child{
    visibility: visible;
  }

  .s1920\:first\:invisible:first-child{
    visibility: hidden;
  }

  .s1920\:last\:visible:last-child{
    visibility: visible;
  }

  .s1920\:last\:invisible:last-child{
    visibility: hidden;
  }

  .s1920\:whitespace-normal{
    white-space: normal;
  }

  .s1920\:whitespace-no-wrap{
    white-space: nowrap;
  }

  .s1920\:whitespace-pre{
    white-space: pre;
  }

  .s1920\:whitespace-pre-line{
    white-space: pre-line;
  }

  .s1920\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .s1920\:hover\:whitespace-normal:hover{
    white-space: normal;
  }

  .s1920\:hover\:whitespace-no-wrap:hover{
    white-space: nowrap;
  }

  .s1920\:hover\:whitespace-pre:hover{
    white-space: pre;
  }

  .s1920\:hover\:whitespace-pre-line:hover{
    white-space: pre-line;
  }

  .s1920\:hover\:whitespace-pre-wrap:hover{
    white-space: pre-wrap;
  }

  .s1920\:focus\:whitespace-normal:focus{
    white-space: normal;
  }

  .s1920\:focus\:whitespace-no-wrap:focus{
    white-space: nowrap;
  }

  .s1920\:focus\:whitespace-pre:focus{
    white-space: pre;
  }

  .s1920\:focus\:whitespace-pre-line:focus{
    white-space: pre-line;
  }

  .s1920\:focus\:whitespace-pre-wrap:focus{
    white-space: pre-wrap;
  }

  .s1920\:active\:whitespace-normal:active{
    white-space: normal;
  }

  .s1920\:active\:whitespace-no-wrap:active{
    white-space: nowrap;
  }

  .s1920\:active\:whitespace-pre:active{
    white-space: pre;
  }

  .s1920\:active\:whitespace-pre-line:active{
    white-space: pre-line;
  }

  .s1920\:active\:whitespace-pre-wrap:active{
    white-space: pre-wrap;
  }

  .s1920\:first\:whitespace-normal:first-child{
    white-space: normal;
  }

  .s1920\:first\:whitespace-no-wrap:first-child{
    white-space: nowrap;
  }

  .s1920\:first\:whitespace-pre:first-child{
    white-space: pre;
  }

  .s1920\:first\:whitespace-pre-line:first-child{
    white-space: pre-line;
  }

  .s1920\:first\:whitespace-pre-wrap:first-child{
    white-space: pre-wrap;
  }

  .s1920\:last\:whitespace-normal:last-child{
    white-space: normal;
  }

  .s1920\:last\:whitespace-no-wrap:last-child{
    white-space: nowrap;
  }

  .s1920\:last\:whitespace-pre:last-child{
    white-space: pre;
  }

  .s1920\:last\:whitespace-pre-line:last-child{
    white-space: pre-line;
  }

  .s1920\:last\:whitespace-pre-wrap:last-child{
    white-space: pre-wrap;
  }

  .s1920\:break-normal{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1920\:break-words{
    overflow-wrap: break-word;
  }

  .s1920\:break-all{
    word-break: break-all;
  }

  .s1920\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1920\:hover\:break-normal:hover{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1920\:hover\:break-words:hover{
    overflow-wrap: break-word;
  }

  .s1920\:hover\:break-all:hover{
    word-break: break-all;
  }

  .s1920\:hover\:truncate:hover{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1920\:focus\:break-normal:focus{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1920\:focus\:break-words:focus{
    overflow-wrap: break-word;
  }

  .s1920\:focus\:break-all:focus{
    word-break: break-all;
  }

  .s1920\:focus\:truncate:focus{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1920\:active\:break-normal:active{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1920\:active\:break-words:active{
    overflow-wrap: break-word;
  }

  .s1920\:active\:break-all:active{
    word-break: break-all;
  }

  .s1920\:active\:truncate:active{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1920\:first\:break-normal:first-child{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1920\:first\:break-words:first-child{
    overflow-wrap: break-word;
  }

  .s1920\:first\:break-all:first-child{
    word-break: break-all;
  }

  .s1920\:first\:truncate:first-child{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1920\:last\:break-normal:last-child{
    overflow-wrap: normal;
    word-break: normal;
  }

  .s1920\:last\:break-words:last-child{
    overflow-wrap: break-word;
  }

  .s1920\:last\:break-all:last-child{
    word-break: break-all;
  }

  .s1920\:last\:truncate:last-child{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s1920\:w-0{
    width: 0;
  }

  .s1920\:w-1{
    width: 0.25rem;
  }

  .s1920\:w-2{
    width: 0.5rem;
  }

  .s1920\:w-3{
    width: 0.75rem;
  }

  .s1920\:w-4{
    width: 1rem;
  }

  .s1920\:w-5{
    width: 1.25rem;
  }

  .s1920\:w-6{
    width: 1.5rem;
  }

  .s1920\:w-8{
    width: 2rem;
  }

  .s1920\:w-10{
    width: 2.5rem;
  }

  .s1920\:w-12{
    width: 3rem;
  }

  .s1920\:w-14{
    width: 3.5rem;
  }

  .s1920\:w-16{
    width: 4rem;
  }

  .s1920\:w-20{
    width: 5rem;
  }

  .s1920\:w-24{
    width: 6rem;
  }

  .s1920\:w-32{
    width: 8rem;
  }

  .s1920\:w-36{
    width: 9rem;
  }

  .s1920\:w-40{
    width: 10rem;
  }

  .s1920\:w-48{
    width: 12rem;
  }

  .s1920\:w-56{
    width: 14rem;
  }

  .s1920\:w-64{
    width: 16rem;
  }

  .s1920\:w-auto{
    width: auto;
  }

  .s1920\:w-px{
    width: 1px;
  }

  .s1920\:w-1\/2{
    width: 50%;
  }

  .s1920\:w-1\/3{
    width: 33.333333%;
  }

  .s1920\:w-2\/3{
    width: 66.666667%;
  }

  .s1920\:w-1\/4{
    width: 25%;
  }

  .s1920\:w-2\/4{
    width: 50%;
  }

  .s1920\:w-3\/4{
    width: 75%;
  }

  .s1920\:w-1\/5{
    width: 20%;
  }

  .s1920\:w-2\/5{
    width: 40%;
  }

  .s1920\:w-3\/5{
    width: 60%;
  }

  .s1920\:w-4\/5{
    width: 80%;
  }

  .s1920\:w-1\/6{
    width: 16.666667%;
  }

  .s1920\:w-2\/6{
    width: 33.333333%;
  }

  .s1920\:w-3\/6{
    width: 50%;
  }

  .s1920\:w-4\/6{
    width: 66.666667%;
  }

  .s1920\:w-5\/6{
    width: 83.333333%;
  }

  .s1920\:w-1\/12{
    width: 8.333333%;
  }

  .s1920\:w-2\/12{
    width: 16.666667%;
  }

  .s1920\:w-3\/12{
    width: 25%;
  }

  .s1920\:w-4\/12{
    width: 33.333333%;
  }

  .s1920\:w-5\/12{
    width: 41.666667%;
  }

  .s1920\:w-6\/12{
    width: 50%;
  }

  .s1920\:w-7\/12{
    width: 58.333333%;
  }

  .s1920\:w-8\/12{
    width: 66.666667%;
  }

  .s1920\:w-9\/12{
    width: 75%;
  }

  .s1920\:w-10\/12{
    width: 83.333333%;
  }

  .s1920\:w-11\/12{
    width: 91.666667%;
  }

  .s1920\:w-full{
    width: 100%;
  }

  .s1920\:w-screen{
    width: 100vw;
  }

  .s1920\:w-widePage{
    width: 120rem;
  }

  .s1920\:w-page{
    width: 80rem;
  }

  .s1920\:w-container{
    width: 77.25rem;
  }

  .s1920\:w-tooltip{
    width: 25rem;
  }

  .s1920\:w-smallTooltip{
    width: 15rem;
  }

  .s1920\:w-xsmallTooltip{
    width: 6.0rem;
  }

  .s1920\:w-sidebar{
    width: 27rem;
  }

  .s1920\:w-doubleSidebar{
    width: 25%;
  }

  .s1920\:w-practiceSidebar{
    width: 22.5rem;
  }

  .s1920\:w-3\/8{
    width: 37.5%;
  }

  .s1920\:w-1\/10{
    width: 10%;
  }

  .s1920\:w-2\/10{
    width: 20%;
  }

  .s1920\:w-3\/10{
    width: 30%;
  }

  .s1920\:w-4\/10{
    width: 40%;
  }

  .s1920\:w-5\/10{
    width: 50%;
  }

  .s1920\:w-6\/10{
    width: 60%;
  }

  .s1920\:w-7\/10{
    width: 70%;
  }

  .s1920\:w-8\/10{
    width: 80%;
  }

  .s1920\:w-9\/10{
    width: 90%;
  }

  .s1920\:w-input{
    width: 32.5rem;
  }

  .s1920\:w-inherit{
    width: inherit;
  }

  .s1920\:hover\:w-0:hover{
    width: 0;
  }

  .s1920\:hover\:w-1:hover{
    width: 0.25rem;
  }

  .s1920\:hover\:w-2:hover{
    width: 0.5rem;
  }

  .s1920\:hover\:w-3:hover{
    width: 0.75rem;
  }

  .s1920\:hover\:w-4:hover{
    width: 1rem;
  }

  .s1920\:hover\:w-5:hover{
    width: 1.25rem;
  }

  .s1920\:hover\:w-6:hover{
    width: 1.5rem;
  }

  .s1920\:hover\:w-8:hover{
    width: 2rem;
  }

  .s1920\:hover\:w-10:hover{
    width: 2.5rem;
  }

  .s1920\:hover\:w-12:hover{
    width: 3rem;
  }

  .s1920\:hover\:w-14:hover{
    width: 3.5rem;
  }

  .s1920\:hover\:w-16:hover{
    width: 4rem;
  }

  .s1920\:hover\:w-20:hover{
    width: 5rem;
  }

  .s1920\:hover\:w-24:hover{
    width: 6rem;
  }

  .s1920\:hover\:w-32:hover{
    width: 8rem;
  }

  .s1920\:hover\:w-36:hover{
    width: 9rem;
  }

  .s1920\:hover\:w-40:hover{
    width: 10rem;
  }

  .s1920\:hover\:w-48:hover{
    width: 12rem;
  }

  .s1920\:hover\:w-56:hover{
    width: 14rem;
  }

  .s1920\:hover\:w-64:hover{
    width: 16rem;
  }

  .s1920\:hover\:w-auto:hover{
    width: auto;
  }

  .s1920\:hover\:w-px:hover{
    width: 1px;
  }

  .s1920\:hover\:w-1\/2:hover{
    width: 50%;
  }

  .s1920\:hover\:w-1\/3:hover{
    width: 33.333333%;
  }

  .s1920\:hover\:w-2\/3:hover{
    width: 66.666667%;
  }

  .s1920\:hover\:w-1\/4:hover{
    width: 25%;
  }

  .s1920\:hover\:w-2\/4:hover{
    width: 50%;
  }

  .s1920\:hover\:w-3\/4:hover{
    width: 75%;
  }

  .s1920\:hover\:w-1\/5:hover{
    width: 20%;
  }

  .s1920\:hover\:w-2\/5:hover{
    width: 40%;
  }

  .s1920\:hover\:w-3\/5:hover{
    width: 60%;
  }

  .s1920\:hover\:w-4\/5:hover{
    width: 80%;
  }

  .s1920\:hover\:w-1\/6:hover{
    width: 16.666667%;
  }

  .s1920\:hover\:w-2\/6:hover{
    width: 33.333333%;
  }

  .s1920\:hover\:w-3\/6:hover{
    width: 50%;
  }

  .s1920\:hover\:w-4\/6:hover{
    width: 66.666667%;
  }

  .s1920\:hover\:w-5\/6:hover{
    width: 83.333333%;
  }

  .s1920\:hover\:w-1\/12:hover{
    width: 8.333333%;
  }

  .s1920\:hover\:w-2\/12:hover{
    width: 16.666667%;
  }

  .s1920\:hover\:w-3\/12:hover{
    width: 25%;
  }

  .s1920\:hover\:w-4\/12:hover{
    width: 33.333333%;
  }

  .s1920\:hover\:w-5\/12:hover{
    width: 41.666667%;
  }

  .s1920\:hover\:w-6\/12:hover{
    width: 50%;
  }

  .s1920\:hover\:w-7\/12:hover{
    width: 58.333333%;
  }

  .s1920\:hover\:w-8\/12:hover{
    width: 66.666667%;
  }

  .s1920\:hover\:w-9\/12:hover{
    width: 75%;
  }

  .s1920\:hover\:w-10\/12:hover{
    width: 83.333333%;
  }

  .s1920\:hover\:w-11\/12:hover{
    width: 91.666667%;
  }

  .s1920\:hover\:w-full:hover{
    width: 100%;
  }

  .s1920\:hover\:w-screen:hover{
    width: 100vw;
  }

  .s1920\:hover\:w-widePage:hover{
    width: 120rem;
  }

  .s1920\:hover\:w-page:hover{
    width: 80rem;
  }

  .s1920\:hover\:w-container:hover{
    width: 77.25rem;
  }

  .s1920\:hover\:w-tooltip:hover{
    width: 25rem;
  }

  .s1920\:hover\:w-smallTooltip:hover{
    width: 15rem;
  }

  .s1920\:hover\:w-xsmallTooltip:hover{
    width: 6.0rem;
  }

  .s1920\:hover\:w-sidebar:hover{
    width: 27rem;
  }

  .s1920\:hover\:w-doubleSidebar:hover{
    width: 25%;
  }

  .s1920\:hover\:w-practiceSidebar:hover{
    width: 22.5rem;
  }

  .s1920\:hover\:w-3\/8:hover{
    width: 37.5%;
  }

  .s1920\:hover\:w-1\/10:hover{
    width: 10%;
  }

  .s1920\:hover\:w-2\/10:hover{
    width: 20%;
  }

  .s1920\:hover\:w-3\/10:hover{
    width: 30%;
  }

  .s1920\:hover\:w-4\/10:hover{
    width: 40%;
  }

  .s1920\:hover\:w-5\/10:hover{
    width: 50%;
  }

  .s1920\:hover\:w-6\/10:hover{
    width: 60%;
  }

  .s1920\:hover\:w-7\/10:hover{
    width: 70%;
  }

  .s1920\:hover\:w-8\/10:hover{
    width: 80%;
  }

  .s1920\:hover\:w-9\/10:hover{
    width: 90%;
  }

  .s1920\:hover\:w-input:hover{
    width: 32.5rem;
  }

  .s1920\:hover\:w-inherit:hover{
    width: inherit;
  }

  .s1920\:focus\:w-0:focus{
    width: 0;
  }

  .s1920\:focus\:w-1:focus{
    width: 0.25rem;
  }

  .s1920\:focus\:w-2:focus{
    width: 0.5rem;
  }

  .s1920\:focus\:w-3:focus{
    width: 0.75rem;
  }

  .s1920\:focus\:w-4:focus{
    width: 1rem;
  }

  .s1920\:focus\:w-5:focus{
    width: 1.25rem;
  }

  .s1920\:focus\:w-6:focus{
    width: 1.5rem;
  }

  .s1920\:focus\:w-8:focus{
    width: 2rem;
  }

  .s1920\:focus\:w-10:focus{
    width: 2.5rem;
  }

  .s1920\:focus\:w-12:focus{
    width: 3rem;
  }

  .s1920\:focus\:w-14:focus{
    width: 3.5rem;
  }

  .s1920\:focus\:w-16:focus{
    width: 4rem;
  }

  .s1920\:focus\:w-20:focus{
    width: 5rem;
  }

  .s1920\:focus\:w-24:focus{
    width: 6rem;
  }

  .s1920\:focus\:w-32:focus{
    width: 8rem;
  }

  .s1920\:focus\:w-36:focus{
    width: 9rem;
  }

  .s1920\:focus\:w-40:focus{
    width: 10rem;
  }

  .s1920\:focus\:w-48:focus{
    width: 12rem;
  }

  .s1920\:focus\:w-56:focus{
    width: 14rem;
  }

  .s1920\:focus\:w-64:focus{
    width: 16rem;
  }

  .s1920\:focus\:w-auto:focus{
    width: auto;
  }

  .s1920\:focus\:w-px:focus{
    width: 1px;
  }

  .s1920\:focus\:w-1\/2:focus{
    width: 50%;
  }

  .s1920\:focus\:w-1\/3:focus{
    width: 33.333333%;
  }

  .s1920\:focus\:w-2\/3:focus{
    width: 66.666667%;
  }

  .s1920\:focus\:w-1\/4:focus{
    width: 25%;
  }

  .s1920\:focus\:w-2\/4:focus{
    width: 50%;
  }

  .s1920\:focus\:w-3\/4:focus{
    width: 75%;
  }

  .s1920\:focus\:w-1\/5:focus{
    width: 20%;
  }

  .s1920\:focus\:w-2\/5:focus{
    width: 40%;
  }

  .s1920\:focus\:w-3\/5:focus{
    width: 60%;
  }

  .s1920\:focus\:w-4\/5:focus{
    width: 80%;
  }

  .s1920\:focus\:w-1\/6:focus{
    width: 16.666667%;
  }

  .s1920\:focus\:w-2\/6:focus{
    width: 33.333333%;
  }

  .s1920\:focus\:w-3\/6:focus{
    width: 50%;
  }

  .s1920\:focus\:w-4\/6:focus{
    width: 66.666667%;
  }

  .s1920\:focus\:w-5\/6:focus{
    width: 83.333333%;
  }

  .s1920\:focus\:w-1\/12:focus{
    width: 8.333333%;
  }

  .s1920\:focus\:w-2\/12:focus{
    width: 16.666667%;
  }

  .s1920\:focus\:w-3\/12:focus{
    width: 25%;
  }

  .s1920\:focus\:w-4\/12:focus{
    width: 33.333333%;
  }

  .s1920\:focus\:w-5\/12:focus{
    width: 41.666667%;
  }

  .s1920\:focus\:w-6\/12:focus{
    width: 50%;
  }

  .s1920\:focus\:w-7\/12:focus{
    width: 58.333333%;
  }

  .s1920\:focus\:w-8\/12:focus{
    width: 66.666667%;
  }

  .s1920\:focus\:w-9\/12:focus{
    width: 75%;
  }

  .s1920\:focus\:w-10\/12:focus{
    width: 83.333333%;
  }

  .s1920\:focus\:w-11\/12:focus{
    width: 91.666667%;
  }

  .s1920\:focus\:w-full:focus{
    width: 100%;
  }

  .s1920\:focus\:w-screen:focus{
    width: 100vw;
  }

  .s1920\:focus\:w-widePage:focus{
    width: 120rem;
  }

  .s1920\:focus\:w-page:focus{
    width: 80rem;
  }

  .s1920\:focus\:w-container:focus{
    width: 77.25rem;
  }

  .s1920\:focus\:w-tooltip:focus{
    width: 25rem;
  }

  .s1920\:focus\:w-smallTooltip:focus{
    width: 15rem;
  }

  .s1920\:focus\:w-xsmallTooltip:focus{
    width: 6.0rem;
  }

  .s1920\:focus\:w-sidebar:focus{
    width: 27rem;
  }

  .s1920\:focus\:w-doubleSidebar:focus{
    width: 25%;
  }

  .s1920\:focus\:w-practiceSidebar:focus{
    width: 22.5rem;
  }

  .s1920\:focus\:w-3\/8:focus{
    width: 37.5%;
  }

  .s1920\:focus\:w-1\/10:focus{
    width: 10%;
  }

  .s1920\:focus\:w-2\/10:focus{
    width: 20%;
  }

  .s1920\:focus\:w-3\/10:focus{
    width: 30%;
  }

  .s1920\:focus\:w-4\/10:focus{
    width: 40%;
  }

  .s1920\:focus\:w-5\/10:focus{
    width: 50%;
  }

  .s1920\:focus\:w-6\/10:focus{
    width: 60%;
  }

  .s1920\:focus\:w-7\/10:focus{
    width: 70%;
  }

  .s1920\:focus\:w-8\/10:focus{
    width: 80%;
  }

  .s1920\:focus\:w-9\/10:focus{
    width: 90%;
  }

  .s1920\:focus\:w-input:focus{
    width: 32.5rem;
  }

  .s1920\:focus\:w-inherit:focus{
    width: inherit;
  }

  .s1920\:active\:w-0:active{
    width: 0;
  }

  .s1920\:active\:w-1:active{
    width: 0.25rem;
  }

  .s1920\:active\:w-2:active{
    width: 0.5rem;
  }

  .s1920\:active\:w-3:active{
    width: 0.75rem;
  }

  .s1920\:active\:w-4:active{
    width: 1rem;
  }

  .s1920\:active\:w-5:active{
    width: 1.25rem;
  }

  .s1920\:active\:w-6:active{
    width: 1.5rem;
  }

  .s1920\:active\:w-8:active{
    width: 2rem;
  }

  .s1920\:active\:w-10:active{
    width: 2.5rem;
  }

  .s1920\:active\:w-12:active{
    width: 3rem;
  }

  .s1920\:active\:w-14:active{
    width: 3.5rem;
  }

  .s1920\:active\:w-16:active{
    width: 4rem;
  }

  .s1920\:active\:w-20:active{
    width: 5rem;
  }

  .s1920\:active\:w-24:active{
    width: 6rem;
  }

  .s1920\:active\:w-32:active{
    width: 8rem;
  }

  .s1920\:active\:w-36:active{
    width: 9rem;
  }

  .s1920\:active\:w-40:active{
    width: 10rem;
  }

  .s1920\:active\:w-48:active{
    width: 12rem;
  }

  .s1920\:active\:w-56:active{
    width: 14rem;
  }

  .s1920\:active\:w-64:active{
    width: 16rem;
  }

  .s1920\:active\:w-auto:active{
    width: auto;
  }

  .s1920\:active\:w-px:active{
    width: 1px;
  }

  .s1920\:active\:w-1\/2:active{
    width: 50%;
  }

  .s1920\:active\:w-1\/3:active{
    width: 33.333333%;
  }

  .s1920\:active\:w-2\/3:active{
    width: 66.666667%;
  }

  .s1920\:active\:w-1\/4:active{
    width: 25%;
  }

  .s1920\:active\:w-2\/4:active{
    width: 50%;
  }

  .s1920\:active\:w-3\/4:active{
    width: 75%;
  }

  .s1920\:active\:w-1\/5:active{
    width: 20%;
  }

  .s1920\:active\:w-2\/5:active{
    width: 40%;
  }

  .s1920\:active\:w-3\/5:active{
    width: 60%;
  }

  .s1920\:active\:w-4\/5:active{
    width: 80%;
  }

  .s1920\:active\:w-1\/6:active{
    width: 16.666667%;
  }

  .s1920\:active\:w-2\/6:active{
    width: 33.333333%;
  }

  .s1920\:active\:w-3\/6:active{
    width: 50%;
  }

  .s1920\:active\:w-4\/6:active{
    width: 66.666667%;
  }

  .s1920\:active\:w-5\/6:active{
    width: 83.333333%;
  }

  .s1920\:active\:w-1\/12:active{
    width: 8.333333%;
  }

  .s1920\:active\:w-2\/12:active{
    width: 16.666667%;
  }

  .s1920\:active\:w-3\/12:active{
    width: 25%;
  }

  .s1920\:active\:w-4\/12:active{
    width: 33.333333%;
  }

  .s1920\:active\:w-5\/12:active{
    width: 41.666667%;
  }

  .s1920\:active\:w-6\/12:active{
    width: 50%;
  }

  .s1920\:active\:w-7\/12:active{
    width: 58.333333%;
  }

  .s1920\:active\:w-8\/12:active{
    width: 66.666667%;
  }

  .s1920\:active\:w-9\/12:active{
    width: 75%;
  }

  .s1920\:active\:w-10\/12:active{
    width: 83.333333%;
  }

  .s1920\:active\:w-11\/12:active{
    width: 91.666667%;
  }

  .s1920\:active\:w-full:active{
    width: 100%;
  }

  .s1920\:active\:w-screen:active{
    width: 100vw;
  }

  .s1920\:active\:w-widePage:active{
    width: 120rem;
  }

  .s1920\:active\:w-page:active{
    width: 80rem;
  }

  .s1920\:active\:w-container:active{
    width: 77.25rem;
  }

  .s1920\:active\:w-tooltip:active{
    width: 25rem;
  }

  .s1920\:active\:w-smallTooltip:active{
    width: 15rem;
  }

  .s1920\:active\:w-xsmallTooltip:active{
    width: 6.0rem;
  }

  .s1920\:active\:w-sidebar:active{
    width: 27rem;
  }

  .s1920\:active\:w-doubleSidebar:active{
    width: 25%;
  }

  .s1920\:active\:w-practiceSidebar:active{
    width: 22.5rem;
  }

  .s1920\:active\:w-3\/8:active{
    width: 37.5%;
  }

  .s1920\:active\:w-1\/10:active{
    width: 10%;
  }

  .s1920\:active\:w-2\/10:active{
    width: 20%;
  }

  .s1920\:active\:w-3\/10:active{
    width: 30%;
  }

  .s1920\:active\:w-4\/10:active{
    width: 40%;
  }

  .s1920\:active\:w-5\/10:active{
    width: 50%;
  }

  .s1920\:active\:w-6\/10:active{
    width: 60%;
  }

  .s1920\:active\:w-7\/10:active{
    width: 70%;
  }

  .s1920\:active\:w-8\/10:active{
    width: 80%;
  }

  .s1920\:active\:w-9\/10:active{
    width: 90%;
  }

  .s1920\:active\:w-input:active{
    width: 32.5rem;
  }

  .s1920\:active\:w-inherit:active{
    width: inherit;
  }

  .s1920\:first\:w-0:first-child{
    width: 0;
  }

  .s1920\:first\:w-1:first-child{
    width: 0.25rem;
  }

  .s1920\:first\:w-2:first-child{
    width: 0.5rem;
  }

  .s1920\:first\:w-3:first-child{
    width: 0.75rem;
  }

  .s1920\:first\:w-4:first-child{
    width: 1rem;
  }

  .s1920\:first\:w-5:first-child{
    width: 1.25rem;
  }

  .s1920\:first\:w-6:first-child{
    width: 1.5rem;
  }

  .s1920\:first\:w-8:first-child{
    width: 2rem;
  }

  .s1920\:first\:w-10:first-child{
    width: 2.5rem;
  }

  .s1920\:first\:w-12:first-child{
    width: 3rem;
  }

  .s1920\:first\:w-14:first-child{
    width: 3.5rem;
  }

  .s1920\:first\:w-16:first-child{
    width: 4rem;
  }

  .s1920\:first\:w-20:first-child{
    width: 5rem;
  }

  .s1920\:first\:w-24:first-child{
    width: 6rem;
  }

  .s1920\:first\:w-32:first-child{
    width: 8rem;
  }

  .s1920\:first\:w-36:first-child{
    width: 9rem;
  }

  .s1920\:first\:w-40:first-child{
    width: 10rem;
  }

  .s1920\:first\:w-48:first-child{
    width: 12rem;
  }

  .s1920\:first\:w-56:first-child{
    width: 14rem;
  }

  .s1920\:first\:w-64:first-child{
    width: 16rem;
  }

  .s1920\:first\:w-auto:first-child{
    width: auto;
  }

  .s1920\:first\:w-px:first-child{
    width: 1px;
  }

  .s1920\:first\:w-1\/2:first-child{
    width: 50%;
  }

  .s1920\:first\:w-1\/3:first-child{
    width: 33.333333%;
  }

  .s1920\:first\:w-2\/3:first-child{
    width: 66.666667%;
  }

  .s1920\:first\:w-1\/4:first-child{
    width: 25%;
  }

  .s1920\:first\:w-2\/4:first-child{
    width: 50%;
  }

  .s1920\:first\:w-3\/4:first-child{
    width: 75%;
  }

  .s1920\:first\:w-1\/5:first-child{
    width: 20%;
  }

  .s1920\:first\:w-2\/5:first-child{
    width: 40%;
  }

  .s1920\:first\:w-3\/5:first-child{
    width: 60%;
  }

  .s1920\:first\:w-4\/5:first-child{
    width: 80%;
  }

  .s1920\:first\:w-1\/6:first-child{
    width: 16.666667%;
  }

  .s1920\:first\:w-2\/6:first-child{
    width: 33.333333%;
  }

  .s1920\:first\:w-3\/6:first-child{
    width: 50%;
  }

  .s1920\:first\:w-4\/6:first-child{
    width: 66.666667%;
  }

  .s1920\:first\:w-5\/6:first-child{
    width: 83.333333%;
  }

  .s1920\:first\:w-1\/12:first-child{
    width: 8.333333%;
  }

  .s1920\:first\:w-2\/12:first-child{
    width: 16.666667%;
  }

  .s1920\:first\:w-3\/12:first-child{
    width: 25%;
  }

  .s1920\:first\:w-4\/12:first-child{
    width: 33.333333%;
  }

  .s1920\:first\:w-5\/12:first-child{
    width: 41.666667%;
  }

  .s1920\:first\:w-6\/12:first-child{
    width: 50%;
  }

  .s1920\:first\:w-7\/12:first-child{
    width: 58.333333%;
  }

  .s1920\:first\:w-8\/12:first-child{
    width: 66.666667%;
  }

  .s1920\:first\:w-9\/12:first-child{
    width: 75%;
  }

  .s1920\:first\:w-10\/12:first-child{
    width: 83.333333%;
  }

  .s1920\:first\:w-11\/12:first-child{
    width: 91.666667%;
  }

  .s1920\:first\:w-full:first-child{
    width: 100%;
  }

  .s1920\:first\:w-screen:first-child{
    width: 100vw;
  }

  .s1920\:first\:w-widePage:first-child{
    width: 120rem;
  }

  .s1920\:first\:w-page:first-child{
    width: 80rem;
  }

  .s1920\:first\:w-container:first-child{
    width: 77.25rem;
  }

  .s1920\:first\:w-tooltip:first-child{
    width: 25rem;
  }

  .s1920\:first\:w-smallTooltip:first-child{
    width: 15rem;
  }

  .s1920\:first\:w-xsmallTooltip:first-child{
    width: 6.0rem;
  }

  .s1920\:first\:w-sidebar:first-child{
    width: 27rem;
  }

  .s1920\:first\:w-doubleSidebar:first-child{
    width: 25%;
  }

  .s1920\:first\:w-practiceSidebar:first-child{
    width: 22.5rem;
  }

  .s1920\:first\:w-3\/8:first-child{
    width: 37.5%;
  }

  .s1920\:first\:w-1\/10:first-child{
    width: 10%;
  }

  .s1920\:first\:w-2\/10:first-child{
    width: 20%;
  }

  .s1920\:first\:w-3\/10:first-child{
    width: 30%;
  }

  .s1920\:first\:w-4\/10:first-child{
    width: 40%;
  }

  .s1920\:first\:w-5\/10:first-child{
    width: 50%;
  }

  .s1920\:first\:w-6\/10:first-child{
    width: 60%;
  }

  .s1920\:first\:w-7\/10:first-child{
    width: 70%;
  }

  .s1920\:first\:w-8\/10:first-child{
    width: 80%;
  }

  .s1920\:first\:w-9\/10:first-child{
    width: 90%;
  }

  .s1920\:first\:w-input:first-child{
    width: 32.5rem;
  }

  .s1920\:first\:w-inherit:first-child{
    width: inherit;
  }

  .s1920\:last\:w-0:last-child{
    width: 0;
  }

  .s1920\:last\:w-1:last-child{
    width: 0.25rem;
  }

  .s1920\:last\:w-2:last-child{
    width: 0.5rem;
  }

  .s1920\:last\:w-3:last-child{
    width: 0.75rem;
  }

  .s1920\:last\:w-4:last-child{
    width: 1rem;
  }

  .s1920\:last\:w-5:last-child{
    width: 1.25rem;
  }

  .s1920\:last\:w-6:last-child{
    width: 1.5rem;
  }

  .s1920\:last\:w-8:last-child{
    width: 2rem;
  }

  .s1920\:last\:w-10:last-child{
    width: 2.5rem;
  }

  .s1920\:last\:w-12:last-child{
    width: 3rem;
  }

  .s1920\:last\:w-14:last-child{
    width: 3.5rem;
  }

  .s1920\:last\:w-16:last-child{
    width: 4rem;
  }

  .s1920\:last\:w-20:last-child{
    width: 5rem;
  }

  .s1920\:last\:w-24:last-child{
    width: 6rem;
  }

  .s1920\:last\:w-32:last-child{
    width: 8rem;
  }

  .s1920\:last\:w-36:last-child{
    width: 9rem;
  }

  .s1920\:last\:w-40:last-child{
    width: 10rem;
  }

  .s1920\:last\:w-48:last-child{
    width: 12rem;
  }

  .s1920\:last\:w-56:last-child{
    width: 14rem;
  }

  .s1920\:last\:w-64:last-child{
    width: 16rem;
  }

  .s1920\:last\:w-auto:last-child{
    width: auto;
  }

  .s1920\:last\:w-px:last-child{
    width: 1px;
  }

  .s1920\:last\:w-1\/2:last-child{
    width: 50%;
  }

  .s1920\:last\:w-1\/3:last-child{
    width: 33.333333%;
  }

  .s1920\:last\:w-2\/3:last-child{
    width: 66.666667%;
  }

  .s1920\:last\:w-1\/4:last-child{
    width: 25%;
  }

  .s1920\:last\:w-2\/4:last-child{
    width: 50%;
  }

  .s1920\:last\:w-3\/4:last-child{
    width: 75%;
  }

  .s1920\:last\:w-1\/5:last-child{
    width: 20%;
  }

  .s1920\:last\:w-2\/5:last-child{
    width: 40%;
  }

  .s1920\:last\:w-3\/5:last-child{
    width: 60%;
  }

  .s1920\:last\:w-4\/5:last-child{
    width: 80%;
  }

  .s1920\:last\:w-1\/6:last-child{
    width: 16.666667%;
  }

  .s1920\:last\:w-2\/6:last-child{
    width: 33.333333%;
  }

  .s1920\:last\:w-3\/6:last-child{
    width: 50%;
  }

  .s1920\:last\:w-4\/6:last-child{
    width: 66.666667%;
  }

  .s1920\:last\:w-5\/6:last-child{
    width: 83.333333%;
  }

  .s1920\:last\:w-1\/12:last-child{
    width: 8.333333%;
  }

  .s1920\:last\:w-2\/12:last-child{
    width: 16.666667%;
  }

  .s1920\:last\:w-3\/12:last-child{
    width: 25%;
  }

  .s1920\:last\:w-4\/12:last-child{
    width: 33.333333%;
  }

  .s1920\:last\:w-5\/12:last-child{
    width: 41.666667%;
  }

  .s1920\:last\:w-6\/12:last-child{
    width: 50%;
  }

  .s1920\:last\:w-7\/12:last-child{
    width: 58.333333%;
  }

  .s1920\:last\:w-8\/12:last-child{
    width: 66.666667%;
  }

  .s1920\:last\:w-9\/12:last-child{
    width: 75%;
  }

  .s1920\:last\:w-10\/12:last-child{
    width: 83.333333%;
  }

  .s1920\:last\:w-11\/12:last-child{
    width: 91.666667%;
  }

  .s1920\:last\:w-full:last-child{
    width: 100%;
  }

  .s1920\:last\:w-screen:last-child{
    width: 100vw;
  }

  .s1920\:last\:w-widePage:last-child{
    width: 120rem;
  }

  .s1920\:last\:w-page:last-child{
    width: 80rem;
  }

  .s1920\:last\:w-container:last-child{
    width: 77.25rem;
  }

  .s1920\:last\:w-tooltip:last-child{
    width: 25rem;
  }

  .s1920\:last\:w-smallTooltip:last-child{
    width: 15rem;
  }

  .s1920\:last\:w-xsmallTooltip:last-child{
    width: 6.0rem;
  }

  .s1920\:last\:w-sidebar:last-child{
    width: 27rem;
  }

  .s1920\:last\:w-doubleSidebar:last-child{
    width: 25%;
  }

  .s1920\:last\:w-practiceSidebar:last-child{
    width: 22.5rem;
  }

  .s1920\:last\:w-3\/8:last-child{
    width: 37.5%;
  }

  .s1920\:last\:w-1\/10:last-child{
    width: 10%;
  }

  .s1920\:last\:w-2\/10:last-child{
    width: 20%;
  }

  .s1920\:last\:w-3\/10:last-child{
    width: 30%;
  }

  .s1920\:last\:w-4\/10:last-child{
    width: 40%;
  }

  .s1920\:last\:w-5\/10:last-child{
    width: 50%;
  }

  .s1920\:last\:w-6\/10:last-child{
    width: 60%;
  }

  .s1920\:last\:w-7\/10:last-child{
    width: 70%;
  }

  .s1920\:last\:w-8\/10:last-child{
    width: 80%;
  }

  .s1920\:last\:w-9\/10:last-child{
    width: 90%;
  }

  .s1920\:last\:w-input:last-child{
    width: 32.5rem;
  }

  .s1920\:last\:w-inherit:last-child{
    width: inherit;
  }

  .s1920\:z-auto{
    z-index: auto;
  }

  .s1920\:z-static-position{
    z-index: 300;
  }

  .s1920\:z-tooltip{
    z-index: 201;
  }

  .s1920\:z-overlay{
    z-index: 400;
  }

  .s1920\:hover\:z-auto:hover{
    z-index: auto;
  }

  .s1920\:hover\:z-static-position:hover{
    z-index: 300;
  }

  .s1920\:hover\:z-tooltip:hover{
    z-index: 201;
  }

  .s1920\:hover\:z-overlay:hover{
    z-index: 400;
  }

  .s1920\:focus\:z-auto:focus{
    z-index: auto;
  }

  .s1920\:focus\:z-static-position:focus{
    z-index: 300;
  }

  .s1920\:focus\:z-tooltip:focus{
    z-index: 201;
  }

  .s1920\:focus\:z-overlay:focus{
    z-index: 400;
  }

  .s1920\:active\:z-auto:active{
    z-index: auto;
  }

  .s1920\:active\:z-static-position:active{
    z-index: 300;
  }

  .s1920\:active\:z-tooltip:active{
    z-index: 201;
  }

  .s1920\:active\:z-overlay:active{
    z-index: 400;
  }

  .s1920\:first\:z-auto:first-child{
    z-index: auto;
  }

  .s1920\:first\:z-static-position:first-child{
    z-index: 300;
  }

  .s1920\:first\:z-tooltip:first-child{
    z-index: 201;
  }

  .s1920\:first\:z-overlay:first-child{
    z-index: 400;
  }

  .s1920\:last\:z-auto:last-child{
    z-index: auto;
  }

  .s1920\:last\:z-static-position:last-child{
    z-index: 300;
  }

  .s1920\:last\:z-tooltip:last-child{
    z-index: 201;
  }

  .s1920\:last\:z-overlay:last-child{
    z-index: 400;
  }

  .s1920\:gap-0{
    grid-gap: 0;
    gap: 0;
  }

  .s1920\:gap-1{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1920\:gap-2{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1920\:gap-3{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1920\:gap-4{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1920\:gap-5{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1920\:gap-6{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1920\:gap-8{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1920\:gap-10{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1920\:gap-12{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1920\:gap-14{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1920\:gap-16{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1920\:gap-20{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1920\:gap-24{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1920\:gap-32{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1920\:gap-40{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1920\:gap-48{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1920\:gap-56{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1920\:gap-64{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1920\:gap-px{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1920\:col-gap-0{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:col-gap-1{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:col-gap-2{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:col-gap-3{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:col-gap-4{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:col-gap-5{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:col-gap-6{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:col-gap-8{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:col-gap-10{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:col-gap-12{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:col-gap-14{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:col-gap-16{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:col-gap-20{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:col-gap-24{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:col-gap-32{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:col-gap-40{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:col-gap-48{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:col-gap-56{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:col-gap-64{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:col-gap-px{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:gap-x-0{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:gap-x-1{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:gap-x-2{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:gap-x-3{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:gap-x-4{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:gap-x-5{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:gap-x-6{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:gap-x-8{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:gap-x-10{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:gap-x-12{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:gap-x-14{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:gap-x-16{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:gap-x-20{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:gap-x-24{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:gap-x-32{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:gap-x-40{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:gap-x-48{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:gap-x-56{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:gap-x-64{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:gap-x-px{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:row-gap-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:row-gap-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:row-gap-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:row-gap-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:row-gap-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:row-gap-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:row-gap-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:row-gap-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:row-gap-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:row-gap-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:row-gap-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:row-gap-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:row-gap-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:row-gap-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:row-gap-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:row-gap-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:row-gap-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:row-gap-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:row-gap-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:row-gap-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:gap-y-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:gap-y-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:gap-y-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:gap-y-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:gap-y-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:gap-y-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:gap-y-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:gap-y-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:gap-y-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:gap-y-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:gap-y-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:gap-y-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:gap-y-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:gap-y-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:gap-y-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:gap-y-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:gap-y-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:gap-y-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:gap-y-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:gap-y-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:hover\:gap-0:hover{
    grid-gap: 0;
    gap: 0;
  }

  .s1920\:hover\:gap-1:hover{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1920\:hover\:gap-2:hover{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1920\:hover\:gap-3:hover{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1920\:hover\:gap-4:hover{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1920\:hover\:gap-5:hover{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1920\:hover\:gap-6:hover{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1920\:hover\:gap-8:hover{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1920\:hover\:gap-10:hover{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1920\:hover\:gap-12:hover{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1920\:hover\:gap-14:hover{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1920\:hover\:gap-16:hover{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1920\:hover\:gap-20:hover{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1920\:hover\:gap-24:hover{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1920\:hover\:gap-32:hover{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1920\:hover\:gap-40:hover{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1920\:hover\:gap-48:hover{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1920\:hover\:gap-56:hover{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1920\:hover\:gap-64:hover{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1920\:hover\:gap-px:hover{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1920\:hover\:col-gap-0:hover{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:hover\:col-gap-1:hover{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:hover\:col-gap-2:hover{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:hover\:col-gap-3:hover{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:hover\:col-gap-4:hover{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:hover\:col-gap-5:hover{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:hover\:col-gap-6:hover{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:hover\:col-gap-8:hover{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:hover\:col-gap-10:hover{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:hover\:col-gap-12:hover{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:hover\:col-gap-14:hover{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:hover\:col-gap-16:hover{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:hover\:col-gap-20:hover{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:hover\:col-gap-24:hover{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:hover\:col-gap-32:hover{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:hover\:col-gap-40:hover{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:hover\:col-gap-48:hover{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:hover\:col-gap-56:hover{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:hover\:col-gap-64:hover{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:hover\:col-gap-px:hover{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:hover\:gap-x-0:hover{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:hover\:gap-x-1:hover{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:hover\:gap-x-2:hover{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:hover\:gap-x-3:hover{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:hover\:gap-x-4:hover{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:hover\:gap-x-5:hover{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:hover\:gap-x-6:hover{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:hover\:gap-x-8:hover{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:hover\:gap-x-10:hover{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:hover\:gap-x-12:hover{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:hover\:gap-x-14:hover{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:hover\:gap-x-16:hover{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:hover\:gap-x-20:hover{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:hover\:gap-x-24:hover{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:hover\:gap-x-32:hover{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:hover\:gap-x-40:hover{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:hover\:gap-x-48:hover{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:hover\:gap-x-56:hover{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:hover\:gap-x-64:hover{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:hover\:gap-x-px:hover{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:hover\:row-gap-0:hover{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:hover\:row-gap-1:hover{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:hover\:row-gap-2:hover{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:hover\:row-gap-3:hover{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:hover\:row-gap-4:hover{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:hover\:row-gap-5:hover{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:hover\:row-gap-6:hover{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:hover\:row-gap-8:hover{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:hover\:row-gap-10:hover{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:hover\:row-gap-12:hover{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:hover\:row-gap-14:hover{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:hover\:row-gap-16:hover{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:hover\:row-gap-20:hover{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:hover\:row-gap-24:hover{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:hover\:row-gap-32:hover{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:hover\:row-gap-40:hover{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:hover\:row-gap-48:hover{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:hover\:row-gap-56:hover{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:hover\:row-gap-64:hover{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:hover\:row-gap-px:hover{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:hover\:gap-y-0:hover{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:hover\:gap-y-1:hover{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:hover\:gap-y-2:hover{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:hover\:gap-y-3:hover{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:hover\:gap-y-4:hover{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:hover\:gap-y-5:hover{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:hover\:gap-y-6:hover{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:hover\:gap-y-8:hover{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:hover\:gap-y-10:hover{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:hover\:gap-y-12:hover{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:hover\:gap-y-14:hover{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:hover\:gap-y-16:hover{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:hover\:gap-y-20:hover{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:hover\:gap-y-24:hover{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:hover\:gap-y-32:hover{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:hover\:gap-y-40:hover{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:hover\:gap-y-48:hover{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:hover\:gap-y-56:hover{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:hover\:gap-y-64:hover{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:hover\:gap-y-px:hover{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:focus\:gap-0:focus{
    grid-gap: 0;
    gap: 0;
  }

  .s1920\:focus\:gap-1:focus{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1920\:focus\:gap-2:focus{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1920\:focus\:gap-3:focus{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1920\:focus\:gap-4:focus{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1920\:focus\:gap-5:focus{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1920\:focus\:gap-6:focus{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1920\:focus\:gap-8:focus{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1920\:focus\:gap-10:focus{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1920\:focus\:gap-12:focus{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1920\:focus\:gap-14:focus{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1920\:focus\:gap-16:focus{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1920\:focus\:gap-20:focus{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1920\:focus\:gap-24:focus{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1920\:focus\:gap-32:focus{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1920\:focus\:gap-40:focus{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1920\:focus\:gap-48:focus{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1920\:focus\:gap-56:focus{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1920\:focus\:gap-64:focus{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1920\:focus\:gap-px:focus{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1920\:focus\:col-gap-0:focus{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:focus\:col-gap-1:focus{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:focus\:col-gap-2:focus{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:focus\:col-gap-3:focus{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:focus\:col-gap-4:focus{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:focus\:col-gap-5:focus{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:focus\:col-gap-6:focus{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:focus\:col-gap-8:focus{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:focus\:col-gap-10:focus{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:focus\:col-gap-12:focus{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:focus\:col-gap-14:focus{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:focus\:col-gap-16:focus{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:focus\:col-gap-20:focus{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:focus\:col-gap-24:focus{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:focus\:col-gap-32:focus{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:focus\:col-gap-40:focus{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:focus\:col-gap-48:focus{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:focus\:col-gap-56:focus{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:focus\:col-gap-64:focus{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:focus\:col-gap-px:focus{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:focus\:gap-x-0:focus{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:focus\:gap-x-1:focus{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:focus\:gap-x-2:focus{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:focus\:gap-x-3:focus{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:focus\:gap-x-4:focus{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:focus\:gap-x-5:focus{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:focus\:gap-x-6:focus{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:focus\:gap-x-8:focus{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:focus\:gap-x-10:focus{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:focus\:gap-x-12:focus{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:focus\:gap-x-14:focus{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:focus\:gap-x-16:focus{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:focus\:gap-x-20:focus{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:focus\:gap-x-24:focus{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:focus\:gap-x-32:focus{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:focus\:gap-x-40:focus{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:focus\:gap-x-48:focus{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:focus\:gap-x-56:focus{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:focus\:gap-x-64:focus{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:focus\:gap-x-px:focus{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:focus\:row-gap-0:focus{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:focus\:row-gap-1:focus{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:focus\:row-gap-2:focus{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:focus\:row-gap-3:focus{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:focus\:row-gap-4:focus{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:focus\:row-gap-5:focus{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:focus\:row-gap-6:focus{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:focus\:row-gap-8:focus{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:focus\:row-gap-10:focus{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:focus\:row-gap-12:focus{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:focus\:row-gap-14:focus{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:focus\:row-gap-16:focus{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:focus\:row-gap-20:focus{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:focus\:row-gap-24:focus{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:focus\:row-gap-32:focus{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:focus\:row-gap-40:focus{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:focus\:row-gap-48:focus{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:focus\:row-gap-56:focus{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:focus\:row-gap-64:focus{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:focus\:row-gap-px:focus{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:focus\:gap-y-0:focus{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:focus\:gap-y-1:focus{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:focus\:gap-y-2:focus{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:focus\:gap-y-3:focus{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:focus\:gap-y-4:focus{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:focus\:gap-y-5:focus{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:focus\:gap-y-6:focus{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:focus\:gap-y-8:focus{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:focus\:gap-y-10:focus{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:focus\:gap-y-12:focus{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:focus\:gap-y-14:focus{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:focus\:gap-y-16:focus{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:focus\:gap-y-20:focus{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:focus\:gap-y-24:focus{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:focus\:gap-y-32:focus{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:focus\:gap-y-40:focus{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:focus\:gap-y-48:focus{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:focus\:gap-y-56:focus{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:focus\:gap-y-64:focus{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:focus\:gap-y-px:focus{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:active\:gap-0:active{
    grid-gap: 0;
    gap: 0;
  }

  .s1920\:active\:gap-1:active{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1920\:active\:gap-2:active{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1920\:active\:gap-3:active{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1920\:active\:gap-4:active{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1920\:active\:gap-5:active{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1920\:active\:gap-6:active{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1920\:active\:gap-8:active{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1920\:active\:gap-10:active{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1920\:active\:gap-12:active{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1920\:active\:gap-14:active{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1920\:active\:gap-16:active{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1920\:active\:gap-20:active{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1920\:active\:gap-24:active{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1920\:active\:gap-32:active{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1920\:active\:gap-40:active{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1920\:active\:gap-48:active{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1920\:active\:gap-56:active{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1920\:active\:gap-64:active{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1920\:active\:gap-px:active{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1920\:active\:col-gap-0:active{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:active\:col-gap-1:active{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:active\:col-gap-2:active{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:active\:col-gap-3:active{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:active\:col-gap-4:active{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:active\:col-gap-5:active{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:active\:col-gap-6:active{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:active\:col-gap-8:active{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:active\:col-gap-10:active{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:active\:col-gap-12:active{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:active\:col-gap-14:active{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:active\:col-gap-16:active{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:active\:col-gap-20:active{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:active\:col-gap-24:active{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:active\:col-gap-32:active{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:active\:col-gap-40:active{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:active\:col-gap-48:active{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:active\:col-gap-56:active{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:active\:col-gap-64:active{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:active\:col-gap-px:active{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:active\:gap-x-0:active{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:active\:gap-x-1:active{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:active\:gap-x-2:active{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:active\:gap-x-3:active{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:active\:gap-x-4:active{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:active\:gap-x-5:active{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:active\:gap-x-6:active{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:active\:gap-x-8:active{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:active\:gap-x-10:active{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:active\:gap-x-12:active{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:active\:gap-x-14:active{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:active\:gap-x-16:active{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:active\:gap-x-20:active{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:active\:gap-x-24:active{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:active\:gap-x-32:active{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:active\:gap-x-40:active{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:active\:gap-x-48:active{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:active\:gap-x-56:active{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:active\:gap-x-64:active{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:active\:gap-x-px:active{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:active\:row-gap-0:active{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:active\:row-gap-1:active{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:active\:row-gap-2:active{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:active\:row-gap-3:active{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:active\:row-gap-4:active{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:active\:row-gap-5:active{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:active\:row-gap-6:active{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:active\:row-gap-8:active{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:active\:row-gap-10:active{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:active\:row-gap-12:active{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:active\:row-gap-14:active{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:active\:row-gap-16:active{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:active\:row-gap-20:active{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:active\:row-gap-24:active{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:active\:row-gap-32:active{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:active\:row-gap-40:active{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:active\:row-gap-48:active{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:active\:row-gap-56:active{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:active\:row-gap-64:active{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:active\:row-gap-px:active{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:active\:gap-y-0:active{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:active\:gap-y-1:active{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:active\:gap-y-2:active{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:active\:gap-y-3:active{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:active\:gap-y-4:active{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:active\:gap-y-5:active{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:active\:gap-y-6:active{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:active\:gap-y-8:active{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:active\:gap-y-10:active{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:active\:gap-y-12:active{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:active\:gap-y-14:active{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:active\:gap-y-16:active{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:active\:gap-y-20:active{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:active\:gap-y-24:active{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:active\:gap-y-32:active{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:active\:gap-y-40:active{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:active\:gap-y-48:active{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:active\:gap-y-56:active{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:active\:gap-y-64:active{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:active\:gap-y-px:active{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:first\:gap-0:first-child{
    grid-gap: 0;
    gap: 0;
  }

  .s1920\:first\:gap-1:first-child{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1920\:first\:gap-2:first-child{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1920\:first\:gap-3:first-child{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1920\:first\:gap-4:first-child{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1920\:first\:gap-5:first-child{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1920\:first\:gap-6:first-child{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1920\:first\:gap-8:first-child{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1920\:first\:gap-10:first-child{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1920\:first\:gap-12:first-child{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1920\:first\:gap-14:first-child{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1920\:first\:gap-16:first-child{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1920\:first\:gap-20:first-child{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1920\:first\:gap-24:first-child{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1920\:first\:gap-32:first-child{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1920\:first\:gap-40:first-child{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1920\:first\:gap-48:first-child{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1920\:first\:gap-56:first-child{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1920\:first\:gap-64:first-child{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1920\:first\:gap-px:first-child{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1920\:first\:col-gap-0:first-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:first\:col-gap-1:first-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:first\:col-gap-2:first-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:first\:col-gap-3:first-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:first\:col-gap-4:first-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:first\:col-gap-5:first-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:first\:col-gap-6:first-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:first\:col-gap-8:first-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:first\:col-gap-10:first-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:first\:col-gap-12:first-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:first\:col-gap-14:first-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:first\:col-gap-16:first-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:first\:col-gap-20:first-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:first\:col-gap-24:first-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:first\:col-gap-32:first-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:first\:col-gap-40:first-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:first\:col-gap-48:first-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:first\:col-gap-56:first-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:first\:col-gap-64:first-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:first\:col-gap-px:first-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:first\:gap-x-0:first-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:first\:gap-x-1:first-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:first\:gap-x-2:first-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:first\:gap-x-3:first-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:first\:gap-x-4:first-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:first\:gap-x-5:first-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:first\:gap-x-6:first-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:first\:gap-x-8:first-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:first\:gap-x-10:first-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:first\:gap-x-12:first-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:first\:gap-x-14:first-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:first\:gap-x-16:first-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:first\:gap-x-20:first-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:first\:gap-x-24:first-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:first\:gap-x-32:first-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:first\:gap-x-40:first-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:first\:gap-x-48:first-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:first\:gap-x-56:first-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:first\:gap-x-64:first-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:first\:gap-x-px:first-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:first\:row-gap-0:first-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:first\:row-gap-1:first-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:first\:row-gap-2:first-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:first\:row-gap-3:first-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:first\:row-gap-4:first-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:first\:row-gap-5:first-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:first\:row-gap-6:first-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:first\:row-gap-8:first-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:first\:row-gap-10:first-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:first\:row-gap-12:first-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:first\:row-gap-14:first-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:first\:row-gap-16:first-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:first\:row-gap-20:first-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:first\:row-gap-24:first-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:first\:row-gap-32:first-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:first\:row-gap-40:first-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:first\:row-gap-48:first-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:first\:row-gap-56:first-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:first\:row-gap-64:first-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:first\:row-gap-px:first-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:first\:gap-y-0:first-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:first\:gap-y-1:first-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:first\:gap-y-2:first-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:first\:gap-y-3:first-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:first\:gap-y-4:first-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:first\:gap-y-5:first-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:first\:gap-y-6:first-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:first\:gap-y-8:first-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:first\:gap-y-10:first-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:first\:gap-y-12:first-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:first\:gap-y-14:first-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:first\:gap-y-16:first-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:first\:gap-y-20:first-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:first\:gap-y-24:first-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:first\:gap-y-32:first-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:first\:gap-y-40:first-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:first\:gap-y-48:first-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:first\:gap-y-56:first-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:first\:gap-y-64:first-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:first\:gap-y-px:first-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:last\:gap-0:last-child{
    grid-gap: 0;
    gap: 0;
  }

  .s1920\:last\:gap-1:last-child{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .s1920\:last\:gap-2:last-child{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .s1920\:last\:gap-3:last-child{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .s1920\:last\:gap-4:last-child{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .s1920\:last\:gap-5:last-child{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .s1920\:last\:gap-6:last-child{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .s1920\:last\:gap-8:last-child{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .s1920\:last\:gap-10:last-child{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .s1920\:last\:gap-12:last-child{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .s1920\:last\:gap-14:last-child{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .s1920\:last\:gap-16:last-child{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .s1920\:last\:gap-20:last-child{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .s1920\:last\:gap-24:last-child{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .s1920\:last\:gap-32:last-child{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .s1920\:last\:gap-40:last-child{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .s1920\:last\:gap-48:last-child{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .s1920\:last\:gap-56:last-child{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .s1920\:last\:gap-64:last-child{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .s1920\:last\:gap-px:last-child{
    grid-gap: 1px;
    gap: 1px;
  }

  .s1920\:last\:col-gap-0:last-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:last\:col-gap-1:last-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:last\:col-gap-2:last-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:last\:col-gap-3:last-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:last\:col-gap-4:last-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:last\:col-gap-5:last-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:last\:col-gap-6:last-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:last\:col-gap-8:last-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:last\:col-gap-10:last-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:last\:col-gap-12:last-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:last\:col-gap-14:last-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:last\:col-gap-16:last-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:last\:col-gap-20:last-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:last\:col-gap-24:last-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:last\:col-gap-32:last-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:last\:col-gap-40:last-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:last\:col-gap-48:last-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:last\:col-gap-56:last-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:last\:col-gap-64:last-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:last\:col-gap-px:last-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:last\:gap-x-0:last-child{
    grid-column-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }

  .s1920\:last\:gap-x-1:last-child{
    grid-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .s1920\:last\:gap-x-2:last-child{
    grid-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .s1920\:last\:gap-x-3:last-child{
    grid-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .s1920\:last\:gap-x-4:last-child{
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .s1920\:last\:gap-x-5:last-child{
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .s1920\:last\:gap-x-6:last-child{
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .s1920\:last\:gap-x-8:last-child{
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .s1920\:last\:gap-x-10:last-child{
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .s1920\:last\:gap-x-12:last-child{
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .s1920\:last\:gap-x-14:last-child{
    grid-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .s1920\:last\:gap-x-16:last-child{
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .s1920\:last\:gap-x-20:last-child{
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .s1920\:last\:gap-x-24:last-child{
    grid-column-gap: 6rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .s1920\:last\:gap-x-32:last-child{
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .s1920\:last\:gap-x-40:last-child{
    grid-column-gap: 10rem;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .s1920\:last\:gap-x-48:last-child{
    grid-column-gap: 12rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .s1920\:last\:gap-x-56:last-child{
    grid-column-gap: 14rem;
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .s1920\:last\:gap-x-64:last-child{
    grid-column-gap: 16rem;
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .s1920\:last\:gap-x-px:last-child{
    grid-column-gap: 1px;
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .s1920\:last\:row-gap-0:last-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:last\:row-gap-1:last-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:last\:row-gap-2:last-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:last\:row-gap-3:last-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:last\:row-gap-4:last-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:last\:row-gap-5:last-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:last\:row-gap-6:last-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:last\:row-gap-8:last-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:last\:row-gap-10:last-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:last\:row-gap-12:last-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:last\:row-gap-14:last-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:last\:row-gap-16:last-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:last\:row-gap-20:last-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:last\:row-gap-24:last-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:last\:row-gap-32:last-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:last\:row-gap-40:last-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:last\:row-gap-48:last-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:last\:row-gap-56:last-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:last\:row-gap-64:last-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:last\:row-gap-px:last-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:last\:gap-y-0:last-child{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .s1920\:last\:gap-y-1:last-child{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .s1920\:last\:gap-y-2:last-child{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .s1920\:last\:gap-y-3:last-child{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .s1920\:last\:gap-y-4:last-child{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .s1920\:last\:gap-y-5:last-child{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .s1920\:last\:gap-y-6:last-child{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .s1920\:last\:gap-y-8:last-child{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .s1920\:last\:gap-y-10:last-child{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .s1920\:last\:gap-y-12:last-child{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .s1920\:last\:gap-y-14:last-child{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .s1920\:last\:gap-y-16:last-child{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .s1920\:last\:gap-y-20:last-child{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .s1920\:last\:gap-y-24:last-child{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .s1920\:last\:gap-y-32:last-child{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .s1920\:last\:gap-y-40:last-child{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .s1920\:last\:gap-y-48:last-child{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .s1920\:last\:gap-y-56:last-child{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .s1920\:last\:gap-y-64:last-child{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .s1920\:last\:gap-y-px:last-child{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .s1920\:grid-flow-row{
    grid-auto-flow: row;
  }

  .s1920\:grid-flow-col{
    grid-auto-flow: column;
  }

  .s1920\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .s1920\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .s1920\:hover\:grid-flow-row:hover{
    grid-auto-flow: row;
  }

  .s1920\:hover\:grid-flow-col:hover{
    grid-auto-flow: column;
  }

  .s1920\:hover\:grid-flow-row-dense:hover{
    grid-auto-flow: row dense;
  }

  .s1920\:hover\:grid-flow-col-dense:hover{
    grid-auto-flow: column dense;
  }

  .s1920\:focus\:grid-flow-row:focus{
    grid-auto-flow: row;
  }

  .s1920\:focus\:grid-flow-col:focus{
    grid-auto-flow: column;
  }

  .s1920\:focus\:grid-flow-row-dense:focus{
    grid-auto-flow: row dense;
  }

  .s1920\:focus\:grid-flow-col-dense:focus{
    grid-auto-flow: column dense;
  }

  .s1920\:active\:grid-flow-row:active{
    grid-auto-flow: row;
  }

  .s1920\:active\:grid-flow-col:active{
    grid-auto-flow: column;
  }

  .s1920\:active\:grid-flow-row-dense:active{
    grid-auto-flow: row dense;
  }

  .s1920\:active\:grid-flow-col-dense:active{
    grid-auto-flow: column dense;
  }

  .s1920\:first\:grid-flow-row:first-child{
    grid-auto-flow: row;
  }

  .s1920\:first\:grid-flow-col:first-child{
    grid-auto-flow: column;
  }

  .s1920\:first\:grid-flow-row-dense:first-child{
    grid-auto-flow: row dense;
  }

  .s1920\:first\:grid-flow-col-dense:first-child{
    grid-auto-flow: column dense;
  }

  .s1920\:last\:grid-flow-row:last-child{
    grid-auto-flow: row;
  }

  .s1920\:last\:grid-flow-col:last-child{
    grid-auto-flow: column;
  }

  .s1920\:last\:grid-flow-row-dense:last-child{
    grid-auto-flow: row dense;
  }

  .s1920\:last\:grid-flow-col-dense:last-child{
    grid-auto-flow: column dense;
  }

  .s1920\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1920\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1920\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1920\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1920\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1920\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1920\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1920\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1920\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1920\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1920\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1920\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1920\:grid-cols-none{
    grid-template-columns: none;
  }

  .s1920\:hover\:grid-cols-1:hover{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-2:hover{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-3:hover{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-4:hover{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-5:hover{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-6:hover{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-7:hover{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-8:hover{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-9:hover{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-10:hover{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-11:hover{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-12:hover{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-cols-none:hover{
    grid-template-columns: none;
  }

  .s1920\:focus\:grid-cols-1:focus{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-2:focus{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-3:focus{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-4:focus{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-5:focus{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-6:focus{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-7:focus{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-8:focus{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-9:focus{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-10:focus{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-11:focus{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-12:focus{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-cols-none:focus{
    grid-template-columns: none;
  }

  .s1920\:active\:grid-cols-1:active{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-2:active{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-3:active{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-4:active{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-5:active{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-6:active{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-7:active{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-8:active{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-9:active{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-10:active{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-11:active{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-12:active{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1920\:active\:grid-cols-none:active{
    grid-template-columns: none;
  }

  .s1920\:first\:grid-cols-1:first-child{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-2:first-child{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-3:first-child{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-4:first-child{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-5:first-child{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-6:first-child{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-7:first-child{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-8:first-child{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-9:first-child{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-10:first-child{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-11:first-child{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-12:first-child{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1920\:first\:grid-cols-none:first-child{
    grid-template-columns: none;
  }

  .s1920\:last\:grid-cols-1:last-child{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-2:last-child{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-3:last-child{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-4:last-child{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-5:last-child{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-6:last-child{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-7:last-child{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-8:last-child{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-9:last-child{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-10:last-child{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-11:last-child{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-12:last-child{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .s1920\:last\:grid-cols-none:last-child{
    grid-template-columns: none;
  }

  .s1920\:col-auto{
    grid-column: auto;
  }

  .s1920\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .s1920\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .s1920\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .s1920\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .s1920\:col-span-5{
    grid-column: span 5 / span 5;
  }

  .s1920\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .s1920\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .s1920\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .s1920\:col-span-9{
    grid-column: span 9 / span 9;
  }

  .s1920\:col-span-10{
    grid-column: span 10 / span 10;
  }

  .s1920\:col-span-11{
    grid-column: span 11 / span 11;
  }

  .s1920\:col-span-12{
    grid-column: span 12 / span 12;
  }

  .s1920\:hover\:col-auto:hover{
    grid-column: auto;
  }

  .s1920\:hover\:col-span-1:hover{
    grid-column: span 1 / span 1;
  }

  .s1920\:hover\:col-span-2:hover{
    grid-column: span 2 / span 2;
  }

  .s1920\:hover\:col-span-3:hover{
    grid-column: span 3 / span 3;
  }

  .s1920\:hover\:col-span-4:hover{
    grid-column: span 4 / span 4;
  }

  .s1920\:hover\:col-span-5:hover{
    grid-column: span 5 / span 5;
  }

  .s1920\:hover\:col-span-6:hover{
    grid-column: span 6 / span 6;
  }

  .s1920\:hover\:col-span-7:hover{
    grid-column: span 7 / span 7;
  }

  .s1920\:hover\:col-span-8:hover{
    grid-column: span 8 / span 8;
  }

  .s1920\:hover\:col-span-9:hover{
    grid-column: span 9 / span 9;
  }

  .s1920\:hover\:col-span-10:hover{
    grid-column: span 10 / span 10;
  }

  .s1920\:hover\:col-span-11:hover{
    grid-column: span 11 / span 11;
  }

  .s1920\:hover\:col-span-12:hover{
    grid-column: span 12 / span 12;
  }

  .s1920\:focus\:col-auto:focus{
    grid-column: auto;
  }

  .s1920\:focus\:col-span-1:focus{
    grid-column: span 1 / span 1;
  }

  .s1920\:focus\:col-span-2:focus{
    grid-column: span 2 / span 2;
  }

  .s1920\:focus\:col-span-3:focus{
    grid-column: span 3 / span 3;
  }

  .s1920\:focus\:col-span-4:focus{
    grid-column: span 4 / span 4;
  }

  .s1920\:focus\:col-span-5:focus{
    grid-column: span 5 / span 5;
  }

  .s1920\:focus\:col-span-6:focus{
    grid-column: span 6 / span 6;
  }

  .s1920\:focus\:col-span-7:focus{
    grid-column: span 7 / span 7;
  }

  .s1920\:focus\:col-span-8:focus{
    grid-column: span 8 / span 8;
  }

  .s1920\:focus\:col-span-9:focus{
    grid-column: span 9 / span 9;
  }

  .s1920\:focus\:col-span-10:focus{
    grid-column: span 10 / span 10;
  }

  .s1920\:focus\:col-span-11:focus{
    grid-column: span 11 / span 11;
  }

  .s1920\:focus\:col-span-12:focus{
    grid-column: span 12 / span 12;
  }

  .s1920\:active\:col-auto:active{
    grid-column: auto;
  }

  .s1920\:active\:col-span-1:active{
    grid-column: span 1 / span 1;
  }

  .s1920\:active\:col-span-2:active{
    grid-column: span 2 / span 2;
  }

  .s1920\:active\:col-span-3:active{
    grid-column: span 3 / span 3;
  }

  .s1920\:active\:col-span-4:active{
    grid-column: span 4 / span 4;
  }

  .s1920\:active\:col-span-5:active{
    grid-column: span 5 / span 5;
  }

  .s1920\:active\:col-span-6:active{
    grid-column: span 6 / span 6;
  }

  .s1920\:active\:col-span-7:active{
    grid-column: span 7 / span 7;
  }

  .s1920\:active\:col-span-8:active{
    grid-column: span 8 / span 8;
  }

  .s1920\:active\:col-span-9:active{
    grid-column: span 9 / span 9;
  }

  .s1920\:active\:col-span-10:active{
    grid-column: span 10 / span 10;
  }

  .s1920\:active\:col-span-11:active{
    grid-column: span 11 / span 11;
  }

  .s1920\:active\:col-span-12:active{
    grid-column: span 12 / span 12;
  }

  .s1920\:first\:col-auto:first-child{
    grid-column: auto;
  }

  .s1920\:first\:col-span-1:first-child{
    grid-column: span 1 / span 1;
  }

  .s1920\:first\:col-span-2:first-child{
    grid-column: span 2 / span 2;
  }

  .s1920\:first\:col-span-3:first-child{
    grid-column: span 3 / span 3;
  }

  .s1920\:first\:col-span-4:first-child{
    grid-column: span 4 / span 4;
  }

  .s1920\:first\:col-span-5:first-child{
    grid-column: span 5 / span 5;
  }

  .s1920\:first\:col-span-6:first-child{
    grid-column: span 6 / span 6;
  }

  .s1920\:first\:col-span-7:first-child{
    grid-column: span 7 / span 7;
  }

  .s1920\:first\:col-span-8:first-child{
    grid-column: span 8 / span 8;
  }

  .s1920\:first\:col-span-9:first-child{
    grid-column: span 9 / span 9;
  }

  .s1920\:first\:col-span-10:first-child{
    grid-column: span 10 / span 10;
  }

  .s1920\:first\:col-span-11:first-child{
    grid-column: span 11 / span 11;
  }

  .s1920\:first\:col-span-12:first-child{
    grid-column: span 12 / span 12;
  }

  .s1920\:last\:col-auto:last-child{
    grid-column: auto;
  }

  .s1920\:last\:col-span-1:last-child{
    grid-column: span 1 / span 1;
  }

  .s1920\:last\:col-span-2:last-child{
    grid-column: span 2 / span 2;
  }

  .s1920\:last\:col-span-3:last-child{
    grid-column: span 3 / span 3;
  }

  .s1920\:last\:col-span-4:last-child{
    grid-column: span 4 / span 4;
  }

  .s1920\:last\:col-span-5:last-child{
    grid-column: span 5 / span 5;
  }

  .s1920\:last\:col-span-6:last-child{
    grid-column: span 6 / span 6;
  }

  .s1920\:last\:col-span-7:last-child{
    grid-column: span 7 / span 7;
  }

  .s1920\:last\:col-span-8:last-child{
    grid-column: span 8 / span 8;
  }

  .s1920\:last\:col-span-9:last-child{
    grid-column: span 9 / span 9;
  }

  .s1920\:last\:col-span-10:last-child{
    grid-column: span 10 / span 10;
  }

  .s1920\:last\:col-span-11:last-child{
    grid-column: span 11 / span 11;
  }

  .s1920\:last\:col-span-12:last-child{
    grid-column: span 12 / span 12;
  }

  .s1920\:col-start-1{
    grid-column-start: 1;
  }

  .s1920\:col-start-2{
    grid-column-start: 2;
  }

  .s1920\:col-start-3{
    grid-column-start: 3;
  }

  .s1920\:col-start-4{
    grid-column-start: 4;
  }

  .s1920\:col-start-5{
    grid-column-start: 5;
  }

  .s1920\:col-start-6{
    grid-column-start: 6;
  }

  .s1920\:col-start-7{
    grid-column-start: 7;
  }

  .s1920\:col-start-8{
    grid-column-start: 8;
  }

  .s1920\:col-start-9{
    grid-column-start: 9;
  }

  .s1920\:col-start-10{
    grid-column-start: 10;
  }

  .s1920\:col-start-11{
    grid-column-start: 11;
  }

  .s1920\:col-start-12{
    grid-column-start: 12;
  }

  .s1920\:col-start-13{
    grid-column-start: 13;
  }

  .s1920\:col-start-auto{
    grid-column-start: auto;
  }

  .s1920\:hover\:col-start-1:hover{
    grid-column-start: 1;
  }

  .s1920\:hover\:col-start-2:hover{
    grid-column-start: 2;
  }

  .s1920\:hover\:col-start-3:hover{
    grid-column-start: 3;
  }

  .s1920\:hover\:col-start-4:hover{
    grid-column-start: 4;
  }

  .s1920\:hover\:col-start-5:hover{
    grid-column-start: 5;
  }

  .s1920\:hover\:col-start-6:hover{
    grid-column-start: 6;
  }

  .s1920\:hover\:col-start-7:hover{
    grid-column-start: 7;
  }

  .s1920\:hover\:col-start-8:hover{
    grid-column-start: 8;
  }

  .s1920\:hover\:col-start-9:hover{
    grid-column-start: 9;
  }

  .s1920\:hover\:col-start-10:hover{
    grid-column-start: 10;
  }

  .s1920\:hover\:col-start-11:hover{
    grid-column-start: 11;
  }

  .s1920\:hover\:col-start-12:hover{
    grid-column-start: 12;
  }

  .s1920\:hover\:col-start-13:hover{
    grid-column-start: 13;
  }

  .s1920\:hover\:col-start-auto:hover{
    grid-column-start: auto;
  }

  .s1920\:focus\:col-start-1:focus{
    grid-column-start: 1;
  }

  .s1920\:focus\:col-start-2:focus{
    grid-column-start: 2;
  }

  .s1920\:focus\:col-start-3:focus{
    grid-column-start: 3;
  }

  .s1920\:focus\:col-start-4:focus{
    grid-column-start: 4;
  }

  .s1920\:focus\:col-start-5:focus{
    grid-column-start: 5;
  }

  .s1920\:focus\:col-start-6:focus{
    grid-column-start: 6;
  }

  .s1920\:focus\:col-start-7:focus{
    grid-column-start: 7;
  }

  .s1920\:focus\:col-start-8:focus{
    grid-column-start: 8;
  }

  .s1920\:focus\:col-start-9:focus{
    grid-column-start: 9;
  }

  .s1920\:focus\:col-start-10:focus{
    grid-column-start: 10;
  }

  .s1920\:focus\:col-start-11:focus{
    grid-column-start: 11;
  }

  .s1920\:focus\:col-start-12:focus{
    grid-column-start: 12;
  }

  .s1920\:focus\:col-start-13:focus{
    grid-column-start: 13;
  }

  .s1920\:focus\:col-start-auto:focus{
    grid-column-start: auto;
  }

  .s1920\:active\:col-start-1:active{
    grid-column-start: 1;
  }

  .s1920\:active\:col-start-2:active{
    grid-column-start: 2;
  }

  .s1920\:active\:col-start-3:active{
    grid-column-start: 3;
  }

  .s1920\:active\:col-start-4:active{
    grid-column-start: 4;
  }

  .s1920\:active\:col-start-5:active{
    grid-column-start: 5;
  }

  .s1920\:active\:col-start-6:active{
    grid-column-start: 6;
  }

  .s1920\:active\:col-start-7:active{
    grid-column-start: 7;
  }

  .s1920\:active\:col-start-8:active{
    grid-column-start: 8;
  }

  .s1920\:active\:col-start-9:active{
    grid-column-start: 9;
  }

  .s1920\:active\:col-start-10:active{
    grid-column-start: 10;
  }

  .s1920\:active\:col-start-11:active{
    grid-column-start: 11;
  }

  .s1920\:active\:col-start-12:active{
    grid-column-start: 12;
  }

  .s1920\:active\:col-start-13:active{
    grid-column-start: 13;
  }

  .s1920\:active\:col-start-auto:active{
    grid-column-start: auto;
  }

  .s1920\:first\:col-start-1:first-child{
    grid-column-start: 1;
  }

  .s1920\:first\:col-start-2:first-child{
    grid-column-start: 2;
  }

  .s1920\:first\:col-start-3:first-child{
    grid-column-start: 3;
  }

  .s1920\:first\:col-start-4:first-child{
    grid-column-start: 4;
  }

  .s1920\:first\:col-start-5:first-child{
    grid-column-start: 5;
  }

  .s1920\:first\:col-start-6:first-child{
    grid-column-start: 6;
  }

  .s1920\:first\:col-start-7:first-child{
    grid-column-start: 7;
  }

  .s1920\:first\:col-start-8:first-child{
    grid-column-start: 8;
  }

  .s1920\:first\:col-start-9:first-child{
    grid-column-start: 9;
  }

  .s1920\:first\:col-start-10:first-child{
    grid-column-start: 10;
  }

  .s1920\:first\:col-start-11:first-child{
    grid-column-start: 11;
  }

  .s1920\:first\:col-start-12:first-child{
    grid-column-start: 12;
  }

  .s1920\:first\:col-start-13:first-child{
    grid-column-start: 13;
  }

  .s1920\:first\:col-start-auto:first-child{
    grid-column-start: auto;
  }

  .s1920\:last\:col-start-1:last-child{
    grid-column-start: 1;
  }

  .s1920\:last\:col-start-2:last-child{
    grid-column-start: 2;
  }

  .s1920\:last\:col-start-3:last-child{
    grid-column-start: 3;
  }

  .s1920\:last\:col-start-4:last-child{
    grid-column-start: 4;
  }

  .s1920\:last\:col-start-5:last-child{
    grid-column-start: 5;
  }

  .s1920\:last\:col-start-6:last-child{
    grid-column-start: 6;
  }

  .s1920\:last\:col-start-7:last-child{
    grid-column-start: 7;
  }

  .s1920\:last\:col-start-8:last-child{
    grid-column-start: 8;
  }

  .s1920\:last\:col-start-9:last-child{
    grid-column-start: 9;
  }

  .s1920\:last\:col-start-10:last-child{
    grid-column-start: 10;
  }

  .s1920\:last\:col-start-11:last-child{
    grid-column-start: 11;
  }

  .s1920\:last\:col-start-12:last-child{
    grid-column-start: 12;
  }

  .s1920\:last\:col-start-13:last-child{
    grid-column-start: 13;
  }

  .s1920\:last\:col-start-auto:last-child{
    grid-column-start: auto;
  }

  .s1920\:col-end-1{
    grid-column-end: 1;
  }

  .s1920\:col-end-2{
    grid-column-end: 2;
  }

  .s1920\:col-end-3{
    grid-column-end: 3;
  }

  .s1920\:col-end-4{
    grid-column-end: 4;
  }

  .s1920\:col-end-5{
    grid-column-end: 5;
  }

  .s1920\:col-end-6{
    grid-column-end: 6;
  }

  .s1920\:col-end-7{
    grid-column-end: 7;
  }

  .s1920\:col-end-8{
    grid-column-end: 8;
  }

  .s1920\:col-end-9{
    grid-column-end: 9;
  }

  .s1920\:col-end-10{
    grid-column-end: 10;
  }

  .s1920\:col-end-11{
    grid-column-end: 11;
  }

  .s1920\:col-end-12{
    grid-column-end: 12;
  }

  .s1920\:col-end-13{
    grid-column-end: 13;
  }

  .s1920\:col-end-auto{
    grid-column-end: auto;
  }

  .s1920\:hover\:col-end-1:hover{
    grid-column-end: 1;
  }

  .s1920\:hover\:col-end-2:hover{
    grid-column-end: 2;
  }

  .s1920\:hover\:col-end-3:hover{
    grid-column-end: 3;
  }

  .s1920\:hover\:col-end-4:hover{
    grid-column-end: 4;
  }

  .s1920\:hover\:col-end-5:hover{
    grid-column-end: 5;
  }

  .s1920\:hover\:col-end-6:hover{
    grid-column-end: 6;
  }

  .s1920\:hover\:col-end-7:hover{
    grid-column-end: 7;
  }

  .s1920\:hover\:col-end-8:hover{
    grid-column-end: 8;
  }

  .s1920\:hover\:col-end-9:hover{
    grid-column-end: 9;
  }

  .s1920\:hover\:col-end-10:hover{
    grid-column-end: 10;
  }

  .s1920\:hover\:col-end-11:hover{
    grid-column-end: 11;
  }

  .s1920\:hover\:col-end-12:hover{
    grid-column-end: 12;
  }

  .s1920\:hover\:col-end-13:hover{
    grid-column-end: 13;
  }

  .s1920\:hover\:col-end-auto:hover{
    grid-column-end: auto;
  }

  .s1920\:focus\:col-end-1:focus{
    grid-column-end: 1;
  }

  .s1920\:focus\:col-end-2:focus{
    grid-column-end: 2;
  }

  .s1920\:focus\:col-end-3:focus{
    grid-column-end: 3;
  }

  .s1920\:focus\:col-end-4:focus{
    grid-column-end: 4;
  }

  .s1920\:focus\:col-end-5:focus{
    grid-column-end: 5;
  }

  .s1920\:focus\:col-end-6:focus{
    grid-column-end: 6;
  }

  .s1920\:focus\:col-end-7:focus{
    grid-column-end: 7;
  }

  .s1920\:focus\:col-end-8:focus{
    grid-column-end: 8;
  }

  .s1920\:focus\:col-end-9:focus{
    grid-column-end: 9;
  }

  .s1920\:focus\:col-end-10:focus{
    grid-column-end: 10;
  }

  .s1920\:focus\:col-end-11:focus{
    grid-column-end: 11;
  }

  .s1920\:focus\:col-end-12:focus{
    grid-column-end: 12;
  }

  .s1920\:focus\:col-end-13:focus{
    grid-column-end: 13;
  }

  .s1920\:focus\:col-end-auto:focus{
    grid-column-end: auto;
  }

  .s1920\:active\:col-end-1:active{
    grid-column-end: 1;
  }

  .s1920\:active\:col-end-2:active{
    grid-column-end: 2;
  }

  .s1920\:active\:col-end-3:active{
    grid-column-end: 3;
  }

  .s1920\:active\:col-end-4:active{
    grid-column-end: 4;
  }

  .s1920\:active\:col-end-5:active{
    grid-column-end: 5;
  }

  .s1920\:active\:col-end-6:active{
    grid-column-end: 6;
  }

  .s1920\:active\:col-end-7:active{
    grid-column-end: 7;
  }

  .s1920\:active\:col-end-8:active{
    grid-column-end: 8;
  }

  .s1920\:active\:col-end-9:active{
    grid-column-end: 9;
  }

  .s1920\:active\:col-end-10:active{
    grid-column-end: 10;
  }

  .s1920\:active\:col-end-11:active{
    grid-column-end: 11;
  }

  .s1920\:active\:col-end-12:active{
    grid-column-end: 12;
  }

  .s1920\:active\:col-end-13:active{
    grid-column-end: 13;
  }

  .s1920\:active\:col-end-auto:active{
    grid-column-end: auto;
  }

  .s1920\:first\:col-end-1:first-child{
    grid-column-end: 1;
  }

  .s1920\:first\:col-end-2:first-child{
    grid-column-end: 2;
  }

  .s1920\:first\:col-end-3:first-child{
    grid-column-end: 3;
  }

  .s1920\:first\:col-end-4:first-child{
    grid-column-end: 4;
  }

  .s1920\:first\:col-end-5:first-child{
    grid-column-end: 5;
  }

  .s1920\:first\:col-end-6:first-child{
    grid-column-end: 6;
  }

  .s1920\:first\:col-end-7:first-child{
    grid-column-end: 7;
  }

  .s1920\:first\:col-end-8:first-child{
    grid-column-end: 8;
  }

  .s1920\:first\:col-end-9:first-child{
    grid-column-end: 9;
  }

  .s1920\:first\:col-end-10:first-child{
    grid-column-end: 10;
  }

  .s1920\:first\:col-end-11:first-child{
    grid-column-end: 11;
  }

  .s1920\:first\:col-end-12:first-child{
    grid-column-end: 12;
  }

  .s1920\:first\:col-end-13:first-child{
    grid-column-end: 13;
  }

  .s1920\:first\:col-end-auto:first-child{
    grid-column-end: auto;
  }

  .s1920\:last\:col-end-1:last-child{
    grid-column-end: 1;
  }

  .s1920\:last\:col-end-2:last-child{
    grid-column-end: 2;
  }

  .s1920\:last\:col-end-3:last-child{
    grid-column-end: 3;
  }

  .s1920\:last\:col-end-4:last-child{
    grid-column-end: 4;
  }

  .s1920\:last\:col-end-5:last-child{
    grid-column-end: 5;
  }

  .s1920\:last\:col-end-6:last-child{
    grid-column-end: 6;
  }

  .s1920\:last\:col-end-7:last-child{
    grid-column-end: 7;
  }

  .s1920\:last\:col-end-8:last-child{
    grid-column-end: 8;
  }

  .s1920\:last\:col-end-9:last-child{
    grid-column-end: 9;
  }

  .s1920\:last\:col-end-10:last-child{
    grid-column-end: 10;
  }

  .s1920\:last\:col-end-11:last-child{
    grid-column-end: 11;
  }

  .s1920\:last\:col-end-12:last-child{
    grid-column-end: 12;
  }

  .s1920\:last\:col-end-13:last-child{
    grid-column-end: 13;
  }

  .s1920\:last\:col-end-auto:last-child{
    grid-column-end: auto;
  }

  .s1920\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1920\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1920\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1920\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1920\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1920\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1920\:grid-rows-none{
    grid-template-rows: none;
  }

  .s1920\:hover\:grid-rows-1:hover{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-rows-2:hover{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-rows-3:hover{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-rows-4:hover{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-rows-5:hover{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-rows-6:hover{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1920\:hover\:grid-rows-none:hover{
    grid-template-rows: none;
  }

  .s1920\:focus\:grid-rows-1:focus{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-rows-2:focus{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-rows-3:focus{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-rows-4:focus{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-rows-5:focus{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-rows-6:focus{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1920\:focus\:grid-rows-none:focus{
    grid-template-rows: none;
  }

  .s1920\:active\:grid-rows-1:active{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1920\:active\:grid-rows-2:active{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1920\:active\:grid-rows-3:active{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1920\:active\:grid-rows-4:active{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1920\:active\:grid-rows-5:active{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1920\:active\:grid-rows-6:active{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1920\:active\:grid-rows-none:active{
    grid-template-rows: none;
  }

  .s1920\:first\:grid-rows-1:first-child{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1920\:first\:grid-rows-2:first-child{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1920\:first\:grid-rows-3:first-child{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1920\:first\:grid-rows-4:first-child{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1920\:first\:grid-rows-5:first-child{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1920\:first\:grid-rows-6:first-child{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1920\:first\:grid-rows-none:first-child{
    grid-template-rows: none;
  }

  .s1920\:last\:grid-rows-1:last-child{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .s1920\:last\:grid-rows-2:last-child{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .s1920\:last\:grid-rows-3:last-child{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .s1920\:last\:grid-rows-4:last-child{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .s1920\:last\:grid-rows-5:last-child{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .s1920\:last\:grid-rows-6:last-child{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .s1920\:last\:grid-rows-none:last-child{
    grid-template-rows: none;
  }

  .s1920\:row-auto{
    grid-row: auto;
  }

  .s1920\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .s1920\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .s1920\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .s1920\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .s1920\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .s1920\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .s1920\:hover\:row-auto:hover{
    grid-row: auto;
  }

  .s1920\:hover\:row-span-1:hover{
    grid-row: span 1 / span 1;
  }

  .s1920\:hover\:row-span-2:hover{
    grid-row: span 2 / span 2;
  }

  .s1920\:hover\:row-span-3:hover{
    grid-row: span 3 / span 3;
  }

  .s1920\:hover\:row-span-4:hover{
    grid-row: span 4 / span 4;
  }

  .s1920\:hover\:row-span-5:hover{
    grid-row: span 5 / span 5;
  }

  .s1920\:hover\:row-span-6:hover{
    grid-row: span 6 / span 6;
  }

  .s1920\:focus\:row-auto:focus{
    grid-row: auto;
  }

  .s1920\:focus\:row-span-1:focus{
    grid-row: span 1 / span 1;
  }

  .s1920\:focus\:row-span-2:focus{
    grid-row: span 2 / span 2;
  }

  .s1920\:focus\:row-span-3:focus{
    grid-row: span 3 / span 3;
  }

  .s1920\:focus\:row-span-4:focus{
    grid-row: span 4 / span 4;
  }

  .s1920\:focus\:row-span-5:focus{
    grid-row: span 5 / span 5;
  }

  .s1920\:focus\:row-span-6:focus{
    grid-row: span 6 / span 6;
  }

  .s1920\:active\:row-auto:active{
    grid-row: auto;
  }

  .s1920\:active\:row-span-1:active{
    grid-row: span 1 / span 1;
  }

  .s1920\:active\:row-span-2:active{
    grid-row: span 2 / span 2;
  }

  .s1920\:active\:row-span-3:active{
    grid-row: span 3 / span 3;
  }

  .s1920\:active\:row-span-4:active{
    grid-row: span 4 / span 4;
  }

  .s1920\:active\:row-span-5:active{
    grid-row: span 5 / span 5;
  }

  .s1920\:active\:row-span-6:active{
    grid-row: span 6 / span 6;
  }

  .s1920\:first\:row-auto:first-child{
    grid-row: auto;
  }

  .s1920\:first\:row-span-1:first-child{
    grid-row: span 1 / span 1;
  }

  .s1920\:first\:row-span-2:first-child{
    grid-row: span 2 / span 2;
  }

  .s1920\:first\:row-span-3:first-child{
    grid-row: span 3 / span 3;
  }

  .s1920\:first\:row-span-4:first-child{
    grid-row: span 4 / span 4;
  }

  .s1920\:first\:row-span-5:first-child{
    grid-row: span 5 / span 5;
  }

  .s1920\:first\:row-span-6:first-child{
    grid-row: span 6 / span 6;
  }

  .s1920\:last\:row-auto:last-child{
    grid-row: auto;
  }

  .s1920\:last\:row-span-1:last-child{
    grid-row: span 1 / span 1;
  }

  .s1920\:last\:row-span-2:last-child{
    grid-row: span 2 / span 2;
  }

  .s1920\:last\:row-span-3:last-child{
    grid-row: span 3 / span 3;
  }

  .s1920\:last\:row-span-4:last-child{
    grid-row: span 4 / span 4;
  }

  .s1920\:last\:row-span-5:last-child{
    grid-row: span 5 / span 5;
  }

  .s1920\:last\:row-span-6:last-child{
    grid-row: span 6 / span 6;
  }

  .s1920\:row-start-1{
    grid-row-start: 1;
  }

  .s1920\:row-start-2{
    grid-row-start: 2;
  }

  .s1920\:row-start-3{
    grid-row-start: 3;
  }

  .s1920\:row-start-4{
    grid-row-start: 4;
  }

  .s1920\:row-start-5{
    grid-row-start: 5;
  }

  .s1920\:row-start-6{
    grid-row-start: 6;
  }

  .s1920\:row-start-7{
    grid-row-start: 7;
  }

  .s1920\:row-start-auto{
    grid-row-start: auto;
  }

  .s1920\:hover\:row-start-1:hover{
    grid-row-start: 1;
  }

  .s1920\:hover\:row-start-2:hover{
    grid-row-start: 2;
  }

  .s1920\:hover\:row-start-3:hover{
    grid-row-start: 3;
  }

  .s1920\:hover\:row-start-4:hover{
    grid-row-start: 4;
  }

  .s1920\:hover\:row-start-5:hover{
    grid-row-start: 5;
  }

  .s1920\:hover\:row-start-6:hover{
    grid-row-start: 6;
  }

  .s1920\:hover\:row-start-7:hover{
    grid-row-start: 7;
  }

  .s1920\:hover\:row-start-auto:hover{
    grid-row-start: auto;
  }

  .s1920\:focus\:row-start-1:focus{
    grid-row-start: 1;
  }

  .s1920\:focus\:row-start-2:focus{
    grid-row-start: 2;
  }

  .s1920\:focus\:row-start-3:focus{
    grid-row-start: 3;
  }

  .s1920\:focus\:row-start-4:focus{
    grid-row-start: 4;
  }

  .s1920\:focus\:row-start-5:focus{
    grid-row-start: 5;
  }

  .s1920\:focus\:row-start-6:focus{
    grid-row-start: 6;
  }

  .s1920\:focus\:row-start-7:focus{
    grid-row-start: 7;
  }

  .s1920\:focus\:row-start-auto:focus{
    grid-row-start: auto;
  }

  .s1920\:active\:row-start-1:active{
    grid-row-start: 1;
  }

  .s1920\:active\:row-start-2:active{
    grid-row-start: 2;
  }

  .s1920\:active\:row-start-3:active{
    grid-row-start: 3;
  }

  .s1920\:active\:row-start-4:active{
    grid-row-start: 4;
  }

  .s1920\:active\:row-start-5:active{
    grid-row-start: 5;
  }

  .s1920\:active\:row-start-6:active{
    grid-row-start: 6;
  }

  .s1920\:active\:row-start-7:active{
    grid-row-start: 7;
  }

  .s1920\:active\:row-start-auto:active{
    grid-row-start: auto;
  }

  .s1920\:first\:row-start-1:first-child{
    grid-row-start: 1;
  }

  .s1920\:first\:row-start-2:first-child{
    grid-row-start: 2;
  }

  .s1920\:first\:row-start-3:first-child{
    grid-row-start: 3;
  }

  .s1920\:first\:row-start-4:first-child{
    grid-row-start: 4;
  }

  .s1920\:first\:row-start-5:first-child{
    grid-row-start: 5;
  }

  .s1920\:first\:row-start-6:first-child{
    grid-row-start: 6;
  }

  .s1920\:first\:row-start-7:first-child{
    grid-row-start: 7;
  }

  .s1920\:first\:row-start-auto:first-child{
    grid-row-start: auto;
  }

  .s1920\:last\:row-start-1:last-child{
    grid-row-start: 1;
  }

  .s1920\:last\:row-start-2:last-child{
    grid-row-start: 2;
  }

  .s1920\:last\:row-start-3:last-child{
    grid-row-start: 3;
  }

  .s1920\:last\:row-start-4:last-child{
    grid-row-start: 4;
  }

  .s1920\:last\:row-start-5:last-child{
    grid-row-start: 5;
  }

  .s1920\:last\:row-start-6:last-child{
    grid-row-start: 6;
  }

  .s1920\:last\:row-start-7:last-child{
    grid-row-start: 7;
  }

  .s1920\:last\:row-start-auto:last-child{
    grid-row-start: auto;
  }

  .s1920\:row-end-1{
    grid-row-end: 1;
  }

  .s1920\:row-end-2{
    grid-row-end: 2;
  }

  .s1920\:row-end-3{
    grid-row-end: 3;
  }

  .s1920\:row-end-4{
    grid-row-end: 4;
  }

  .s1920\:row-end-5{
    grid-row-end: 5;
  }

  .s1920\:row-end-6{
    grid-row-end: 6;
  }

  .s1920\:row-end-7{
    grid-row-end: 7;
  }

  .s1920\:row-end-auto{
    grid-row-end: auto;
  }

  .s1920\:hover\:row-end-1:hover{
    grid-row-end: 1;
  }

  .s1920\:hover\:row-end-2:hover{
    grid-row-end: 2;
  }

  .s1920\:hover\:row-end-3:hover{
    grid-row-end: 3;
  }

  .s1920\:hover\:row-end-4:hover{
    grid-row-end: 4;
  }

  .s1920\:hover\:row-end-5:hover{
    grid-row-end: 5;
  }

  .s1920\:hover\:row-end-6:hover{
    grid-row-end: 6;
  }

  .s1920\:hover\:row-end-7:hover{
    grid-row-end: 7;
  }

  .s1920\:hover\:row-end-auto:hover{
    grid-row-end: auto;
  }

  .s1920\:focus\:row-end-1:focus{
    grid-row-end: 1;
  }

  .s1920\:focus\:row-end-2:focus{
    grid-row-end: 2;
  }

  .s1920\:focus\:row-end-3:focus{
    grid-row-end: 3;
  }

  .s1920\:focus\:row-end-4:focus{
    grid-row-end: 4;
  }

  .s1920\:focus\:row-end-5:focus{
    grid-row-end: 5;
  }

  .s1920\:focus\:row-end-6:focus{
    grid-row-end: 6;
  }

  .s1920\:focus\:row-end-7:focus{
    grid-row-end: 7;
  }

  .s1920\:focus\:row-end-auto:focus{
    grid-row-end: auto;
  }

  .s1920\:active\:row-end-1:active{
    grid-row-end: 1;
  }

  .s1920\:active\:row-end-2:active{
    grid-row-end: 2;
  }

  .s1920\:active\:row-end-3:active{
    grid-row-end: 3;
  }

  .s1920\:active\:row-end-4:active{
    grid-row-end: 4;
  }

  .s1920\:active\:row-end-5:active{
    grid-row-end: 5;
  }

  .s1920\:active\:row-end-6:active{
    grid-row-end: 6;
  }

  .s1920\:active\:row-end-7:active{
    grid-row-end: 7;
  }

  .s1920\:active\:row-end-auto:active{
    grid-row-end: auto;
  }

  .s1920\:first\:row-end-1:first-child{
    grid-row-end: 1;
  }

  .s1920\:first\:row-end-2:first-child{
    grid-row-end: 2;
  }

  .s1920\:first\:row-end-3:first-child{
    grid-row-end: 3;
  }

  .s1920\:first\:row-end-4:first-child{
    grid-row-end: 4;
  }

  .s1920\:first\:row-end-5:first-child{
    grid-row-end: 5;
  }

  .s1920\:first\:row-end-6:first-child{
    grid-row-end: 6;
  }

  .s1920\:first\:row-end-7:first-child{
    grid-row-end: 7;
  }

  .s1920\:first\:row-end-auto:first-child{
    grid-row-end: auto;
  }

  .s1920\:last\:row-end-1:last-child{
    grid-row-end: 1;
  }

  .s1920\:last\:row-end-2:last-child{
    grid-row-end: 2;
  }

  .s1920\:last\:row-end-3:last-child{
    grid-row-end: 3;
  }

  .s1920\:last\:row-end-4:last-child{
    grid-row-end: 4;
  }

  .s1920\:last\:row-end-5:last-child{
    grid-row-end: 5;
  }

  .s1920\:last\:row-end-6:last-child{
    grid-row-end: 6;
  }

  .s1920\:last\:row-end-7:last-child{
    grid-row-end: 7;
  }

  .s1920\:last\:row-end-auto:last-child{
    grid-row-end: auto;
  }

  .s1920\:transform{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1920\:transform-none{
    transform: none;
  }

  .s1920\:hover\:transform:hover{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1920\:hover\:transform-none:hover{
    transform: none;
  }

  .s1920\:focus\:transform:focus{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1920\:focus\:transform-none:focus{
    transform: none;
  }

  .s1920\:active\:transform:active{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1920\:active\:transform-none:active{
    transform: none;
  }

  .s1920\:first\:transform:first-child{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1920\:first\:transform-none:first-child{
    transform: none;
  }

  .s1920\:last\:transform:last-child{
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  }

  .s1920\:last\:transform-none:last-child{
    transform: none;
  }

  .s1920\:origin-center{
    transform-origin: center;
  }

  .s1920\:origin-top{
    transform-origin: top;
  }

  .s1920\:origin-top-right{
    transform-origin: top right;
  }

  .s1920\:origin-right{
    transform-origin: right;
  }

  .s1920\:origin-bottom-right{
    transform-origin: bottom right;
  }

  .s1920\:origin-bottom{
    transform-origin: bottom;
  }

  .s1920\:origin-bottom-left{
    transform-origin: bottom left;
  }

  .s1920\:origin-left{
    transform-origin: left;
  }

  .s1920\:origin-top-left{
    transform-origin: top left;
  }

  .s1920\:hover\:origin-center:hover{
    transform-origin: center;
  }

  .s1920\:hover\:origin-top:hover{
    transform-origin: top;
  }

  .s1920\:hover\:origin-top-right:hover{
    transform-origin: top right;
  }

  .s1920\:hover\:origin-right:hover{
    transform-origin: right;
  }

  .s1920\:hover\:origin-bottom-right:hover{
    transform-origin: bottom right;
  }

  .s1920\:hover\:origin-bottom:hover{
    transform-origin: bottom;
  }

  .s1920\:hover\:origin-bottom-left:hover{
    transform-origin: bottom left;
  }

  .s1920\:hover\:origin-left:hover{
    transform-origin: left;
  }

  .s1920\:hover\:origin-top-left:hover{
    transform-origin: top left;
  }

  .s1920\:focus\:origin-center:focus{
    transform-origin: center;
  }

  .s1920\:focus\:origin-top:focus{
    transform-origin: top;
  }

  .s1920\:focus\:origin-top-right:focus{
    transform-origin: top right;
  }

  .s1920\:focus\:origin-right:focus{
    transform-origin: right;
  }

  .s1920\:focus\:origin-bottom-right:focus{
    transform-origin: bottom right;
  }

  .s1920\:focus\:origin-bottom:focus{
    transform-origin: bottom;
  }

  .s1920\:focus\:origin-bottom-left:focus{
    transform-origin: bottom left;
  }

  .s1920\:focus\:origin-left:focus{
    transform-origin: left;
  }

  .s1920\:focus\:origin-top-left:focus{
    transform-origin: top left;
  }

  .s1920\:active\:origin-center:active{
    transform-origin: center;
  }

  .s1920\:active\:origin-top:active{
    transform-origin: top;
  }

  .s1920\:active\:origin-top-right:active{
    transform-origin: top right;
  }

  .s1920\:active\:origin-right:active{
    transform-origin: right;
  }

  .s1920\:active\:origin-bottom-right:active{
    transform-origin: bottom right;
  }

  .s1920\:active\:origin-bottom:active{
    transform-origin: bottom;
  }

  .s1920\:active\:origin-bottom-left:active{
    transform-origin: bottom left;
  }

  .s1920\:active\:origin-left:active{
    transform-origin: left;
  }

  .s1920\:active\:origin-top-left:active{
    transform-origin: top left;
  }

  .s1920\:first\:origin-center:first-child{
    transform-origin: center;
  }

  .s1920\:first\:origin-top:first-child{
    transform-origin: top;
  }

  .s1920\:first\:origin-top-right:first-child{
    transform-origin: top right;
  }

  .s1920\:first\:origin-right:first-child{
    transform-origin: right;
  }

  .s1920\:first\:origin-bottom-right:first-child{
    transform-origin: bottom right;
  }

  .s1920\:first\:origin-bottom:first-child{
    transform-origin: bottom;
  }

  .s1920\:first\:origin-bottom-left:first-child{
    transform-origin: bottom left;
  }

  .s1920\:first\:origin-left:first-child{
    transform-origin: left;
  }

  .s1920\:first\:origin-top-left:first-child{
    transform-origin: top left;
  }

  .s1920\:last\:origin-center:last-child{
    transform-origin: center;
  }

  .s1920\:last\:origin-top:last-child{
    transform-origin: top;
  }

  .s1920\:last\:origin-top-right:last-child{
    transform-origin: top right;
  }

  .s1920\:last\:origin-right:last-child{
    transform-origin: right;
  }

  .s1920\:last\:origin-bottom-right:last-child{
    transform-origin: bottom right;
  }

  .s1920\:last\:origin-bottom:last-child{
    transform-origin: bottom;
  }

  .s1920\:last\:origin-bottom-left:last-child{
    transform-origin: bottom left;
  }

  .s1920\:last\:origin-left:last-child{
    transform-origin: left;
  }

  .s1920\:last\:origin-top-left:last-child{
    transform-origin: top left;
  }

  .s1920\:scale-0{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1920\:scale-50{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1920\:scale-75{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1920\:scale-90{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1920\:scale-95{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1920\:scale-100{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1920\:scale-105{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1920\:scale-110{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1920\:scale-125{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1920\:scale-150{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1920\:scale-x-0{
    --transform-scale-x: 0;
  }

  .s1920\:scale-x-50{
    --transform-scale-x: .5;
  }

  .s1920\:scale-x-75{
    --transform-scale-x: .75;
  }

  .s1920\:scale-x-90{
    --transform-scale-x: .9;
  }

  .s1920\:scale-x-95{
    --transform-scale-x: .95;
  }

  .s1920\:scale-x-100{
    --transform-scale-x: 1;
  }

  .s1920\:scale-x-105{
    --transform-scale-x: 1.05;
  }

  .s1920\:scale-x-110{
    --transform-scale-x: 1.1;
  }

  .s1920\:scale-x-125{
    --transform-scale-x: 1.25;
  }

  .s1920\:scale-x-150{
    --transform-scale-x: 1.5;
  }

  .s1920\:scale-y-0{
    --transform-scale-y: 0;
  }

  .s1920\:scale-y-50{
    --transform-scale-y: .5;
  }

  .s1920\:scale-y-75{
    --transform-scale-y: .75;
  }

  .s1920\:scale-y-90{
    --transform-scale-y: .9;
  }

  .s1920\:scale-y-95{
    --transform-scale-y: .95;
  }

  .s1920\:scale-y-100{
    --transform-scale-y: 1;
  }

  .s1920\:scale-y-105{
    --transform-scale-y: 1.05;
  }

  .s1920\:scale-y-110{
    --transform-scale-y: 1.1;
  }

  .s1920\:scale-y-125{
    --transform-scale-y: 1.25;
  }

  .s1920\:scale-y-150{
    --transform-scale-y: 1.5;
  }

  .s1920\:hover\:scale-0:hover{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1920\:hover\:scale-50:hover{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1920\:hover\:scale-75:hover{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1920\:hover\:scale-90:hover{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1920\:hover\:scale-95:hover{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1920\:hover\:scale-100:hover{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1920\:hover\:scale-105:hover{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1920\:hover\:scale-110:hover{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1920\:hover\:scale-125:hover{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1920\:hover\:scale-150:hover{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1920\:hover\:scale-x-0:hover{
    --transform-scale-x: 0;
  }

  .s1920\:hover\:scale-x-50:hover{
    --transform-scale-x: .5;
  }

  .s1920\:hover\:scale-x-75:hover{
    --transform-scale-x: .75;
  }

  .s1920\:hover\:scale-x-90:hover{
    --transform-scale-x: .9;
  }

  .s1920\:hover\:scale-x-95:hover{
    --transform-scale-x: .95;
  }

  .s1920\:hover\:scale-x-100:hover{
    --transform-scale-x: 1;
  }

  .s1920\:hover\:scale-x-105:hover{
    --transform-scale-x: 1.05;
  }

  .s1920\:hover\:scale-x-110:hover{
    --transform-scale-x: 1.1;
  }

  .s1920\:hover\:scale-x-125:hover{
    --transform-scale-x: 1.25;
  }

  .s1920\:hover\:scale-x-150:hover{
    --transform-scale-x: 1.5;
  }

  .s1920\:hover\:scale-y-0:hover{
    --transform-scale-y: 0;
  }

  .s1920\:hover\:scale-y-50:hover{
    --transform-scale-y: .5;
  }

  .s1920\:hover\:scale-y-75:hover{
    --transform-scale-y: .75;
  }

  .s1920\:hover\:scale-y-90:hover{
    --transform-scale-y: .9;
  }

  .s1920\:hover\:scale-y-95:hover{
    --transform-scale-y: .95;
  }

  .s1920\:hover\:scale-y-100:hover{
    --transform-scale-y: 1;
  }

  .s1920\:hover\:scale-y-105:hover{
    --transform-scale-y: 1.05;
  }

  .s1920\:hover\:scale-y-110:hover{
    --transform-scale-y: 1.1;
  }

  .s1920\:hover\:scale-y-125:hover{
    --transform-scale-y: 1.25;
  }

  .s1920\:hover\:scale-y-150:hover{
    --transform-scale-y: 1.5;
  }

  .s1920\:focus\:scale-0:focus{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1920\:focus\:scale-50:focus{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1920\:focus\:scale-75:focus{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1920\:focus\:scale-90:focus{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1920\:focus\:scale-95:focus{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1920\:focus\:scale-100:focus{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1920\:focus\:scale-105:focus{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1920\:focus\:scale-110:focus{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1920\:focus\:scale-125:focus{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1920\:focus\:scale-150:focus{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1920\:focus\:scale-x-0:focus{
    --transform-scale-x: 0;
  }

  .s1920\:focus\:scale-x-50:focus{
    --transform-scale-x: .5;
  }

  .s1920\:focus\:scale-x-75:focus{
    --transform-scale-x: .75;
  }

  .s1920\:focus\:scale-x-90:focus{
    --transform-scale-x: .9;
  }

  .s1920\:focus\:scale-x-95:focus{
    --transform-scale-x: .95;
  }

  .s1920\:focus\:scale-x-100:focus{
    --transform-scale-x: 1;
  }

  .s1920\:focus\:scale-x-105:focus{
    --transform-scale-x: 1.05;
  }

  .s1920\:focus\:scale-x-110:focus{
    --transform-scale-x: 1.1;
  }

  .s1920\:focus\:scale-x-125:focus{
    --transform-scale-x: 1.25;
  }

  .s1920\:focus\:scale-x-150:focus{
    --transform-scale-x: 1.5;
  }

  .s1920\:focus\:scale-y-0:focus{
    --transform-scale-y: 0;
  }

  .s1920\:focus\:scale-y-50:focus{
    --transform-scale-y: .5;
  }

  .s1920\:focus\:scale-y-75:focus{
    --transform-scale-y: .75;
  }

  .s1920\:focus\:scale-y-90:focus{
    --transform-scale-y: .9;
  }

  .s1920\:focus\:scale-y-95:focus{
    --transform-scale-y: .95;
  }

  .s1920\:focus\:scale-y-100:focus{
    --transform-scale-y: 1;
  }

  .s1920\:focus\:scale-y-105:focus{
    --transform-scale-y: 1.05;
  }

  .s1920\:focus\:scale-y-110:focus{
    --transform-scale-y: 1.1;
  }

  .s1920\:focus\:scale-y-125:focus{
    --transform-scale-y: 1.25;
  }

  .s1920\:focus\:scale-y-150:focus{
    --transform-scale-y: 1.5;
  }

  .s1920\:active\:scale-0:active{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1920\:active\:scale-50:active{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1920\:active\:scale-75:active{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1920\:active\:scale-90:active{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1920\:active\:scale-95:active{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1920\:active\:scale-100:active{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1920\:active\:scale-105:active{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1920\:active\:scale-110:active{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1920\:active\:scale-125:active{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1920\:active\:scale-150:active{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1920\:active\:scale-x-0:active{
    --transform-scale-x: 0;
  }

  .s1920\:active\:scale-x-50:active{
    --transform-scale-x: .5;
  }

  .s1920\:active\:scale-x-75:active{
    --transform-scale-x: .75;
  }

  .s1920\:active\:scale-x-90:active{
    --transform-scale-x: .9;
  }

  .s1920\:active\:scale-x-95:active{
    --transform-scale-x: .95;
  }

  .s1920\:active\:scale-x-100:active{
    --transform-scale-x: 1;
  }

  .s1920\:active\:scale-x-105:active{
    --transform-scale-x: 1.05;
  }

  .s1920\:active\:scale-x-110:active{
    --transform-scale-x: 1.1;
  }

  .s1920\:active\:scale-x-125:active{
    --transform-scale-x: 1.25;
  }

  .s1920\:active\:scale-x-150:active{
    --transform-scale-x: 1.5;
  }

  .s1920\:active\:scale-y-0:active{
    --transform-scale-y: 0;
  }

  .s1920\:active\:scale-y-50:active{
    --transform-scale-y: .5;
  }

  .s1920\:active\:scale-y-75:active{
    --transform-scale-y: .75;
  }

  .s1920\:active\:scale-y-90:active{
    --transform-scale-y: .9;
  }

  .s1920\:active\:scale-y-95:active{
    --transform-scale-y: .95;
  }

  .s1920\:active\:scale-y-100:active{
    --transform-scale-y: 1;
  }

  .s1920\:active\:scale-y-105:active{
    --transform-scale-y: 1.05;
  }

  .s1920\:active\:scale-y-110:active{
    --transform-scale-y: 1.1;
  }

  .s1920\:active\:scale-y-125:active{
    --transform-scale-y: 1.25;
  }

  .s1920\:active\:scale-y-150:active{
    --transform-scale-y: 1.5;
  }

  .s1920\:first\:scale-0:first-child{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1920\:first\:scale-50:first-child{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1920\:first\:scale-75:first-child{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1920\:first\:scale-90:first-child{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1920\:first\:scale-95:first-child{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1920\:first\:scale-100:first-child{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1920\:first\:scale-105:first-child{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1920\:first\:scale-110:first-child{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1920\:first\:scale-125:first-child{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1920\:first\:scale-150:first-child{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1920\:first\:scale-x-0:first-child{
    --transform-scale-x: 0;
  }

  .s1920\:first\:scale-x-50:first-child{
    --transform-scale-x: .5;
  }

  .s1920\:first\:scale-x-75:first-child{
    --transform-scale-x: .75;
  }

  .s1920\:first\:scale-x-90:first-child{
    --transform-scale-x: .9;
  }

  .s1920\:first\:scale-x-95:first-child{
    --transform-scale-x: .95;
  }

  .s1920\:first\:scale-x-100:first-child{
    --transform-scale-x: 1;
  }

  .s1920\:first\:scale-x-105:first-child{
    --transform-scale-x: 1.05;
  }

  .s1920\:first\:scale-x-110:first-child{
    --transform-scale-x: 1.1;
  }

  .s1920\:first\:scale-x-125:first-child{
    --transform-scale-x: 1.25;
  }

  .s1920\:first\:scale-x-150:first-child{
    --transform-scale-x: 1.5;
  }

  .s1920\:first\:scale-y-0:first-child{
    --transform-scale-y: 0;
  }

  .s1920\:first\:scale-y-50:first-child{
    --transform-scale-y: .5;
  }

  .s1920\:first\:scale-y-75:first-child{
    --transform-scale-y: .75;
  }

  .s1920\:first\:scale-y-90:first-child{
    --transform-scale-y: .9;
  }

  .s1920\:first\:scale-y-95:first-child{
    --transform-scale-y: .95;
  }

  .s1920\:first\:scale-y-100:first-child{
    --transform-scale-y: 1;
  }

  .s1920\:first\:scale-y-105:first-child{
    --transform-scale-y: 1.05;
  }

  .s1920\:first\:scale-y-110:first-child{
    --transform-scale-y: 1.1;
  }

  .s1920\:first\:scale-y-125:first-child{
    --transform-scale-y: 1.25;
  }

  .s1920\:first\:scale-y-150:first-child{
    --transform-scale-y: 1.5;
  }

  .s1920\:last\:scale-0:last-child{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .s1920\:last\:scale-50:last-child{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .s1920\:last\:scale-75:last-child{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .s1920\:last\:scale-90:last-child{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .s1920\:last\:scale-95:last-child{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .s1920\:last\:scale-100:last-child{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .s1920\:last\:scale-105:last-child{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .s1920\:last\:scale-110:last-child{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .s1920\:last\:scale-125:last-child{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .s1920\:last\:scale-150:last-child{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .s1920\:last\:scale-x-0:last-child{
    --transform-scale-x: 0;
  }

  .s1920\:last\:scale-x-50:last-child{
    --transform-scale-x: .5;
  }

  .s1920\:last\:scale-x-75:last-child{
    --transform-scale-x: .75;
  }

  .s1920\:last\:scale-x-90:last-child{
    --transform-scale-x: .9;
  }

  .s1920\:last\:scale-x-95:last-child{
    --transform-scale-x: .95;
  }

  .s1920\:last\:scale-x-100:last-child{
    --transform-scale-x: 1;
  }

  .s1920\:last\:scale-x-105:last-child{
    --transform-scale-x: 1.05;
  }

  .s1920\:last\:scale-x-110:last-child{
    --transform-scale-x: 1.1;
  }

  .s1920\:last\:scale-x-125:last-child{
    --transform-scale-x: 1.25;
  }

  .s1920\:last\:scale-x-150:last-child{
    --transform-scale-x: 1.5;
  }

  .s1920\:last\:scale-y-0:last-child{
    --transform-scale-y: 0;
  }

  .s1920\:last\:scale-y-50:last-child{
    --transform-scale-y: .5;
  }

  .s1920\:last\:scale-y-75:last-child{
    --transform-scale-y: .75;
  }

  .s1920\:last\:scale-y-90:last-child{
    --transform-scale-y: .9;
  }

  .s1920\:last\:scale-y-95:last-child{
    --transform-scale-y: .95;
  }

  .s1920\:last\:scale-y-100:last-child{
    --transform-scale-y: 1;
  }

  .s1920\:last\:scale-y-105:last-child{
    --transform-scale-y: 1.05;
  }

  .s1920\:last\:scale-y-110:last-child{
    --transform-scale-y: 1.1;
  }

  .s1920\:last\:scale-y-125:last-child{
    --transform-scale-y: 1.25;
  }

  .s1920\:last\:scale-y-150:last-child{
    --transform-scale-y: 1.5;
  }

  .s1920\:rotate-0{
    --transform-rotate: 0;
  }

  .s1920\:rotate-45{
    --transform-rotate: 45deg;
  }

  .s1920\:rotate-90{
    --transform-rotate: 90deg;
  }

  .s1920\:rotate-180{
    --transform-rotate: 180deg;
  }

  .s1920\:-rotate-180{
    --transform-rotate: -180deg;
  }

  .s1920\:-rotate-90{
    --transform-rotate: -90deg;
  }

  .s1920\:-rotate-45{
    --transform-rotate: -45deg;
  }

  .s1920\:hover\:rotate-0:hover{
    --transform-rotate: 0;
  }

  .s1920\:hover\:rotate-45:hover{
    --transform-rotate: 45deg;
  }

  .s1920\:hover\:rotate-90:hover{
    --transform-rotate: 90deg;
  }

  .s1920\:hover\:rotate-180:hover{
    --transform-rotate: 180deg;
  }

  .s1920\:hover\:-rotate-180:hover{
    --transform-rotate: -180deg;
  }

  .s1920\:hover\:-rotate-90:hover{
    --transform-rotate: -90deg;
  }

  .s1920\:hover\:-rotate-45:hover{
    --transform-rotate: -45deg;
  }

  .s1920\:focus\:rotate-0:focus{
    --transform-rotate: 0;
  }

  .s1920\:focus\:rotate-45:focus{
    --transform-rotate: 45deg;
  }

  .s1920\:focus\:rotate-90:focus{
    --transform-rotate: 90deg;
  }

  .s1920\:focus\:rotate-180:focus{
    --transform-rotate: 180deg;
  }

  .s1920\:focus\:-rotate-180:focus{
    --transform-rotate: -180deg;
  }

  .s1920\:focus\:-rotate-90:focus{
    --transform-rotate: -90deg;
  }

  .s1920\:focus\:-rotate-45:focus{
    --transform-rotate: -45deg;
  }

  .s1920\:active\:rotate-0:active{
    --transform-rotate: 0;
  }

  .s1920\:active\:rotate-45:active{
    --transform-rotate: 45deg;
  }

  .s1920\:active\:rotate-90:active{
    --transform-rotate: 90deg;
  }

  .s1920\:active\:rotate-180:active{
    --transform-rotate: 180deg;
  }

  .s1920\:active\:-rotate-180:active{
    --transform-rotate: -180deg;
  }

  .s1920\:active\:-rotate-90:active{
    --transform-rotate: -90deg;
  }

  .s1920\:active\:-rotate-45:active{
    --transform-rotate: -45deg;
  }

  .s1920\:first\:rotate-0:first-child{
    --transform-rotate: 0;
  }

  .s1920\:first\:rotate-45:first-child{
    --transform-rotate: 45deg;
  }

  .s1920\:first\:rotate-90:first-child{
    --transform-rotate: 90deg;
  }

  .s1920\:first\:rotate-180:first-child{
    --transform-rotate: 180deg;
  }

  .s1920\:first\:-rotate-180:first-child{
    --transform-rotate: -180deg;
  }

  .s1920\:first\:-rotate-90:first-child{
    --transform-rotate: -90deg;
  }

  .s1920\:first\:-rotate-45:first-child{
    --transform-rotate: -45deg;
  }

  .s1920\:last\:rotate-0:last-child{
    --transform-rotate: 0;
  }

  .s1920\:last\:rotate-45:last-child{
    --transform-rotate: 45deg;
  }

  .s1920\:last\:rotate-90:last-child{
    --transform-rotate: 90deg;
  }

  .s1920\:last\:rotate-180:last-child{
    --transform-rotate: 180deg;
  }

  .s1920\:last\:-rotate-180:last-child{
    --transform-rotate: -180deg;
  }

  .s1920\:last\:-rotate-90:last-child{
    --transform-rotate: -90deg;
  }

  .s1920\:last\:-rotate-45:last-child{
    --transform-rotate: -45deg;
  }

  .s1920\:translate-x-0{
    --transform-translate-x: 0;
  }

  .s1920\:translate-x-1{
    --transform-translate-x: 0.25rem;
  }

  .s1920\:translate-x-2{
    --transform-translate-x: 0.5rem;
  }

  .s1920\:translate-x-3{
    --transform-translate-x: 0.75rem;
  }

  .s1920\:translate-x-4{
    --transform-translate-x: 1rem;
  }

  .s1920\:translate-x-5{
    --transform-translate-x: 1.25rem;
  }

  .s1920\:translate-x-6{
    --transform-translate-x: 1.5rem;
  }

  .s1920\:translate-x-8{
    --transform-translate-x: 2rem;
  }

  .s1920\:translate-x-10{
    --transform-translate-x: 2.5rem;
  }

  .s1920\:translate-x-12{
    --transform-translate-x: 3rem;
  }

  .s1920\:translate-x-14{
    --transform-translate-x: 3.5rem;
  }

  .s1920\:translate-x-16{
    --transform-translate-x: 4rem;
  }

  .s1920\:translate-x-20{
    --transform-translate-x: 5rem;
  }

  .s1920\:translate-x-24{
    --transform-translate-x: 6rem;
  }

  .s1920\:translate-x-32{
    --transform-translate-x: 8rem;
  }

  .s1920\:translate-x-40{
    --transform-translate-x: 10rem;
  }

  .s1920\:translate-x-48{
    --transform-translate-x: 12rem;
  }

  .s1920\:translate-x-56{
    --transform-translate-x: 14rem;
  }

  .s1920\:translate-x-64{
    --transform-translate-x: 16rem;
  }

  .s1920\:translate-x-px{
    --transform-translate-x: 1px;
  }

  .s1920\:-translate-x-1{
    --transform-translate-x: -0.25rem;
  }

  .s1920\:-translate-x-2{
    --transform-translate-x: -0.5rem;
  }

  .s1920\:-translate-x-3{
    --transform-translate-x: -0.75rem;
  }

  .s1920\:-translate-x-4{
    --transform-translate-x: -1rem;
  }

  .s1920\:-translate-x-5{
    --transform-translate-x: -1.25rem;
  }

  .s1920\:-translate-x-6{
    --transform-translate-x: -1.5rem;
  }

  .s1920\:-translate-x-8{
    --transform-translate-x: -2rem;
  }

  .s1920\:-translate-x-10{
    --transform-translate-x: -2.5rem;
  }

  .s1920\:-translate-x-12{
    --transform-translate-x: -3rem;
  }

  .s1920\:-translate-x-14{
    --transform-translate-x: -3.5rem;
  }

  .s1920\:-translate-x-16{
    --transform-translate-x: -4rem;
  }

  .s1920\:-translate-x-20{
    --transform-translate-x: -5rem;
  }

  .s1920\:-translate-x-24{
    --transform-translate-x: -6rem;
  }

  .s1920\:-translate-x-32{
    --transform-translate-x: -8rem;
  }

  .s1920\:-translate-x-40{
    --transform-translate-x: -10rem;
  }

  .s1920\:-translate-x-48{
    --transform-translate-x: -12rem;
  }

  .s1920\:-translate-x-56{
    --transform-translate-x: -14rem;
  }

  .s1920\:-translate-x-64{
    --transform-translate-x: -16rem;
  }

  .s1920\:-translate-x-px{
    --transform-translate-x: -1px;
  }

  .s1920\:-translate-x-full{
    --transform-translate-x: -100%;
  }

  .s1920\:-translate-x-1\/2{
    --transform-translate-x: -50%;
  }

  .s1920\:translate-x-1\/2{
    --transform-translate-x: 50%;
  }

  .s1920\:translate-x-full{
    --transform-translate-x: 100%;
  }

  .s1920\:translate-y-0{
    --transform-translate-y: 0;
  }

  .s1920\:translate-y-1{
    --transform-translate-y: 0.25rem;
  }

  .s1920\:translate-y-2{
    --transform-translate-y: 0.5rem;
  }

  .s1920\:translate-y-3{
    --transform-translate-y: 0.75rem;
  }

  .s1920\:translate-y-4{
    --transform-translate-y: 1rem;
  }

  .s1920\:translate-y-5{
    --transform-translate-y: 1.25rem;
  }

  .s1920\:translate-y-6{
    --transform-translate-y: 1.5rem;
  }

  .s1920\:translate-y-8{
    --transform-translate-y: 2rem;
  }

  .s1920\:translate-y-10{
    --transform-translate-y: 2.5rem;
  }

  .s1920\:translate-y-12{
    --transform-translate-y: 3rem;
  }

  .s1920\:translate-y-14{
    --transform-translate-y: 3.5rem;
  }

  .s1920\:translate-y-16{
    --transform-translate-y: 4rem;
  }

  .s1920\:translate-y-20{
    --transform-translate-y: 5rem;
  }

  .s1920\:translate-y-24{
    --transform-translate-y: 6rem;
  }

  .s1920\:translate-y-32{
    --transform-translate-y: 8rem;
  }

  .s1920\:translate-y-40{
    --transform-translate-y: 10rem;
  }

  .s1920\:translate-y-48{
    --transform-translate-y: 12rem;
  }

  .s1920\:translate-y-56{
    --transform-translate-y: 14rem;
  }

  .s1920\:translate-y-64{
    --transform-translate-y: 16rem;
  }

  .s1920\:translate-y-px{
    --transform-translate-y: 1px;
  }

  .s1920\:-translate-y-1{
    --transform-translate-y: -0.25rem;
  }

  .s1920\:-translate-y-2{
    --transform-translate-y: -0.5rem;
  }

  .s1920\:-translate-y-3{
    --transform-translate-y: -0.75rem;
  }

  .s1920\:-translate-y-4{
    --transform-translate-y: -1rem;
  }

  .s1920\:-translate-y-5{
    --transform-translate-y: -1.25rem;
  }

  .s1920\:-translate-y-6{
    --transform-translate-y: -1.5rem;
  }

  .s1920\:-translate-y-8{
    --transform-translate-y: -2rem;
  }

  .s1920\:-translate-y-10{
    --transform-translate-y: -2.5rem;
  }

  .s1920\:-translate-y-12{
    --transform-translate-y: -3rem;
  }

  .s1920\:-translate-y-14{
    --transform-translate-y: -3.5rem;
  }

  .s1920\:-translate-y-16{
    --transform-translate-y: -4rem;
  }

  .s1920\:-translate-y-20{
    --transform-translate-y: -5rem;
  }

  .s1920\:-translate-y-24{
    --transform-translate-y: -6rem;
  }

  .s1920\:-translate-y-32{
    --transform-translate-y: -8rem;
  }

  .s1920\:-translate-y-40{
    --transform-translate-y: -10rem;
  }

  .s1920\:-translate-y-48{
    --transform-translate-y: -12rem;
  }

  .s1920\:-translate-y-56{
    --transform-translate-y: -14rem;
  }

  .s1920\:-translate-y-64{
    --transform-translate-y: -16rem;
  }

  .s1920\:-translate-y-px{
    --transform-translate-y: -1px;
  }

  .s1920\:-translate-y-full{
    --transform-translate-y: -100%;
  }

  .s1920\:-translate-y-1\/2{
    --transform-translate-y: -50%;
  }

  .s1920\:translate-y-1\/2{
    --transform-translate-y: 50%;
  }

  .s1920\:translate-y-full{
    --transform-translate-y: 100%;
  }

  .s1920\:hover\:translate-x-0:hover{
    --transform-translate-x: 0;
  }

  .s1920\:hover\:translate-x-1:hover{
    --transform-translate-x: 0.25rem;
  }

  .s1920\:hover\:translate-x-2:hover{
    --transform-translate-x: 0.5rem;
  }

  .s1920\:hover\:translate-x-3:hover{
    --transform-translate-x: 0.75rem;
  }

  .s1920\:hover\:translate-x-4:hover{
    --transform-translate-x: 1rem;
  }

  .s1920\:hover\:translate-x-5:hover{
    --transform-translate-x: 1.25rem;
  }

  .s1920\:hover\:translate-x-6:hover{
    --transform-translate-x: 1.5rem;
  }

  .s1920\:hover\:translate-x-8:hover{
    --transform-translate-x: 2rem;
  }

  .s1920\:hover\:translate-x-10:hover{
    --transform-translate-x: 2.5rem;
  }

  .s1920\:hover\:translate-x-12:hover{
    --transform-translate-x: 3rem;
  }

  .s1920\:hover\:translate-x-14:hover{
    --transform-translate-x: 3.5rem;
  }

  .s1920\:hover\:translate-x-16:hover{
    --transform-translate-x: 4rem;
  }

  .s1920\:hover\:translate-x-20:hover{
    --transform-translate-x: 5rem;
  }

  .s1920\:hover\:translate-x-24:hover{
    --transform-translate-x: 6rem;
  }

  .s1920\:hover\:translate-x-32:hover{
    --transform-translate-x: 8rem;
  }

  .s1920\:hover\:translate-x-40:hover{
    --transform-translate-x: 10rem;
  }

  .s1920\:hover\:translate-x-48:hover{
    --transform-translate-x: 12rem;
  }

  .s1920\:hover\:translate-x-56:hover{
    --transform-translate-x: 14rem;
  }

  .s1920\:hover\:translate-x-64:hover{
    --transform-translate-x: 16rem;
  }

  .s1920\:hover\:translate-x-px:hover{
    --transform-translate-x: 1px;
  }

  .s1920\:hover\:-translate-x-1:hover{
    --transform-translate-x: -0.25rem;
  }

  .s1920\:hover\:-translate-x-2:hover{
    --transform-translate-x: -0.5rem;
  }

  .s1920\:hover\:-translate-x-3:hover{
    --transform-translate-x: -0.75rem;
  }

  .s1920\:hover\:-translate-x-4:hover{
    --transform-translate-x: -1rem;
  }

  .s1920\:hover\:-translate-x-5:hover{
    --transform-translate-x: -1.25rem;
  }

  .s1920\:hover\:-translate-x-6:hover{
    --transform-translate-x: -1.5rem;
  }

  .s1920\:hover\:-translate-x-8:hover{
    --transform-translate-x: -2rem;
  }

  .s1920\:hover\:-translate-x-10:hover{
    --transform-translate-x: -2.5rem;
  }

  .s1920\:hover\:-translate-x-12:hover{
    --transform-translate-x: -3rem;
  }

  .s1920\:hover\:-translate-x-14:hover{
    --transform-translate-x: -3.5rem;
  }

  .s1920\:hover\:-translate-x-16:hover{
    --transform-translate-x: -4rem;
  }

  .s1920\:hover\:-translate-x-20:hover{
    --transform-translate-x: -5rem;
  }

  .s1920\:hover\:-translate-x-24:hover{
    --transform-translate-x: -6rem;
  }

  .s1920\:hover\:-translate-x-32:hover{
    --transform-translate-x: -8rem;
  }

  .s1920\:hover\:-translate-x-40:hover{
    --transform-translate-x: -10rem;
  }

  .s1920\:hover\:-translate-x-48:hover{
    --transform-translate-x: -12rem;
  }

  .s1920\:hover\:-translate-x-56:hover{
    --transform-translate-x: -14rem;
  }

  .s1920\:hover\:-translate-x-64:hover{
    --transform-translate-x: -16rem;
  }

  .s1920\:hover\:-translate-x-px:hover{
    --transform-translate-x: -1px;
  }

  .s1920\:hover\:-translate-x-full:hover{
    --transform-translate-x: -100%;
  }

  .s1920\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x: -50%;
  }

  .s1920\:hover\:translate-x-1\/2:hover{
    --transform-translate-x: 50%;
  }

  .s1920\:hover\:translate-x-full:hover{
    --transform-translate-x: 100%;
  }

  .s1920\:hover\:translate-y-0:hover{
    --transform-translate-y: 0;
  }

  .s1920\:hover\:translate-y-1:hover{
    --transform-translate-y: 0.25rem;
  }

  .s1920\:hover\:translate-y-2:hover{
    --transform-translate-y: 0.5rem;
  }

  .s1920\:hover\:translate-y-3:hover{
    --transform-translate-y: 0.75rem;
  }

  .s1920\:hover\:translate-y-4:hover{
    --transform-translate-y: 1rem;
  }

  .s1920\:hover\:translate-y-5:hover{
    --transform-translate-y: 1.25rem;
  }

  .s1920\:hover\:translate-y-6:hover{
    --transform-translate-y: 1.5rem;
  }

  .s1920\:hover\:translate-y-8:hover{
    --transform-translate-y: 2rem;
  }

  .s1920\:hover\:translate-y-10:hover{
    --transform-translate-y: 2.5rem;
  }

  .s1920\:hover\:translate-y-12:hover{
    --transform-translate-y: 3rem;
  }

  .s1920\:hover\:translate-y-14:hover{
    --transform-translate-y: 3.5rem;
  }

  .s1920\:hover\:translate-y-16:hover{
    --transform-translate-y: 4rem;
  }

  .s1920\:hover\:translate-y-20:hover{
    --transform-translate-y: 5rem;
  }

  .s1920\:hover\:translate-y-24:hover{
    --transform-translate-y: 6rem;
  }

  .s1920\:hover\:translate-y-32:hover{
    --transform-translate-y: 8rem;
  }

  .s1920\:hover\:translate-y-40:hover{
    --transform-translate-y: 10rem;
  }

  .s1920\:hover\:translate-y-48:hover{
    --transform-translate-y: 12rem;
  }

  .s1920\:hover\:translate-y-56:hover{
    --transform-translate-y: 14rem;
  }

  .s1920\:hover\:translate-y-64:hover{
    --transform-translate-y: 16rem;
  }

  .s1920\:hover\:translate-y-px:hover{
    --transform-translate-y: 1px;
  }

  .s1920\:hover\:-translate-y-1:hover{
    --transform-translate-y: -0.25rem;
  }

  .s1920\:hover\:-translate-y-2:hover{
    --transform-translate-y: -0.5rem;
  }

  .s1920\:hover\:-translate-y-3:hover{
    --transform-translate-y: -0.75rem;
  }

  .s1920\:hover\:-translate-y-4:hover{
    --transform-translate-y: -1rem;
  }

  .s1920\:hover\:-translate-y-5:hover{
    --transform-translate-y: -1.25rem;
  }

  .s1920\:hover\:-translate-y-6:hover{
    --transform-translate-y: -1.5rem;
  }

  .s1920\:hover\:-translate-y-8:hover{
    --transform-translate-y: -2rem;
  }

  .s1920\:hover\:-translate-y-10:hover{
    --transform-translate-y: -2.5rem;
  }

  .s1920\:hover\:-translate-y-12:hover{
    --transform-translate-y: -3rem;
  }

  .s1920\:hover\:-translate-y-14:hover{
    --transform-translate-y: -3.5rem;
  }

  .s1920\:hover\:-translate-y-16:hover{
    --transform-translate-y: -4rem;
  }

  .s1920\:hover\:-translate-y-20:hover{
    --transform-translate-y: -5rem;
  }

  .s1920\:hover\:-translate-y-24:hover{
    --transform-translate-y: -6rem;
  }

  .s1920\:hover\:-translate-y-32:hover{
    --transform-translate-y: -8rem;
  }

  .s1920\:hover\:-translate-y-40:hover{
    --transform-translate-y: -10rem;
  }

  .s1920\:hover\:-translate-y-48:hover{
    --transform-translate-y: -12rem;
  }

  .s1920\:hover\:-translate-y-56:hover{
    --transform-translate-y: -14rem;
  }

  .s1920\:hover\:-translate-y-64:hover{
    --transform-translate-y: -16rem;
  }

  .s1920\:hover\:-translate-y-px:hover{
    --transform-translate-y: -1px;
  }

  .s1920\:hover\:-translate-y-full:hover{
    --transform-translate-y: -100%;
  }

  .s1920\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y: -50%;
  }

  .s1920\:hover\:translate-y-1\/2:hover{
    --transform-translate-y: 50%;
  }

  .s1920\:hover\:translate-y-full:hover{
    --transform-translate-y: 100%;
  }

  .s1920\:focus\:translate-x-0:focus{
    --transform-translate-x: 0;
  }

  .s1920\:focus\:translate-x-1:focus{
    --transform-translate-x: 0.25rem;
  }

  .s1920\:focus\:translate-x-2:focus{
    --transform-translate-x: 0.5rem;
  }

  .s1920\:focus\:translate-x-3:focus{
    --transform-translate-x: 0.75rem;
  }

  .s1920\:focus\:translate-x-4:focus{
    --transform-translate-x: 1rem;
  }

  .s1920\:focus\:translate-x-5:focus{
    --transform-translate-x: 1.25rem;
  }

  .s1920\:focus\:translate-x-6:focus{
    --transform-translate-x: 1.5rem;
  }

  .s1920\:focus\:translate-x-8:focus{
    --transform-translate-x: 2rem;
  }

  .s1920\:focus\:translate-x-10:focus{
    --transform-translate-x: 2.5rem;
  }

  .s1920\:focus\:translate-x-12:focus{
    --transform-translate-x: 3rem;
  }

  .s1920\:focus\:translate-x-14:focus{
    --transform-translate-x: 3.5rem;
  }

  .s1920\:focus\:translate-x-16:focus{
    --transform-translate-x: 4rem;
  }

  .s1920\:focus\:translate-x-20:focus{
    --transform-translate-x: 5rem;
  }

  .s1920\:focus\:translate-x-24:focus{
    --transform-translate-x: 6rem;
  }

  .s1920\:focus\:translate-x-32:focus{
    --transform-translate-x: 8rem;
  }

  .s1920\:focus\:translate-x-40:focus{
    --transform-translate-x: 10rem;
  }

  .s1920\:focus\:translate-x-48:focus{
    --transform-translate-x: 12rem;
  }

  .s1920\:focus\:translate-x-56:focus{
    --transform-translate-x: 14rem;
  }

  .s1920\:focus\:translate-x-64:focus{
    --transform-translate-x: 16rem;
  }

  .s1920\:focus\:translate-x-px:focus{
    --transform-translate-x: 1px;
  }

  .s1920\:focus\:-translate-x-1:focus{
    --transform-translate-x: -0.25rem;
  }

  .s1920\:focus\:-translate-x-2:focus{
    --transform-translate-x: -0.5rem;
  }

  .s1920\:focus\:-translate-x-3:focus{
    --transform-translate-x: -0.75rem;
  }

  .s1920\:focus\:-translate-x-4:focus{
    --transform-translate-x: -1rem;
  }

  .s1920\:focus\:-translate-x-5:focus{
    --transform-translate-x: -1.25rem;
  }

  .s1920\:focus\:-translate-x-6:focus{
    --transform-translate-x: -1.5rem;
  }

  .s1920\:focus\:-translate-x-8:focus{
    --transform-translate-x: -2rem;
  }

  .s1920\:focus\:-translate-x-10:focus{
    --transform-translate-x: -2.5rem;
  }

  .s1920\:focus\:-translate-x-12:focus{
    --transform-translate-x: -3rem;
  }

  .s1920\:focus\:-translate-x-14:focus{
    --transform-translate-x: -3.5rem;
  }

  .s1920\:focus\:-translate-x-16:focus{
    --transform-translate-x: -4rem;
  }

  .s1920\:focus\:-translate-x-20:focus{
    --transform-translate-x: -5rem;
  }

  .s1920\:focus\:-translate-x-24:focus{
    --transform-translate-x: -6rem;
  }

  .s1920\:focus\:-translate-x-32:focus{
    --transform-translate-x: -8rem;
  }

  .s1920\:focus\:-translate-x-40:focus{
    --transform-translate-x: -10rem;
  }

  .s1920\:focus\:-translate-x-48:focus{
    --transform-translate-x: -12rem;
  }

  .s1920\:focus\:-translate-x-56:focus{
    --transform-translate-x: -14rem;
  }

  .s1920\:focus\:-translate-x-64:focus{
    --transform-translate-x: -16rem;
  }

  .s1920\:focus\:-translate-x-px:focus{
    --transform-translate-x: -1px;
  }

  .s1920\:focus\:-translate-x-full:focus{
    --transform-translate-x: -100%;
  }

  .s1920\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x: -50%;
  }

  .s1920\:focus\:translate-x-1\/2:focus{
    --transform-translate-x: 50%;
  }

  .s1920\:focus\:translate-x-full:focus{
    --transform-translate-x: 100%;
  }

  .s1920\:focus\:translate-y-0:focus{
    --transform-translate-y: 0;
  }

  .s1920\:focus\:translate-y-1:focus{
    --transform-translate-y: 0.25rem;
  }

  .s1920\:focus\:translate-y-2:focus{
    --transform-translate-y: 0.5rem;
  }

  .s1920\:focus\:translate-y-3:focus{
    --transform-translate-y: 0.75rem;
  }

  .s1920\:focus\:translate-y-4:focus{
    --transform-translate-y: 1rem;
  }

  .s1920\:focus\:translate-y-5:focus{
    --transform-translate-y: 1.25rem;
  }

  .s1920\:focus\:translate-y-6:focus{
    --transform-translate-y: 1.5rem;
  }

  .s1920\:focus\:translate-y-8:focus{
    --transform-translate-y: 2rem;
  }

  .s1920\:focus\:translate-y-10:focus{
    --transform-translate-y: 2.5rem;
  }

  .s1920\:focus\:translate-y-12:focus{
    --transform-translate-y: 3rem;
  }

  .s1920\:focus\:translate-y-14:focus{
    --transform-translate-y: 3.5rem;
  }

  .s1920\:focus\:translate-y-16:focus{
    --transform-translate-y: 4rem;
  }

  .s1920\:focus\:translate-y-20:focus{
    --transform-translate-y: 5rem;
  }

  .s1920\:focus\:translate-y-24:focus{
    --transform-translate-y: 6rem;
  }

  .s1920\:focus\:translate-y-32:focus{
    --transform-translate-y: 8rem;
  }

  .s1920\:focus\:translate-y-40:focus{
    --transform-translate-y: 10rem;
  }

  .s1920\:focus\:translate-y-48:focus{
    --transform-translate-y: 12rem;
  }

  .s1920\:focus\:translate-y-56:focus{
    --transform-translate-y: 14rem;
  }

  .s1920\:focus\:translate-y-64:focus{
    --transform-translate-y: 16rem;
  }

  .s1920\:focus\:translate-y-px:focus{
    --transform-translate-y: 1px;
  }

  .s1920\:focus\:-translate-y-1:focus{
    --transform-translate-y: -0.25rem;
  }

  .s1920\:focus\:-translate-y-2:focus{
    --transform-translate-y: -0.5rem;
  }

  .s1920\:focus\:-translate-y-3:focus{
    --transform-translate-y: -0.75rem;
  }

  .s1920\:focus\:-translate-y-4:focus{
    --transform-translate-y: -1rem;
  }

  .s1920\:focus\:-translate-y-5:focus{
    --transform-translate-y: -1.25rem;
  }

  .s1920\:focus\:-translate-y-6:focus{
    --transform-translate-y: -1.5rem;
  }

  .s1920\:focus\:-translate-y-8:focus{
    --transform-translate-y: -2rem;
  }

  .s1920\:focus\:-translate-y-10:focus{
    --transform-translate-y: -2.5rem;
  }

  .s1920\:focus\:-translate-y-12:focus{
    --transform-translate-y: -3rem;
  }

  .s1920\:focus\:-translate-y-14:focus{
    --transform-translate-y: -3.5rem;
  }

  .s1920\:focus\:-translate-y-16:focus{
    --transform-translate-y: -4rem;
  }

  .s1920\:focus\:-translate-y-20:focus{
    --transform-translate-y: -5rem;
  }

  .s1920\:focus\:-translate-y-24:focus{
    --transform-translate-y: -6rem;
  }

  .s1920\:focus\:-translate-y-32:focus{
    --transform-translate-y: -8rem;
  }

  .s1920\:focus\:-translate-y-40:focus{
    --transform-translate-y: -10rem;
  }

  .s1920\:focus\:-translate-y-48:focus{
    --transform-translate-y: -12rem;
  }

  .s1920\:focus\:-translate-y-56:focus{
    --transform-translate-y: -14rem;
  }

  .s1920\:focus\:-translate-y-64:focus{
    --transform-translate-y: -16rem;
  }

  .s1920\:focus\:-translate-y-px:focus{
    --transform-translate-y: -1px;
  }

  .s1920\:focus\:-translate-y-full:focus{
    --transform-translate-y: -100%;
  }

  .s1920\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y: -50%;
  }

  .s1920\:focus\:translate-y-1\/2:focus{
    --transform-translate-y: 50%;
  }

  .s1920\:focus\:translate-y-full:focus{
    --transform-translate-y: 100%;
  }

  .s1920\:active\:translate-x-0:active{
    --transform-translate-x: 0;
  }

  .s1920\:active\:translate-x-1:active{
    --transform-translate-x: 0.25rem;
  }

  .s1920\:active\:translate-x-2:active{
    --transform-translate-x: 0.5rem;
  }

  .s1920\:active\:translate-x-3:active{
    --transform-translate-x: 0.75rem;
  }

  .s1920\:active\:translate-x-4:active{
    --transform-translate-x: 1rem;
  }

  .s1920\:active\:translate-x-5:active{
    --transform-translate-x: 1.25rem;
  }

  .s1920\:active\:translate-x-6:active{
    --transform-translate-x: 1.5rem;
  }

  .s1920\:active\:translate-x-8:active{
    --transform-translate-x: 2rem;
  }

  .s1920\:active\:translate-x-10:active{
    --transform-translate-x: 2.5rem;
  }

  .s1920\:active\:translate-x-12:active{
    --transform-translate-x: 3rem;
  }

  .s1920\:active\:translate-x-14:active{
    --transform-translate-x: 3.5rem;
  }

  .s1920\:active\:translate-x-16:active{
    --transform-translate-x: 4rem;
  }

  .s1920\:active\:translate-x-20:active{
    --transform-translate-x: 5rem;
  }

  .s1920\:active\:translate-x-24:active{
    --transform-translate-x: 6rem;
  }

  .s1920\:active\:translate-x-32:active{
    --transform-translate-x: 8rem;
  }

  .s1920\:active\:translate-x-40:active{
    --transform-translate-x: 10rem;
  }

  .s1920\:active\:translate-x-48:active{
    --transform-translate-x: 12rem;
  }

  .s1920\:active\:translate-x-56:active{
    --transform-translate-x: 14rem;
  }

  .s1920\:active\:translate-x-64:active{
    --transform-translate-x: 16rem;
  }

  .s1920\:active\:translate-x-px:active{
    --transform-translate-x: 1px;
  }

  .s1920\:active\:-translate-x-1:active{
    --transform-translate-x: -0.25rem;
  }

  .s1920\:active\:-translate-x-2:active{
    --transform-translate-x: -0.5rem;
  }

  .s1920\:active\:-translate-x-3:active{
    --transform-translate-x: -0.75rem;
  }

  .s1920\:active\:-translate-x-4:active{
    --transform-translate-x: -1rem;
  }

  .s1920\:active\:-translate-x-5:active{
    --transform-translate-x: -1.25rem;
  }

  .s1920\:active\:-translate-x-6:active{
    --transform-translate-x: -1.5rem;
  }

  .s1920\:active\:-translate-x-8:active{
    --transform-translate-x: -2rem;
  }

  .s1920\:active\:-translate-x-10:active{
    --transform-translate-x: -2.5rem;
  }

  .s1920\:active\:-translate-x-12:active{
    --transform-translate-x: -3rem;
  }

  .s1920\:active\:-translate-x-14:active{
    --transform-translate-x: -3.5rem;
  }

  .s1920\:active\:-translate-x-16:active{
    --transform-translate-x: -4rem;
  }

  .s1920\:active\:-translate-x-20:active{
    --transform-translate-x: -5rem;
  }

  .s1920\:active\:-translate-x-24:active{
    --transform-translate-x: -6rem;
  }

  .s1920\:active\:-translate-x-32:active{
    --transform-translate-x: -8rem;
  }

  .s1920\:active\:-translate-x-40:active{
    --transform-translate-x: -10rem;
  }

  .s1920\:active\:-translate-x-48:active{
    --transform-translate-x: -12rem;
  }

  .s1920\:active\:-translate-x-56:active{
    --transform-translate-x: -14rem;
  }

  .s1920\:active\:-translate-x-64:active{
    --transform-translate-x: -16rem;
  }

  .s1920\:active\:-translate-x-px:active{
    --transform-translate-x: -1px;
  }

  .s1920\:active\:-translate-x-full:active{
    --transform-translate-x: -100%;
  }

  .s1920\:active\:-translate-x-1\/2:active{
    --transform-translate-x: -50%;
  }

  .s1920\:active\:translate-x-1\/2:active{
    --transform-translate-x: 50%;
  }

  .s1920\:active\:translate-x-full:active{
    --transform-translate-x: 100%;
  }

  .s1920\:active\:translate-y-0:active{
    --transform-translate-y: 0;
  }

  .s1920\:active\:translate-y-1:active{
    --transform-translate-y: 0.25rem;
  }

  .s1920\:active\:translate-y-2:active{
    --transform-translate-y: 0.5rem;
  }

  .s1920\:active\:translate-y-3:active{
    --transform-translate-y: 0.75rem;
  }

  .s1920\:active\:translate-y-4:active{
    --transform-translate-y: 1rem;
  }

  .s1920\:active\:translate-y-5:active{
    --transform-translate-y: 1.25rem;
  }

  .s1920\:active\:translate-y-6:active{
    --transform-translate-y: 1.5rem;
  }

  .s1920\:active\:translate-y-8:active{
    --transform-translate-y: 2rem;
  }

  .s1920\:active\:translate-y-10:active{
    --transform-translate-y: 2.5rem;
  }

  .s1920\:active\:translate-y-12:active{
    --transform-translate-y: 3rem;
  }

  .s1920\:active\:translate-y-14:active{
    --transform-translate-y: 3.5rem;
  }

  .s1920\:active\:translate-y-16:active{
    --transform-translate-y: 4rem;
  }

  .s1920\:active\:translate-y-20:active{
    --transform-translate-y: 5rem;
  }

  .s1920\:active\:translate-y-24:active{
    --transform-translate-y: 6rem;
  }

  .s1920\:active\:translate-y-32:active{
    --transform-translate-y: 8rem;
  }

  .s1920\:active\:translate-y-40:active{
    --transform-translate-y: 10rem;
  }

  .s1920\:active\:translate-y-48:active{
    --transform-translate-y: 12rem;
  }

  .s1920\:active\:translate-y-56:active{
    --transform-translate-y: 14rem;
  }

  .s1920\:active\:translate-y-64:active{
    --transform-translate-y: 16rem;
  }

  .s1920\:active\:translate-y-px:active{
    --transform-translate-y: 1px;
  }

  .s1920\:active\:-translate-y-1:active{
    --transform-translate-y: -0.25rem;
  }

  .s1920\:active\:-translate-y-2:active{
    --transform-translate-y: -0.5rem;
  }

  .s1920\:active\:-translate-y-3:active{
    --transform-translate-y: -0.75rem;
  }

  .s1920\:active\:-translate-y-4:active{
    --transform-translate-y: -1rem;
  }

  .s1920\:active\:-translate-y-5:active{
    --transform-translate-y: -1.25rem;
  }

  .s1920\:active\:-translate-y-6:active{
    --transform-translate-y: -1.5rem;
  }

  .s1920\:active\:-translate-y-8:active{
    --transform-translate-y: -2rem;
  }

  .s1920\:active\:-translate-y-10:active{
    --transform-translate-y: -2.5rem;
  }

  .s1920\:active\:-translate-y-12:active{
    --transform-translate-y: -3rem;
  }

  .s1920\:active\:-translate-y-14:active{
    --transform-translate-y: -3.5rem;
  }

  .s1920\:active\:-translate-y-16:active{
    --transform-translate-y: -4rem;
  }

  .s1920\:active\:-translate-y-20:active{
    --transform-translate-y: -5rem;
  }

  .s1920\:active\:-translate-y-24:active{
    --transform-translate-y: -6rem;
  }

  .s1920\:active\:-translate-y-32:active{
    --transform-translate-y: -8rem;
  }

  .s1920\:active\:-translate-y-40:active{
    --transform-translate-y: -10rem;
  }

  .s1920\:active\:-translate-y-48:active{
    --transform-translate-y: -12rem;
  }

  .s1920\:active\:-translate-y-56:active{
    --transform-translate-y: -14rem;
  }

  .s1920\:active\:-translate-y-64:active{
    --transform-translate-y: -16rem;
  }

  .s1920\:active\:-translate-y-px:active{
    --transform-translate-y: -1px;
  }

  .s1920\:active\:-translate-y-full:active{
    --transform-translate-y: -100%;
  }

  .s1920\:active\:-translate-y-1\/2:active{
    --transform-translate-y: -50%;
  }

  .s1920\:active\:translate-y-1\/2:active{
    --transform-translate-y: 50%;
  }

  .s1920\:active\:translate-y-full:active{
    --transform-translate-y: 100%;
  }

  .s1920\:first\:translate-x-0:first-child{
    --transform-translate-x: 0;
  }

  .s1920\:first\:translate-x-1:first-child{
    --transform-translate-x: 0.25rem;
  }

  .s1920\:first\:translate-x-2:first-child{
    --transform-translate-x: 0.5rem;
  }

  .s1920\:first\:translate-x-3:first-child{
    --transform-translate-x: 0.75rem;
  }

  .s1920\:first\:translate-x-4:first-child{
    --transform-translate-x: 1rem;
  }

  .s1920\:first\:translate-x-5:first-child{
    --transform-translate-x: 1.25rem;
  }

  .s1920\:first\:translate-x-6:first-child{
    --transform-translate-x: 1.5rem;
  }

  .s1920\:first\:translate-x-8:first-child{
    --transform-translate-x: 2rem;
  }

  .s1920\:first\:translate-x-10:first-child{
    --transform-translate-x: 2.5rem;
  }

  .s1920\:first\:translate-x-12:first-child{
    --transform-translate-x: 3rem;
  }

  .s1920\:first\:translate-x-14:first-child{
    --transform-translate-x: 3.5rem;
  }

  .s1920\:first\:translate-x-16:first-child{
    --transform-translate-x: 4rem;
  }

  .s1920\:first\:translate-x-20:first-child{
    --transform-translate-x: 5rem;
  }

  .s1920\:first\:translate-x-24:first-child{
    --transform-translate-x: 6rem;
  }

  .s1920\:first\:translate-x-32:first-child{
    --transform-translate-x: 8rem;
  }

  .s1920\:first\:translate-x-40:first-child{
    --transform-translate-x: 10rem;
  }

  .s1920\:first\:translate-x-48:first-child{
    --transform-translate-x: 12rem;
  }

  .s1920\:first\:translate-x-56:first-child{
    --transform-translate-x: 14rem;
  }

  .s1920\:first\:translate-x-64:first-child{
    --transform-translate-x: 16rem;
  }

  .s1920\:first\:translate-x-px:first-child{
    --transform-translate-x: 1px;
  }

  .s1920\:first\:-translate-x-1:first-child{
    --transform-translate-x: -0.25rem;
  }

  .s1920\:first\:-translate-x-2:first-child{
    --transform-translate-x: -0.5rem;
  }

  .s1920\:first\:-translate-x-3:first-child{
    --transform-translate-x: -0.75rem;
  }

  .s1920\:first\:-translate-x-4:first-child{
    --transform-translate-x: -1rem;
  }

  .s1920\:first\:-translate-x-5:first-child{
    --transform-translate-x: -1.25rem;
  }

  .s1920\:first\:-translate-x-6:first-child{
    --transform-translate-x: -1.5rem;
  }

  .s1920\:first\:-translate-x-8:first-child{
    --transform-translate-x: -2rem;
  }

  .s1920\:first\:-translate-x-10:first-child{
    --transform-translate-x: -2.5rem;
  }

  .s1920\:first\:-translate-x-12:first-child{
    --transform-translate-x: -3rem;
  }

  .s1920\:first\:-translate-x-14:first-child{
    --transform-translate-x: -3.5rem;
  }

  .s1920\:first\:-translate-x-16:first-child{
    --transform-translate-x: -4rem;
  }

  .s1920\:first\:-translate-x-20:first-child{
    --transform-translate-x: -5rem;
  }

  .s1920\:first\:-translate-x-24:first-child{
    --transform-translate-x: -6rem;
  }

  .s1920\:first\:-translate-x-32:first-child{
    --transform-translate-x: -8rem;
  }

  .s1920\:first\:-translate-x-40:first-child{
    --transform-translate-x: -10rem;
  }

  .s1920\:first\:-translate-x-48:first-child{
    --transform-translate-x: -12rem;
  }

  .s1920\:first\:-translate-x-56:first-child{
    --transform-translate-x: -14rem;
  }

  .s1920\:first\:-translate-x-64:first-child{
    --transform-translate-x: -16rem;
  }

  .s1920\:first\:-translate-x-px:first-child{
    --transform-translate-x: -1px;
  }

  .s1920\:first\:-translate-x-full:first-child{
    --transform-translate-x: -100%;
  }

  .s1920\:first\:-translate-x-1\/2:first-child{
    --transform-translate-x: -50%;
  }

  .s1920\:first\:translate-x-1\/2:first-child{
    --transform-translate-x: 50%;
  }

  .s1920\:first\:translate-x-full:first-child{
    --transform-translate-x: 100%;
  }

  .s1920\:first\:translate-y-0:first-child{
    --transform-translate-y: 0;
  }

  .s1920\:first\:translate-y-1:first-child{
    --transform-translate-y: 0.25rem;
  }

  .s1920\:first\:translate-y-2:first-child{
    --transform-translate-y: 0.5rem;
  }

  .s1920\:first\:translate-y-3:first-child{
    --transform-translate-y: 0.75rem;
  }

  .s1920\:first\:translate-y-4:first-child{
    --transform-translate-y: 1rem;
  }

  .s1920\:first\:translate-y-5:first-child{
    --transform-translate-y: 1.25rem;
  }

  .s1920\:first\:translate-y-6:first-child{
    --transform-translate-y: 1.5rem;
  }

  .s1920\:first\:translate-y-8:first-child{
    --transform-translate-y: 2rem;
  }

  .s1920\:first\:translate-y-10:first-child{
    --transform-translate-y: 2.5rem;
  }

  .s1920\:first\:translate-y-12:first-child{
    --transform-translate-y: 3rem;
  }

  .s1920\:first\:translate-y-14:first-child{
    --transform-translate-y: 3.5rem;
  }

  .s1920\:first\:translate-y-16:first-child{
    --transform-translate-y: 4rem;
  }

  .s1920\:first\:translate-y-20:first-child{
    --transform-translate-y: 5rem;
  }

  .s1920\:first\:translate-y-24:first-child{
    --transform-translate-y: 6rem;
  }

  .s1920\:first\:translate-y-32:first-child{
    --transform-translate-y: 8rem;
  }

  .s1920\:first\:translate-y-40:first-child{
    --transform-translate-y: 10rem;
  }

  .s1920\:first\:translate-y-48:first-child{
    --transform-translate-y: 12rem;
  }

  .s1920\:first\:translate-y-56:first-child{
    --transform-translate-y: 14rem;
  }

  .s1920\:first\:translate-y-64:first-child{
    --transform-translate-y: 16rem;
  }

  .s1920\:first\:translate-y-px:first-child{
    --transform-translate-y: 1px;
  }

  .s1920\:first\:-translate-y-1:first-child{
    --transform-translate-y: -0.25rem;
  }

  .s1920\:first\:-translate-y-2:first-child{
    --transform-translate-y: -0.5rem;
  }

  .s1920\:first\:-translate-y-3:first-child{
    --transform-translate-y: -0.75rem;
  }

  .s1920\:first\:-translate-y-4:first-child{
    --transform-translate-y: -1rem;
  }

  .s1920\:first\:-translate-y-5:first-child{
    --transform-translate-y: -1.25rem;
  }

  .s1920\:first\:-translate-y-6:first-child{
    --transform-translate-y: -1.5rem;
  }

  .s1920\:first\:-translate-y-8:first-child{
    --transform-translate-y: -2rem;
  }

  .s1920\:first\:-translate-y-10:first-child{
    --transform-translate-y: -2.5rem;
  }

  .s1920\:first\:-translate-y-12:first-child{
    --transform-translate-y: -3rem;
  }

  .s1920\:first\:-translate-y-14:first-child{
    --transform-translate-y: -3.5rem;
  }

  .s1920\:first\:-translate-y-16:first-child{
    --transform-translate-y: -4rem;
  }

  .s1920\:first\:-translate-y-20:first-child{
    --transform-translate-y: -5rem;
  }

  .s1920\:first\:-translate-y-24:first-child{
    --transform-translate-y: -6rem;
  }

  .s1920\:first\:-translate-y-32:first-child{
    --transform-translate-y: -8rem;
  }

  .s1920\:first\:-translate-y-40:first-child{
    --transform-translate-y: -10rem;
  }

  .s1920\:first\:-translate-y-48:first-child{
    --transform-translate-y: -12rem;
  }

  .s1920\:first\:-translate-y-56:first-child{
    --transform-translate-y: -14rem;
  }

  .s1920\:first\:-translate-y-64:first-child{
    --transform-translate-y: -16rem;
  }

  .s1920\:first\:-translate-y-px:first-child{
    --transform-translate-y: -1px;
  }

  .s1920\:first\:-translate-y-full:first-child{
    --transform-translate-y: -100%;
  }

  .s1920\:first\:-translate-y-1\/2:first-child{
    --transform-translate-y: -50%;
  }

  .s1920\:first\:translate-y-1\/2:first-child{
    --transform-translate-y: 50%;
  }

  .s1920\:first\:translate-y-full:first-child{
    --transform-translate-y: 100%;
  }

  .s1920\:last\:translate-x-0:last-child{
    --transform-translate-x: 0;
  }

  .s1920\:last\:translate-x-1:last-child{
    --transform-translate-x: 0.25rem;
  }

  .s1920\:last\:translate-x-2:last-child{
    --transform-translate-x: 0.5rem;
  }

  .s1920\:last\:translate-x-3:last-child{
    --transform-translate-x: 0.75rem;
  }

  .s1920\:last\:translate-x-4:last-child{
    --transform-translate-x: 1rem;
  }

  .s1920\:last\:translate-x-5:last-child{
    --transform-translate-x: 1.25rem;
  }

  .s1920\:last\:translate-x-6:last-child{
    --transform-translate-x: 1.5rem;
  }

  .s1920\:last\:translate-x-8:last-child{
    --transform-translate-x: 2rem;
  }

  .s1920\:last\:translate-x-10:last-child{
    --transform-translate-x: 2.5rem;
  }

  .s1920\:last\:translate-x-12:last-child{
    --transform-translate-x: 3rem;
  }

  .s1920\:last\:translate-x-14:last-child{
    --transform-translate-x: 3.5rem;
  }

  .s1920\:last\:translate-x-16:last-child{
    --transform-translate-x: 4rem;
  }

  .s1920\:last\:translate-x-20:last-child{
    --transform-translate-x: 5rem;
  }

  .s1920\:last\:translate-x-24:last-child{
    --transform-translate-x: 6rem;
  }

  .s1920\:last\:translate-x-32:last-child{
    --transform-translate-x: 8rem;
  }

  .s1920\:last\:translate-x-40:last-child{
    --transform-translate-x: 10rem;
  }

  .s1920\:last\:translate-x-48:last-child{
    --transform-translate-x: 12rem;
  }

  .s1920\:last\:translate-x-56:last-child{
    --transform-translate-x: 14rem;
  }

  .s1920\:last\:translate-x-64:last-child{
    --transform-translate-x: 16rem;
  }

  .s1920\:last\:translate-x-px:last-child{
    --transform-translate-x: 1px;
  }

  .s1920\:last\:-translate-x-1:last-child{
    --transform-translate-x: -0.25rem;
  }

  .s1920\:last\:-translate-x-2:last-child{
    --transform-translate-x: -0.5rem;
  }

  .s1920\:last\:-translate-x-3:last-child{
    --transform-translate-x: -0.75rem;
  }

  .s1920\:last\:-translate-x-4:last-child{
    --transform-translate-x: -1rem;
  }

  .s1920\:last\:-translate-x-5:last-child{
    --transform-translate-x: -1.25rem;
  }

  .s1920\:last\:-translate-x-6:last-child{
    --transform-translate-x: -1.5rem;
  }

  .s1920\:last\:-translate-x-8:last-child{
    --transform-translate-x: -2rem;
  }

  .s1920\:last\:-translate-x-10:last-child{
    --transform-translate-x: -2.5rem;
  }

  .s1920\:last\:-translate-x-12:last-child{
    --transform-translate-x: -3rem;
  }

  .s1920\:last\:-translate-x-14:last-child{
    --transform-translate-x: -3.5rem;
  }

  .s1920\:last\:-translate-x-16:last-child{
    --transform-translate-x: -4rem;
  }

  .s1920\:last\:-translate-x-20:last-child{
    --transform-translate-x: -5rem;
  }

  .s1920\:last\:-translate-x-24:last-child{
    --transform-translate-x: -6rem;
  }

  .s1920\:last\:-translate-x-32:last-child{
    --transform-translate-x: -8rem;
  }

  .s1920\:last\:-translate-x-40:last-child{
    --transform-translate-x: -10rem;
  }

  .s1920\:last\:-translate-x-48:last-child{
    --transform-translate-x: -12rem;
  }

  .s1920\:last\:-translate-x-56:last-child{
    --transform-translate-x: -14rem;
  }

  .s1920\:last\:-translate-x-64:last-child{
    --transform-translate-x: -16rem;
  }

  .s1920\:last\:-translate-x-px:last-child{
    --transform-translate-x: -1px;
  }

  .s1920\:last\:-translate-x-full:last-child{
    --transform-translate-x: -100%;
  }

  .s1920\:last\:-translate-x-1\/2:last-child{
    --transform-translate-x: -50%;
  }

  .s1920\:last\:translate-x-1\/2:last-child{
    --transform-translate-x: 50%;
  }

  .s1920\:last\:translate-x-full:last-child{
    --transform-translate-x: 100%;
  }

  .s1920\:last\:translate-y-0:last-child{
    --transform-translate-y: 0;
  }

  .s1920\:last\:translate-y-1:last-child{
    --transform-translate-y: 0.25rem;
  }

  .s1920\:last\:translate-y-2:last-child{
    --transform-translate-y: 0.5rem;
  }

  .s1920\:last\:translate-y-3:last-child{
    --transform-translate-y: 0.75rem;
  }

  .s1920\:last\:translate-y-4:last-child{
    --transform-translate-y: 1rem;
  }

  .s1920\:last\:translate-y-5:last-child{
    --transform-translate-y: 1.25rem;
  }

  .s1920\:last\:translate-y-6:last-child{
    --transform-translate-y: 1.5rem;
  }

  .s1920\:last\:translate-y-8:last-child{
    --transform-translate-y: 2rem;
  }

  .s1920\:last\:translate-y-10:last-child{
    --transform-translate-y: 2.5rem;
  }

  .s1920\:last\:translate-y-12:last-child{
    --transform-translate-y: 3rem;
  }

  .s1920\:last\:translate-y-14:last-child{
    --transform-translate-y: 3.5rem;
  }

  .s1920\:last\:translate-y-16:last-child{
    --transform-translate-y: 4rem;
  }

  .s1920\:last\:translate-y-20:last-child{
    --transform-translate-y: 5rem;
  }

  .s1920\:last\:translate-y-24:last-child{
    --transform-translate-y: 6rem;
  }

  .s1920\:last\:translate-y-32:last-child{
    --transform-translate-y: 8rem;
  }

  .s1920\:last\:translate-y-40:last-child{
    --transform-translate-y: 10rem;
  }

  .s1920\:last\:translate-y-48:last-child{
    --transform-translate-y: 12rem;
  }

  .s1920\:last\:translate-y-56:last-child{
    --transform-translate-y: 14rem;
  }

  .s1920\:last\:translate-y-64:last-child{
    --transform-translate-y: 16rem;
  }

  .s1920\:last\:translate-y-px:last-child{
    --transform-translate-y: 1px;
  }

  .s1920\:last\:-translate-y-1:last-child{
    --transform-translate-y: -0.25rem;
  }

  .s1920\:last\:-translate-y-2:last-child{
    --transform-translate-y: -0.5rem;
  }

  .s1920\:last\:-translate-y-3:last-child{
    --transform-translate-y: -0.75rem;
  }

  .s1920\:last\:-translate-y-4:last-child{
    --transform-translate-y: -1rem;
  }

  .s1920\:last\:-translate-y-5:last-child{
    --transform-translate-y: -1.25rem;
  }

  .s1920\:last\:-translate-y-6:last-child{
    --transform-translate-y: -1.5rem;
  }

  .s1920\:last\:-translate-y-8:last-child{
    --transform-translate-y: -2rem;
  }

  .s1920\:last\:-translate-y-10:last-child{
    --transform-translate-y: -2.5rem;
  }

  .s1920\:last\:-translate-y-12:last-child{
    --transform-translate-y: -3rem;
  }

  .s1920\:last\:-translate-y-14:last-child{
    --transform-translate-y: -3.5rem;
  }

  .s1920\:last\:-translate-y-16:last-child{
    --transform-translate-y: -4rem;
  }

  .s1920\:last\:-translate-y-20:last-child{
    --transform-translate-y: -5rem;
  }

  .s1920\:last\:-translate-y-24:last-child{
    --transform-translate-y: -6rem;
  }

  .s1920\:last\:-translate-y-32:last-child{
    --transform-translate-y: -8rem;
  }

  .s1920\:last\:-translate-y-40:last-child{
    --transform-translate-y: -10rem;
  }

  .s1920\:last\:-translate-y-48:last-child{
    --transform-translate-y: -12rem;
  }

  .s1920\:last\:-translate-y-56:last-child{
    --transform-translate-y: -14rem;
  }

  .s1920\:last\:-translate-y-64:last-child{
    --transform-translate-y: -16rem;
  }

  .s1920\:last\:-translate-y-px:last-child{
    --transform-translate-y: -1px;
  }

  .s1920\:last\:-translate-y-full:last-child{
    --transform-translate-y: -100%;
  }

  .s1920\:last\:-translate-y-1\/2:last-child{
    --transform-translate-y: -50%;
  }

  .s1920\:last\:translate-y-1\/2:last-child{
    --transform-translate-y: 50%;
  }

  .s1920\:last\:translate-y-full:last-child{
    --transform-translate-y: 100%;
  }

  .s1920\:skew-x-0{
    --transform-skew-x: 0;
  }

  .s1920\:skew-x-3{
    --transform-skew-x: 3deg;
  }

  .s1920\:skew-x-6{
    --transform-skew-x: 6deg;
  }

  .s1920\:skew-x-12{
    --transform-skew-x: 12deg;
  }

  .s1920\:-skew-x-12{
    --transform-skew-x: -12deg;
  }

  .s1920\:-skew-x-6{
    --transform-skew-x: -6deg;
  }

  .s1920\:-skew-x-3{
    --transform-skew-x: -3deg;
  }

  .s1920\:skew-y-0{
    --transform-skew-y: 0;
  }

  .s1920\:skew-y-3{
    --transform-skew-y: 3deg;
  }

  .s1920\:skew-y-6{
    --transform-skew-y: 6deg;
  }

  .s1920\:skew-y-12{
    --transform-skew-y: 12deg;
  }

  .s1920\:-skew-y-12{
    --transform-skew-y: -12deg;
  }

  .s1920\:-skew-y-6{
    --transform-skew-y: -6deg;
  }

  .s1920\:-skew-y-3{
    --transform-skew-y: -3deg;
  }

  .s1920\:hover\:skew-x-0:hover{
    --transform-skew-x: 0;
  }

  .s1920\:hover\:skew-x-3:hover{
    --transform-skew-x: 3deg;
  }

  .s1920\:hover\:skew-x-6:hover{
    --transform-skew-x: 6deg;
  }

  .s1920\:hover\:skew-x-12:hover{
    --transform-skew-x: 12deg;
  }

  .s1920\:hover\:-skew-x-12:hover{
    --transform-skew-x: -12deg;
  }

  .s1920\:hover\:-skew-x-6:hover{
    --transform-skew-x: -6deg;
  }

  .s1920\:hover\:-skew-x-3:hover{
    --transform-skew-x: -3deg;
  }

  .s1920\:hover\:skew-y-0:hover{
    --transform-skew-y: 0;
  }

  .s1920\:hover\:skew-y-3:hover{
    --transform-skew-y: 3deg;
  }

  .s1920\:hover\:skew-y-6:hover{
    --transform-skew-y: 6deg;
  }

  .s1920\:hover\:skew-y-12:hover{
    --transform-skew-y: 12deg;
  }

  .s1920\:hover\:-skew-y-12:hover{
    --transform-skew-y: -12deg;
  }

  .s1920\:hover\:-skew-y-6:hover{
    --transform-skew-y: -6deg;
  }

  .s1920\:hover\:-skew-y-3:hover{
    --transform-skew-y: -3deg;
  }

  .s1920\:focus\:skew-x-0:focus{
    --transform-skew-x: 0;
  }

  .s1920\:focus\:skew-x-3:focus{
    --transform-skew-x: 3deg;
  }

  .s1920\:focus\:skew-x-6:focus{
    --transform-skew-x: 6deg;
  }

  .s1920\:focus\:skew-x-12:focus{
    --transform-skew-x: 12deg;
  }

  .s1920\:focus\:-skew-x-12:focus{
    --transform-skew-x: -12deg;
  }

  .s1920\:focus\:-skew-x-6:focus{
    --transform-skew-x: -6deg;
  }

  .s1920\:focus\:-skew-x-3:focus{
    --transform-skew-x: -3deg;
  }

  .s1920\:focus\:skew-y-0:focus{
    --transform-skew-y: 0;
  }

  .s1920\:focus\:skew-y-3:focus{
    --transform-skew-y: 3deg;
  }

  .s1920\:focus\:skew-y-6:focus{
    --transform-skew-y: 6deg;
  }

  .s1920\:focus\:skew-y-12:focus{
    --transform-skew-y: 12deg;
  }

  .s1920\:focus\:-skew-y-12:focus{
    --transform-skew-y: -12deg;
  }

  .s1920\:focus\:-skew-y-6:focus{
    --transform-skew-y: -6deg;
  }

  .s1920\:focus\:-skew-y-3:focus{
    --transform-skew-y: -3deg;
  }

  .s1920\:active\:skew-x-0:active{
    --transform-skew-x: 0;
  }

  .s1920\:active\:skew-x-3:active{
    --transform-skew-x: 3deg;
  }

  .s1920\:active\:skew-x-6:active{
    --transform-skew-x: 6deg;
  }

  .s1920\:active\:skew-x-12:active{
    --transform-skew-x: 12deg;
  }

  .s1920\:active\:-skew-x-12:active{
    --transform-skew-x: -12deg;
  }

  .s1920\:active\:-skew-x-6:active{
    --transform-skew-x: -6deg;
  }

  .s1920\:active\:-skew-x-3:active{
    --transform-skew-x: -3deg;
  }

  .s1920\:active\:skew-y-0:active{
    --transform-skew-y: 0;
  }

  .s1920\:active\:skew-y-3:active{
    --transform-skew-y: 3deg;
  }

  .s1920\:active\:skew-y-6:active{
    --transform-skew-y: 6deg;
  }

  .s1920\:active\:skew-y-12:active{
    --transform-skew-y: 12deg;
  }

  .s1920\:active\:-skew-y-12:active{
    --transform-skew-y: -12deg;
  }

  .s1920\:active\:-skew-y-6:active{
    --transform-skew-y: -6deg;
  }

  .s1920\:active\:-skew-y-3:active{
    --transform-skew-y: -3deg;
  }

  .s1920\:first\:skew-x-0:first-child{
    --transform-skew-x: 0;
  }

  .s1920\:first\:skew-x-3:first-child{
    --transform-skew-x: 3deg;
  }

  .s1920\:first\:skew-x-6:first-child{
    --transform-skew-x: 6deg;
  }

  .s1920\:first\:skew-x-12:first-child{
    --transform-skew-x: 12deg;
  }

  .s1920\:first\:-skew-x-12:first-child{
    --transform-skew-x: -12deg;
  }

  .s1920\:first\:-skew-x-6:first-child{
    --transform-skew-x: -6deg;
  }

  .s1920\:first\:-skew-x-3:first-child{
    --transform-skew-x: -3deg;
  }

  .s1920\:first\:skew-y-0:first-child{
    --transform-skew-y: 0;
  }

  .s1920\:first\:skew-y-3:first-child{
    --transform-skew-y: 3deg;
  }

  .s1920\:first\:skew-y-6:first-child{
    --transform-skew-y: 6deg;
  }

  .s1920\:first\:skew-y-12:first-child{
    --transform-skew-y: 12deg;
  }

  .s1920\:first\:-skew-y-12:first-child{
    --transform-skew-y: -12deg;
  }

  .s1920\:first\:-skew-y-6:first-child{
    --transform-skew-y: -6deg;
  }

  .s1920\:first\:-skew-y-3:first-child{
    --transform-skew-y: -3deg;
  }

  .s1920\:last\:skew-x-0:last-child{
    --transform-skew-x: 0;
  }

  .s1920\:last\:skew-x-3:last-child{
    --transform-skew-x: 3deg;
  }

  .s1920\:last\:skew-x-6:last-child{
    --transform-skew-x: 6deg;
  }

  .s1920\:last\:skew-x-12:last-child{
    --transform-skew-x: 12deg;
  }

  .s1920\:last\:-skew-x-12:last-child{
    --transform-skew-x: -12deg;
  }

  .s1920\:last\:-skew-x-6:last-child{
    --transform-skew-x: -6deg;
  }

  .s1920\:last\:-skew-x-3:last-child{
    --transform-skew-x: -3deg;
  }

  .s1920\:last\:skew-y-0:last-child{
    --transform-skew-y: 0;
  }

  .s1920\:last\:skew-y-3:last-child{
    --transform-skew-y: 3deg;
  }

  .s1920\:last\:skew-y-6:last-child{
    --transform-skew-y: 6deg;
  }

  .s1920\:last\:skew-y-12:last-child{
    --transform-skew-y: 12deg;
  }

  .s1920\:last\:-skew-y-12:last-child{
    --transform-skew-y: -12deg;
  }

  .s1920\:last\:-skew-y-6:last-child{
    --transform-skew-y: -6deg;
  }

  .s1920\:last\:-skew-y-3:last-child{
    --transform-skew-y: -3deg;
  }

  .s1920\:transition-none{
    transition-property: none;
  }

  .s1920\:transition-all{
    transition-property: all;
  }

  .s1920\:transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1920\:transition-colors{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1920\:transition-opacity{
    transition-property: opacity;
  }

  .s1920\:transition-shadow{
    transition-property: box-shadow;
  }

  .s1920\:transition-transform{
    transition-property: transform;
  }

  .s1920\:hover\:transition-none:hover{
    transition-property: none;
  }

  .s1920\:hover\:transition-all:hover{
    transition-property: all;
  }

  .s1920\:hover\:transition:hover{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1920\:hover\:transition-colors:hover{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1920\:hover\:transition-opacity:hover{
    transition-property: opacity;
  }

  .s1920\:hover\:transition-shadow:hover{
    transition-property: box-shadow;
  }

  .s1920\:hover\:transition-transform:hover{
    transition-property: transform;
  }

  .s1920\:focus\:transition-none:focus{
    transition-property: none;
  }

  .s1920\:focus\:transition-all:focus{
    transition-property: all;
  }

  .s1920\:focus\:transition:focus{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1920\:focus\:transition-colors:focus{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1920\:focus\:transition-opacity:focus{
    transition-property: opacity;
  }

  .s1920\:focus\:transition-shadow:focus{
    transition-property: box-shadow;
  }

  .s1920\:focus\:transition-transform:focus{
    transition-property: transform;
  }

  .s1920\:active\:transition-none:active{
    transition-property: none;
  }

  .s1920\:active\:transition-all:active{
    transition-property: all;
  }

  .s1920\:active\:transition:active{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1920\:active\:transition-colors:active{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1920\:active\:transition-opacity:active{
    transition-property: opacity;
  }

  .s1920\:active\:transition-shadow:active{
    transition-property: box-shadow;
  }

  .s1920\:active\:transition-transform:active{
    transition-property: transform;
  }

  .s1920\:first\:transition-none:first-child{
    transition-property: none;
  }

  .s1920\:first\:transition-all:first-child{
    transition-property: all;
  }

  .s1920\:first\:transition:first-child{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1920\:first\:transition-colors:first-child{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1920\:first\:transition-opacity:first-child{
    transition-property: opacity;
  }

  .s1920\:first\:transition-shadow:first-child{
    transition-property: box-shadow;
  }

  .s1920\:first\:transition-transform:first-child{
    transition-property: transform;
  }

  .s1920\:last\:transition-none:last-child{
    transition-property: none;
  }

  .s1920\:last\:transition-all:last-child{
    transition-property: all;
  }

  .s1920\:last\:transition:last-child{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  }

  .s1920\:last\:transition-colors:last-child{
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .s1920\:last\:transition-opacity:last-child{
    transition-property: opacity;
  }

  .s1920\:last\:transition-shadow:last-child{
    transition-property: box-shadow;
  }

  .s1920\:last\:transition-transform:last-child{
    transition-property: transform;
  }

  .s1920\:ease-linear{
    transition-timing-function: linear;
  }

  .s1920\:ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1920\:ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1920\:ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1920\:hover\:ease-linear:hover{
    transition-timing-function: linear;
  }

  .s1920\:hover\:ease-in:hover{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1920\:hover\:ease-out:hover{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1920\:hover\:ease-in-out:hover{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1920\:focus\:ease-linear:focus{
    transition-timing-function: linear;
  }

  .s1920\:focus\:ease-in:focus{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1920\:focus\:ease-out:focus{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1920\:focus\:ease-in-out:focus{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1920\:active\:ease-linear:active{
    transition-timing-function: linear;
  }

  .s1920\:active\:ease-in:active{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1920\:active\:ease-out:active{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1920\:active\:ease-in-out:active{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1920\:first\:ease-linear:first-child{
    transition-timing-function: linear;
  }

  .s1920\:first\:ease-in:first-child{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1920\:first\:ease-out:first-child{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1920\:first\:ease-in-out:first-child{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1920\:last\:ease-linear:last-child{
    transition-timing-function: linear;
  }

  .s1920\:last\:ease-in:last-child{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .s1920\:last\:ease-out:last-child{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .s1920\:last\:ease-in-out:last-child{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .s1920\:duration-75{
    transition-duration: 75ms;
  }

  .s1920\:duration-100{
    transition-duration: 100ms;
  }

  .s1920\:duration-150{
    transition-duration: 150ms;
  }

  .s1920\:duration-200{
    transition-duration: 200ms;
  }

  .s1920\:duration-300{
    transition-duration: 300ms;
  }

  .s1920\:duration-500{
    transition-duration: 500ms;
  }

  .s1920\:duration-700{
    transition-duration: 700ms;
  }

  .s1920\:duration-1000{
    transition-duration: 1000ms;
  }

  .s1920\:hover\:duration-75:hover{
    transition-duration: 75ms;
  }

  .s1920\:hover\:duration-100:hover{
    transition-duration: 100ms;
  }

  .s1920\:hover\:duration-150:hover{
    transition-duration: 150ms;
  }

  .s1920\:hover\:duration-200:hover{
    transition-duration: 200ms;
  }

  .s1920\:hover\:duration-300:hover{
    transition-duration: 300ms;
  }

  .s1920\:hover\:duration-500:hover{
    transition-duration: 500ms;
  }

  .s1920\:hover\:duration-700:hover{
    transition-duration: 700ms;
  }

  .s1920\:hover\:duration-1000:hover{
    transition-duration: 1000ms;
  }

  .s1920\:focus\:duration-75:focus{
    transition-duration: 75ms;
  }

  .s1920\:focus\:duration-100:focus{
    transition-duration: 100ms;
  }

  .s1920\:focus\:duration-150:focus{
    transition-duration: 150ms;
  }

  .s1920\:focus\:duration-200:focus{
    transition-duration: 200ms;
  }

  .s1920\:focus\:duration-300:focus{
    transition-duration: 300ms;
  }

  .s1920\:focus\:duration-500:focus{
    transition-duration: 500ms;
  }

  .s1920\:focus\:duration-700:focus{
    transition-duration: 700ms;
  }

  .s1920\:focus\:duration-1000:focus{
    transition-duration: 1000ms;
  }

  .s1920\:active\:duration-75:active{
    transition-duration: 75ms;
  }

  .s1920\:active\:duration-100:active{
    transition-duration: 100ms;
  }

  .s1920\:active\:duration-150:active{
    transition-duration: 150ms;
  }

  .s1920\:active\:duration-200:active{
    transition-duration: 200ms;
  }

  .s1920\:active\:duration-300:active{
    transition-duration: 300ms;
  }

  .s1920\:active\:duration-500:active{
    transition-duration: 500ms;
  }

  .s1920\:active\:duration-700:active{
    transition-duration: 700ms;
  }

  .s1920\:active\:duration-1000:active{
    transition-duration: 1000ms;
  }

  .s1920\:first\:duration-75:first-child{
    transition-duration: 75ms;
  }

  .s1920\:first\:duration-100:first-child{
    transition-duration: 100ms;
  }

  .s1920\:first\:duration-150:first-child{
    transition-duration: 150ms;
  }

  .s1920\:first\:duration-200:first-child{
    transition-duration: 200ms;
  }

  .s1920\:first\:duration-300:first-child{
    transition-duration: 300ms;
  }

  .s1920\:first\:duration-500:first-child{
    transition-duration: 500ms;
  }

  .s1920\:first\:duration-700:first-child{
    transition-duration: 700ms;
  }

  .s1920\:first\:duration-1000:first-child{
    transition-duration: 1000ms;
  }

  .s1920\:last\:duration-75:last-child{
    transition-duration: 75ms;
  }

  .s1920\:last\:duration-100:last-child{
    transition-duration: 100ms;
  }

  .s1920\:last\:duration-150:last-child{
    transition-duration: 150ms;
  }

  .s1920\:last\:duration-200:last-child{
    transition-duration: 200ms;
  }

  .s1920\:last\:duration-300:last-child{
    transition-duration: 300ms;
  }

  .s1920\:last\:duration-500:last-child{
    transition-duration: 500ms;
  }

  .s1920\:last\:duration-700:last-child{
    transition-duration: 700ms;
  }

  .s1920\:last\:duration-1000:last-child{
    transition-duration: 1000ms;
  }

  .s1920\:delay-75{
    transition-delay: 75ms;
  }

  .s1920\:delay-100{
    transition-delay: 100ms;
  }

  .s1920\:delay-150{
    transition-delay: 150ms;
  }

  .s1920\:delay-200{
    transition-delay: 200ms;
  }

  .s1920\:delay-300{
    transition-delay: 300ms;
  }

  .s1920\:delay-500{
    transition-delay: 500ms;
  }

  .s1920\:delay-700{
    transition-delay: 700ms;
  }

  .s1920\:delay-1000{
    transition-delay: 1000ms;
  }

  .s1920\:hover\:delay-75:hover{
    transition-delay: 75ms;
  }

  .s1920\:hover\:delay-100:hover{
    transition-delay: 100ms;
  }

  .s1920\:hover\:delay-150:hover{
    transition-delay: 150ms;
  }

  .s1920\:hover\:delay-200:hover{
    transition-delay: 200ms;
  }

  .s1920\:hover\:delay-300:hover{
    transition-delay: 300ms;
  }

  .s1920\:hover\:delay-500:hover{
    transition-delay: 500ms;
  }

  .s1920\:hover\:delay-700:hover{
    transition-delay: 700ms;
  }

  .s1920\:hover\:delay-1000:hover{
    transition-delay: 1000ms;
  }

  .s1920\:focus\:delay-75:focus{
    transition-delay: 75ms;
  }

  .s1920\:focus\:delay-100:focus{
    transition-delay: 100ms;
  }

  .s1920\:focus\:delay-150:focus{
    transition-delay: 150ms;
  }

  .s1920\:focus\:delay-200:focus{
    transition-delay: 200ms;
  }

  .s1920\:focus\:delay-300:focus{
    transition-delay: 300ms;
  }

  .s1920\:focus\:delay-500:focus{
    transition-delay: 500ms;
  }

  .s1920\:focus\:delay-700:focus{
    transition-delay: 700ms;
  }

  .s1920\:focus\:delay-1000:focus{
    transition-delay: 1000ms;
  }

  .s1920\:active\:delay-75:active{
    transition-delay: 75ms;
  }

  .s1920\:active\:delay-100:active{
    transition-delay: 100ms;
  }

  .s1920\:active\:delay-150:active{
    transition-delay: 150ms;
  }

  .s1920\:active\:delay-200:active{
    transition-delay: 200ms;
  }

  .s1920\:active\:delay-300:active{
    transition-delay: 300ms;
  }

  .s1920\:active\:delay-500:active{
    transition-delay: 500ms;
  }

  .s1920\:active\:delay-700:active{
    transition-delay: 700ms;
  }

  .s1920\:active\:delay-1000:active{
    transition-delay: 1000ms;
  }

  .s1920\:first\:delay-75:first-child{
    transition-delay: 75ms;
  }

  .s1920\:first\:delay-100:first-child{
    transition-delay: 100ms;
  }

  .s1920\:first\:delay-150:first-child{
    transition-delay: 150ms;
  }

  .s1920\:first\:delay-200:first-child{
    transition-delay: 200ms;
  }

  .s1920\:first\:delay-300:first-child{
    transition-delay: 300ms;
  }

  .s1920\:first\:delay-500:first-child{
    transition-delay: 500ms;
  }

  .s1920\:first\:delay-700:first-child{
    transition-delay: 700ms;
  }

  .s1920\:first\:delay-1000:first-child{
    transition-delay: 1000ms;
  }

  .s1920\:last\:delay-75:last-child{
    transition-delay: 75ms;
  }

  .s1920\:last\:delay-100:last-child{
    transition-delay: 100ms;
  }

  .s1920\:last\:delay-150:last-child{
    transition-delay: 150ms;
  }

  .s1920\:last\:delay-200:last-child{
    transition-delay: 200ms;
  }

  .s1920\:last\:delay-300:last-child{
    transition-delay: 300ms;
  }

  .s1920\:last\:delay-500:last-child{
    transition-delay: 500ms;
  }

  .s1920\:last\:delay-700:last-child{
    transition-delay: 700ms;
  }

  .s1920\:last\:delay-1000:last-child{
    transition-delay: 1000ms;
  }

  .s1920\:shadow-border-2-black{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1920\:shadow-border-4-black{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1920\:shadow-border-black{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1920\:shadow-border-2-transparent{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1920\:shadow-border-4-transparent{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1920\:shadow-border-transparent{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1920\:shadow-border-2-error{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:shadow-border-4-error{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:shadow-border-error{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:shadow-border-2-success{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:shadow-border-4-success{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:shadow-border-success{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:shadow-border-2-white-10{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1920\:shadow-border-2-white-20{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1920\:shadow-border-2-white{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1920\:shadow-border-4-white-10{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1920\:shadow-border-4-white-20{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1920\:shadow-border-4-white{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1920\:shadow-border-white-10{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1920\:shadow-border-white-20{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1920\:shadow-border-white{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1920\:shadow-border-2-cheeto{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1920\:shadow-border-2-cheeto-very-light{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1920\:shadow-border-2-cheeto-light{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1920\:shadow-border-2-cheeto-dark{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1920\:shadow-border-2-cheeto-hocus{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1920\:shadow-border-2-cheeto-active{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1920\:shadow-border-2-cheeto-ml-plus{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1920\:shadow-border-2-cheeto-banner{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1920\:shadow-border-4-cheeto{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1920\:shadow-border-4-cheeto-very-light{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1920\:shadow-border-4-cheeto-light{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1920\:shadow-border-4-cheeto-dark{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1920\:shadow-border-4-cheeto-hocus{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1920\:shadow-border-4-cheeto-active{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1920\:shadow-border-4-cheeto-ml-plus{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1920\:shadow-border-4-cheeto-banner{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1920\:shadow-border-cheeto{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1920\:shadow-border-cheeto-very-light{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1920\:shadow-border-cheeto-light{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1920\:shadow-border-cheeto-dark{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1920\:shadow-border-cheeto-hocus{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1920\:shadow-border-cheeto-active{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1920\:shadow-border-cheeto-ml-plus{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1920\:shadow-border-cheeto-banner{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1920\:shadow-border-2-gracy-1{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1920\:shadow-border-2-gracy-10{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1920\:shadow-border-2-gracy-20{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1920\:shadow-border-2-gracy-30{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1920\:shadow-border-2-gracy-40{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1920\:shadow-border-2-gracy-50{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1920\:shadow-border-2-gracy-60{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1920\:shadow-border-2-gracy-70{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1920\:shadow-border-2-gracy-80{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1920\:shadow-border-2-gracy-90{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1920\:shadow-border-2-gracy-100{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1920\:shadow-border-2-gracy{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1920\:shadow-border-2-gracy-overlay-90{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1920\:shadow-border-4-gracy-1{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1920\:shadow-border-4-gracy-10{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1920\:shadow-border-4-gracy-20{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1920\:shadow-border-4-gracy-30{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1920\:shadow-border-4-gracy-40{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1920\:shadow-border-4-gracy-50{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1920\:shadow-border-4-gracy-60{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1920\:shadow-border-4-gracy-70{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1920\:shadow-border-4-gracy-80{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1920\:shadow-border-4-gracy-90{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1920\:shadow-border-4-gracy-100{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1920\:shadow-border-4-gracy{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1920\:shadow-border-4-gracy-overlay-90{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1920\:shadow-border-gracy-1{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1920\:shadow-border-gracy-10{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1920\:shadow-border-gracy-20{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1920\:shadow-border-gracy-30{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1920\:shadow-border-gracy-40{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1920\:shadow-border-gracy-50{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1920\:shadow-border-gracy-60{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1920\:shadow-border-gracy-70{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1920\:shadow-border-gracy-80{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1920\:shadow-border-gracy-90{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1920\:shadow-border-gracy-100{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1920\:shadow-border-gracy{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1920\:shadow-border-gracy-overlay-90{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1920\:shadow-border-2-login-0{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1920\:shadow-border-2-login-1{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:shadow-border-2-login-2{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1920\:shadow-border-2-login-3{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:shadow-border-2-login-4{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:shadow-border-2-login-5{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1920\:shadow-border-2-login-6{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:shadow-border-2-login-bold{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-strip{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-stripColors{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-trap{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1920\:shadow-border-2-login-zalgo{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1920\:shadow-border-2-login-zebra{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-rainbow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-random{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-america{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-reset{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-dim{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-italic{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-underline{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-inverse{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-hidden{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-strikethrough{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-black{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-red{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-green{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-yellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-blue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-magenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-cyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-white{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-gray{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-grey{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-brightRed{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-brightGreen{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-brightYellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-brightBlue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-brightMagenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-brightCyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-brightWhite{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgBlack{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgRed{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgGreen{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgYellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgBlue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgMagenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgCyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgWhite{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgGray{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgGrey{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgBrightRed{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgBrightGreen{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgBrightYellow{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgBrightBlue{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgBrightMagenta{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgBrightCyan{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-bgBrightWhite{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-blackBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-redBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-greenBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-yellowBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-blueBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-magentaBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-cyanBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-2-login-whiteBG{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-0{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1920\:shadow-border-4-login-1{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:shadow-border-4-login-2{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1920\:shadow-border-4-login-3{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:shadow-border-4-login-4{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:shadow-border-4-login-5{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1920\:shadow-border-4-login-6{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:shadow-border-4-login-bold{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-strip{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-stripColors{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-trap{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1920\:shadow-border-4-login-zalgo{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1920\:shadow-border-4-login-zebra{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-rainbow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-random{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-america{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-reset{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-dim{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-italic{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-underline{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-inverse{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-hidden{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-strikethrough{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-black{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-red{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-green{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-yellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-blue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-magenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-cyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-white{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-gray{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-grey{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-brightRed{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-brightGreen{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-brightYellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-brightBlue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-brightMagenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-brightCyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-brightWhite{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgBlack{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgRed{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgGreen{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgYellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgBlue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgMagenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgCyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgWhite{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgGray{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgGrey{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgBrightRed{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgBrightGreen{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgBrightYellow{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgBrightBlue{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgBrightMagenta{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgBrightCyan{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-bgBrightWhite{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-blackBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-redBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-greenBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-yellowBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-blueBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-magentaBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-cyanBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-4-login-whiteBG{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:shadow-border-login-0{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1920\:shadow-border-login-1{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:shadow-border-login-2{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1920\:shadow-border-login-3{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:shadow-border-login-4{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:shadow-border-login-5{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1920\:shadow-border-login-6{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:shadow-border-login-bold{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-strip{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-stripColors{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-trap{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1920\:shadow-border-login-zalgo{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1920\:shadow-border-login-zebra{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-rainbow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-random{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-america{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-reset{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-dim{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-italic{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-underline{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-inverse{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-hidden{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-strikethrough{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-black{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-red{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-green{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-yellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-blue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-magenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-cyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-white{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-gray{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-grey{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-brightRed{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-brightGreen{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-brightYellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-brightBlue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-brightMagenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-brightCyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-brightWhite{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgBlack{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgRed{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgGreen{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgYellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgBlue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgMagenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgCyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgWhite{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgGray{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgGrey{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgBrightRed{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgBrightGreen{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgBrightYellow{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgBrightBlue{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgBrightMagenta{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgBrightCyan{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-bgBrightWhite{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-blackBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-redBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-greenBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-yellowBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-blueBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-magentaBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-cyanBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-login-whiteBG{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:shadow-border-2-olive-light{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1920\:shadow-border-2-olive-drab{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:shadow-border-2-olive-dark{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1920\:shadow-border-4-olive-light{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1920\:shadow-border-4-olive-drab{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:shadow-border-4-olive-dark{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1920\:shadow-border-olive-light{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1920\:shadow-border-olive-drab{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:shadow-border-olive-dark{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1920\:shadow-border-2-daisy-light{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1920\:shadow-border-4-daisy-light{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1920\:shadow-border-daisy-light{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1920\:shadow-border-2-feedback-gumby{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1920\:shadow-border-2-feedback-daisy{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1920\:shadow-border-2-feedback-pokey{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1920\:shadow-border-2-feedback-aster{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1920\:shadow-border-2-feedback-aster-dark{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1920\:shadow-border-2-feedback-roxo{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1920\:shadow-border-2-feedback-error{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:shadow-border-2-feedback-success{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:shadow-border-4-feedback-gumby{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1920\:shadow-border-4-feedback-daisy{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1920\:shadow-border-4-feedback-pokey{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1920\:shadow-border-4-feedback-aster{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1920\:shadow-border-4-feedback-aster-dark{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1920\:shadow-border-4-feedback-roxo{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1920\:shadow-border-4-feedback-error{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:shadow-border-4-feedback-success{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:shadow-border-feedback-gumby{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1920\:shadow-border-feedback-daisy{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1920\:shadow-border-feedback-pokey{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1920\:shadow-border-feedback-aster{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1920\:shadow-border-feedback-aster-dark{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1920\:shadow-border-feedback-roxo{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1920\:shadow-border-feedback-error{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:shadow-border-feedback-success{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:shadow-border-2-functional-aoki{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1920\:shadow-border-2-functional-aoki-dark{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1920\:shadow-border-2-functional-aoki-hocus{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1920\:shadow-border-2-functional-aoki-active{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1920\:shadow-border-2-functional-aoki-light{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1920\:shadow-border-2-functional-kermit{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1920\:shadow-border-4-functional-aoki{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1920\:shadow-border-4-functional-aoki-dark{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1920\:shadow-border-4-functional-aoki-hocus{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1920\:shadow-border-4-functional-aoki-active{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1920\:shadow-border-4-functional-aoki-light{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1920\:shadow-border-4-functional-kermit{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1920\:shadow-border-functional-aoki{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1920\:shadow-border-functional-aoki-dark{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1920\:shadow-border-functional-aoki-hocus{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1920\:shadow-border-functional-aoki-active{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1920\:shadow-border-functional-aoki-light{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1920\:shadow-border-functional-kermit{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1920\:shadow-border-2-mixlabPlus-light{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1920\:shadow-border-4-mixlabPlus-light{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1920\:shadow-border-mixlabPlus-light{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1920\:shadow-border-2-primary-orange-light{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1920\:shadow-border-4-primary-orange-light{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1920\:shadow-border-primary-orange-light{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1920\:shadow-border-2-off-white{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1920\:shadow-border-4-off-white{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1920\:shadow-border-off-white{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .s1920\:hover\:shadow-border-2-black:hover{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1920\:hover\:shadow-border-4-black:hover{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1920\:hover\:shadow-border-black:hover{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1920\:hover\:shadow-border-2-transparent:hover{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1920\:hover\:shadow-border-4-transparent:hover{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1920\:hover\:shadow-border-transparent:hover{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1920\:hover\:shadow-border-2-error:hover{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:hover\:shadow-border-4-error:hover{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:hover\:shadow-border-error:hover{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:hover\:shadow-border-2-success:hover{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:hover\:shadow-border-4-success:hover{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:hover\:shadow-border-success:hover{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:hover\:shadow-border-2-white-10:hover{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1920\:hover\:shadow-border-2-white-20:hover{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1920\:hover\:shadow-border-2-white:hover{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1920\:hover\:shadow-border-4-white-10:hover{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1920\:hover\:shadow-border-4-white-20:hover{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1920\:hover\:shadow-border-4-white:hover{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1920\:hover\:shadow-border-white-10:hover{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1920\:hover\:shadow-border-white-20:hover{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1920\:hover\:shadow-border-white:hover{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1920\:hover\:shadow-border-2-cheeto:hover{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1920\:hover\:shadow-border-2-cheeto-very-light:hover{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1920\:hover\:shadow-border-2-cheeto-light:hover{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1920\:hover\:shadow-border-2-cheeto-dark:hover{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1920\:hover\:shadow-border-2-cheeto-hocus:hover{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1920\:hover\:shadow-border-2-cheeto-active:hover{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1920\:hover\:shadow-border-2-cheeto-ml-plus:hover{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1920\:hover\:shadow-border-2-cheeto-banner:hover{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1920\:hover\:shadow-border-4-cheeto:hover{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1920\:hover\:shadow-border-4-cheeto-very-light:hover{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1920\:hover\:shadow-border-4-cheeto-light:hover{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1920\:hover\:shadow-border-4-cheeto-dark:hover{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1920\:hover\:shadow-border-4-cheeto-hocus:hover{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1920\:hover\:shadow-border-4-cheeto-active:hover{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1920\:hover\:shadow-border-4-cheeto-ml-plus:hover{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1920\:hover\:shadow-border-4-cheeto-banner:hover{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1920\:hover\:shadow-border-cheeto:hover{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1920\:hover\:shadow-border-cheeto-very-light:hover{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1920\:hover\:shadow-border-cheeto-light:hover{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1920\:hover\:shadow-border-cheeto-dark:hover{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1920\:hover\:shadow-border-cheeto-hocus:hover{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1920\:hover\:shadow-border-cheeto-active:hover{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1920\:hover\:shadow-border-cheeto-ml-plus:hover{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1920\:hover\:shadow-border-cheeto-banner:hover{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1920\:hover\:shadow-border-2-gracy-1:hover{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1920\:hover\:shadow-border-2-gracy-10:hover{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1920\:hover\:shadow-border-2-gracy-20:hover{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1920\:hover\:shadow-border-2-gracy-30:hover{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1920\:hover\:shadow-border-2-gracy-40:hover{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1920\:hover\:shadow-border-2-gracy-50:hover{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1920\:hover\:shadow-border-2-gracy-60:hover{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1920\:hover\:shadow-border-2-gracy-70:hover{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1920\:hover\:shadow-border-2-gracy-80:hover{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1920\:hover\:shadow-border-2-gracy-90:hover{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1920\:hover\:shadow-border-2-gracy-100:hover{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1920\:hover\:shadow-border-2-gracy:hover{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1920\:hover\:shadow-border-2-gracy-overlay-90:hover{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1920\:hover\:shadow-border-4-gracy-1:hover{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1920\:hover\:shadow-border-4-gracy-10:hover{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1920\:hover\:shadow-border-4-gracy-20:hover{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1920\:hover\:shadow-border-4-gracy-30:hover{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1920\:hover\:shadow-border-4-gracy-40:hover{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1920\:hover\:shadow-border-4-gracy-50:hover{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1920\:hover\:shadow-border-4-gracy-60:hover{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1920\:hover\:shadow-border-4-gracy-70:hover{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1920\:hover\:shadow-border-4-gracy-80:hover{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1920\:hover\:shadow-border-4-gracy-90:hover{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1920\:hover\:shadow-border-4-gracy-100:hover{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1920\:hover\:shadow-border-4-gracy:hover{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1920\:hover\:shadow-border-4-gracy-overlay-90:hover{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1920\:hover\:shadow-border-gracy-1:hover{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1920\:hover\:shadow-border-gracy-10:hover{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1920\:hover\:shadow-border-gracy-20:hover{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1920\:hover\:shadow-border-gracy-30:hover{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1920\:hover\:shadow-border-gracy-40:hover{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1920\:hover\:shadow-border-gracy-50:hover{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1920\:hover\:shadow-border-gracy-60:hover{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1920\:hover\:shadow-border-gracy-70:hover{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1920\:hover\:shadow-border-gracy-80:hover{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1920\:hover\:shadow-border-gracy-90:hover{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1920\:hover\:shadow-border-gracy-100:hover{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1920\:hover\:shadow-border-gracy:hover{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1920\:hover\:shadow-border-gracy-overlay-90:hover{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1920\:hover\:shadow-border-2-login-0:hover{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1920\:hover\:shadow-border-2-login-1:hover{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:hover\:shadow-border-2-login-2:hover{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1920\:hover\:shadow-border-2-login-3:hover{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:hover\:shadow-border-2-login-4:hover{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:hover\:shadow-border-2-login-5:hover{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1920\:hover\:shadow-border-2-login-6:hover{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:hover\:shadow-border-2-login-bold:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-strip:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-stripColors:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-trap:hover{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1920\:hover\:shadow-border-2-login-zalgo:hover{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1920\:hover\:shadow-border-2-login-zebra:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-rainbow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-random:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-america:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-reset:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-dim:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-italic:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-underline:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-inverse:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-hidden:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-strikethrough:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-black:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-red:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-green:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-yellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-blue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-magenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-cyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-white:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-gray:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-grey:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-brightRed:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-brightGreen:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-brightYellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-brightBlue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-brightMagenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-brightCyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-brightWhite:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgBlack:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgRed:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgGreen:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgYellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgBlue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgMagenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgCyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgWhite:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgGray:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgGrey:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgBrightRed:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgBrightGreen:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgBrightYellow:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgBrightBlue:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgBrightMagenta:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgBrightCyan:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-bgBrightWhite:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-blackBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-redBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-greenBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-yellowBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-blueBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-magentaBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-cyanBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-login-whiteBG:hover{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-0:hover{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1920\:hover\:shadow-border-4-login-1:hover{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:hover\:shadow-border-4-login-2:hover{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1920\:hover\:shadow-border-4-login-3:hover{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:hover\:shadow-border-4-login-4:hover{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:hover\:shadow-border-4-login-5:hover{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1920\:hover\:shadow-border-4-login-6:hover{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:hover\:shadow-border-4-login-bold:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-strip:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-stripColors:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-trap:hover{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1920\:hover\:shadow-border-4-login-zalgo:hover{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1920\:hover\:shadow-border-4-login-zebra:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-rainbow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-random:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-america:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-reset:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-dim:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-italic:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-underline:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-inverse:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-hidden:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-strikethrough:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-black:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-red:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-green:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-yellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-blue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-magenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-cyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-white:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-gray:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-grey:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-brightRed:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-brightGreen:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-brightYellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-brightBlue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-brightMagenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-brightCyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-brightWhite:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgBlack:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgRed:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgGreen:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgYellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgBlue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgMagenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgCyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgWhite:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgGray:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgGrey:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgBrightRed:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgBrightGreen:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgBrightYellow:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgBrightBlue:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgBrightMagenta:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgBrightCyan:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-bgBrightWhite:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-blackBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-redBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-greenBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-yellowBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-blueBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-magentaBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-cyanBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-4-login-whiteBG:hover{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-0:hover{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1920\:hover\:shadow-border-login-1:hover{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:hover\:shadow-border-login-2:hover{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1920\:hover\:shadow-border-login-3:hover{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:hover\:shadow-border-login-4:hover{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:hover\:shadow-border-login-5:hover{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1920\:hover\:shadow-border-login-6:hover{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:hover\:shadow-border-login-bold:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-strip:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-stripColors:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-trap:hover{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1920\:hover\:shadow-border-login-zalgo:hover{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1920\:hover\:shadow-border-login-zebra:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-rainbow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-random:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-america:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-reset:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-dim:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-italic:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-underline:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-inverse:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-hidden:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-strikethrough:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-black:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-red:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-green:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-yellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-blue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-magenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-cyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-white:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-gray:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-grey:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-brightRed:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-brightGreen:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-brightYellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-brightBlue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-brightMagenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-brightCyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-brightWhite:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgBlack:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgRed:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgGreen:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgYellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgBlue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgMagenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgCyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgWhite:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgGray:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgGrey:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgBrightRed:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgBrightGreen:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgBrightYellow:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgBrightBlue:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgBrightMagenta:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgBrightCyan:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-bgBrightWhite:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-blackBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-redBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-greenBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-yellowBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-blueBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-magentaBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-cyanBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-login-whiteBG:hover{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:hover\:shadow-border-2-olive-light:hover{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1920\:hover\:shadow-border-2-olive-drab:hover{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:hover\:shadow-border-2-olive-dark:hover{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1920\:hover\:shadow-border-4-olive-light:hover{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1920\:hover\:shadow-border-4-olive-drab:hover{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:hover\:shadow-border-4-olive-dark:hover{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1920\:hover\:shadow-border-olive-light:hover{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1920\:hover\:shadow-border-olive-drab:hover{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:hover\:shadow-border-olive-dark:hover{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1920\:hover\:shadow-border-2-daisy-light:hover{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1920\:hover\:shadow-border-4-daisy-light:hover{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1920\:hover\:shadow-border-daisy-light:hover{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1920\:hover\:shadow-border-2-feedback-gumby:hover{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1920\:hover\:shadow-border-2-feedback-daisy:hover{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1920\:hover\:shadow-border-2-feedback-pokey:hover{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1920\:hover\:shadow-border-2-feedback-aster:hover{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1920\:hover\:shadow-border-2-feedback-aster-dark:hover{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1920\:hover\:shadow-border-2-feedback-roxo:hover{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1920\:hover\:shadow-border-2-feedback-error:hover{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:hover\:shadow-border-2-feedback-success:hover{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:hover\:shadow-border-4-feedback-gumby:hover{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1920\:hover\:shadow-border-4-feedback-daisy:hover{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1920\:hover\:shadow-border-4-feedback-pokey:hover{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1920\:hover\:shadow-border-4-feedback-aster:hover{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1920\:hover\:shadow-border-4-feedback-aster-dark:hover{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1920\:hover\:shadow-border-4-feedback-roxo:hover{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1920\:hover\:shadow-border-4-feedback-error:hover{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:hover\:shadow-border-4-feedback-success:hover{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:hover\:shadow-border-feedback-gumby:hover{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1920\:hover\:shadow-border-feedback-daisy:hover{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1920\:hover\:shadow-border-feedback-pokey:hover{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1920\:hover\:shadow-border-feedback-aster:hover{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1920\:hover\:shadow-border-feedback-aster-dark:hover{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1920\:hover\:shadow-border-feedback-roxo:hover{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1920\:hover\:shadow-border-feedback-error:hover{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:hover\:shadow-border-feedback-success:hover{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:hover\:shadow-border-2-functional-aoki:hover{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1920\:hover\:shadow-border-2-functional-aoki-dark:hover{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1920\:hover\:shadow-border-2-functional-aoki-hocus:hover{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1920\:hover\:shadow-border-2-functional-aoki-active:hover{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1920\:hover\:shadow-border-2-functional-aoki-light:hover{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1920\:hover\:shadow-border-2-functional-kermit:hover{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1920\:hover\:shadow-border-4-functional-aoki:hover{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1920\:hover\:shadow-border-4-functional-aoki-dark:hover{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1920\:hover\:shadow-border-4-functional-aoki-hocus:hover{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1920\:hover\:shadow-border-4-functional-aoki-active:hover{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1920\:hover\:shadow-border-4-functional-aoki-light:hover{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1920\:hover\:shadow-border-4-functional-kermit:hover{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1920\:hover\:shadow-border-functional-aoki:hover{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1920\:hover\:shadow-border-functional-aoki-dark:hover{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1920\:hover\:shadow-border-functional-aoki-hocus:hover{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1920\:hover\:shadow-border-functional-aoki-active:hover{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1920\:hover\:shadow-border-functional-aoki-light:hover{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1920\:hover\:shadow-border-functional-kermit:hover{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1920\:hover\:shadow-border-2-mixlabPlus-light:hover{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1920\:hover\:shadow-border-4-mixlabPlus-light:hover{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1920\:hover\:shadow-border-mixlabPlus-light:hover{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1920\:hover\:shadow-border-2-primary-orange-light:hover{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1920\:hover\:shadow-border-4-primary-orange-light:hover{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1920\:hover\:shadow-border-primary-orange-light:hover{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1920\:hover\:shadow-border-2-off-white:hover{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1920\:hover\:shadow-border-4-off-white:hover{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1920\:hover\:shadow-border-off-white:hover{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .s1920\:focus\:shadow-border-2-black:focus{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1920\:focus\:shadow-border-4-black:focus{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1920\:focus\:shadow-border-black:focus{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1920\:focus\:shadow-border-2-transparent:focus{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1920\:focus\:shadow-border-4-transparent:focus{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1920\:focus\:shadow-border-transparent:focus{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1920\:focus\:shadow-border-2-error:focus{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:focus\:shadow-border-4-error:focus{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:focus\:shadow-border-error:focus{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:focus\:shadow-border-2-success:focus{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:focus\:shadow-border-4-success:focus{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:focus\:shadow-border-success:focus{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:focus\:shadow-border-2-white-10:focus{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1920\:focus\:shadow-border-2-white-20:focus{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1920\:focus\:shadow-border-2-white:focus{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1920\:focus\:shadow-border-4-white-10:focus{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1920\:focus\:shadow-border-4-white-20:focus{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1920\:focus\:shadow-border-4-white:focus{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1920\:focus\:shadow-border-white-10:focus{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1920\:focus\:shadow-border-white-20:focus{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1920\:focus\:shadow-border-white:focus{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1920\:focus\:shadow-border-2-cheeto:focus{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1920\:focus\:shadow-border-2-cheeto-very-light:focus{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1920\:focus\:shadow-border-2-cheeto-light:focus{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1920\:focus\:shadow-border-2-cheeto-dark:focus{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1920\:focus\:shadow-border-2-cheeto-hocus:focus{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1920\:focus\:shadow-border-2-cheeto-active:focus{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1920\:focus\:shadow-border-2-cheeto-ml-plus:focus{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1920\:focus\:shadow-border-2-cheeto-banner:focus{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1920\:focus\:shadow-border-4-cheeto:focus{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1920\:focus\:shadow-border-4-cheeto-very-light:focus{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1920\:focus\:shadow-border-4-cheeto-light:focus{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1920\:focus\:shadow-border-4-cheeto-dark:focus{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1920\:focus\:shadow-border-4-cheeto-hocus:focus{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1920\:focus\:shadow-border-4-cheeto-active:focus{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1920\:focus\:shadow-border-4-cheeto-ml-plus:focus{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1920\:focus\:shadow-border-4-cheeto-banner:focus{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1920\:focus\:shadow-border-cheeto:focus{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1920\:focus\:shadow-border-cheeto-very-light:focus{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1920\:focus\:shadow-border-cheeto-light:focus{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1920\:focus\:shadow-border-cheeto-dark:focus{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1920\:focus\:shadow-border-cheeto-hocus:focus{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1920\:focus\:shadow-border-cheeto-active:focus{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1920\:focus\:shadow-border-cheeto-ml-plus:focus{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1920\:focus\:shadow-border-cheeto-banner:focus{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1920\:focus\:shadow-border-2-gracy-1:focus{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1920\:focus\:shadow-border-2-gracy-10:focus{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1920\:focus\:shadow-border-2-gracy-20:focus{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1920\:focus\:shadow-border-2-gracy-30:focus{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1920\:focus\:shadow-border-2-gracy-40:focus{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1920\:focus\:shadow-border-2-gracy-50:focus{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1920\:focus\:shadow-border-2-gracy-60:focus{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1920\:focus\:shadow-border-2-gracy-70:focus{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1920\:focus\:shadow-border-2-gracy-80:focus{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1920\:focus\:shadow-border-2-gracy-90:focus{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1920\:focus\:shadow-border-2-gracy-100:focus{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1920\:focus\:shadow-border-2-gracy:focus{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1920\:focus\:shadow-border-2-gracy-overlay-90:focus{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1920\:focus\:shadow-border-4-gracy-1:focus{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1920\:focus\:shadow-border-4-gracy-10:focus{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1920\:focus\:shadow-border-4-gracy-20:focus{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1920\:focus\:shadow-border-4-gracy-30:focus{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1920\:focus\:shadow-border-4-gracy-40:focus{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1920\:focus\:shadow-border-4-gracy-50:focus{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1920\:focus\:shadow-border-4-gracy-60:focus{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1920\:focus\:shadow-border-4-gracy-70:focus{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1920\:focus\:shadow-border-4-gracy-80:focus{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1920\:focus\:shadow-border-4-gracy-90:focus{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1920\:focus\:shadow-border-4-gracy-100:focus{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1920\:focus\:shadow-border-4-gracy:focus{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1920\:focus\:shadow-border-4-gracy-overlay-90:focus{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1920\:focus\:shadow-border-gracy-1:focus{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1920\:focus\:shadow-border-gracy-10:focus{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1920\:focus\:shadow-border-gracy-20:focus{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1920\:focus\:shadow-border-gracy-30:focus{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1920\:focus\:shadow-border-gracy-40:focus{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1920\:focus\:shadow-border-gracy-50:focus{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1920\:focus\:shadow-border-gracy-60:focus{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1920\:focus\:shadow-border-gracy-70:focus{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1920\:focus\:shadow-border-gracy-80:focus{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1920\:focus\:shadow-border-gracy-90:focus{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1920\:focus\:shadow-border-gracy-100:focus{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1920\:focus\:shadow-border-gracy:focus{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1920\:focus\:shadow-border-gracy-overlay-90:focus{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1920\:focus\:shadow-border-2-login-0:focus{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1920\:focus\:shadow-border-2-login-1:focus{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:focus\:shadow-border-2-login-2:focus{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1920\:focus\:shadow-border-2-login-3:focus{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:focus\:shadow-border-2-login-4:focus{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:focus\:shadow-border-2-login-5:focus{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1920\:focus\:shadow-border-2-login-6:focus{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:focus\:shadow-border-2-login-bold:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-strip:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-stripColors:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-trap:focus{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1920\:focus\:shadow-border-2-login-zalgo:focus{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1920\:focus\:shadow-border-2-login-zebra:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-rainbow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-random:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-america:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-reset:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-dim:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-italic:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-underline:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-inverse:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-hidden:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-strikethrough:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-black:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-red:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-green:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-yellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-blue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-magenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-cyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-white:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-gray:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-grey:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-brightRed:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-brightGreen:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-brightYellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-brightBlue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-brightMagenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-brightCyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-brightWhite:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgBlack:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgRed:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgGreen:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgYellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgBlue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgMagenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgCyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgWhite:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgGray:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgGrey:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgBrightRed:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgBrightGreen:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgBrightYellow:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgBrightBlue:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgBrightMagenta:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgBrightCyan:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-bgBrightWhite:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-blackBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-redBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-greenBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-yellowBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-blueBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-magentaBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-cyanBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-login-whiteBG:focus{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-0:focus{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1920\:focus\:shadow-border-4-login-1:focus{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:focus\:shadow-border-4-login-2:focus{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1920\:focus\:shadow-border-4-login-3:focus{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:focus\:shadow-border-4-login-4:focus{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:focus\:shadow-border-4-login-5:focus{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1920\:focus\:shadow-border-4-login-6:focus{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:focus\:shadow-border-4-login-bold:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-strip:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-stripColors:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-trap:focus{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1920\:focus\:shadow-border-4-login-zalgo:focus{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1920\:focus\:shadow-border-4-login-zebra:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-rainbow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-random:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-america:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-reset:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-dim:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-italic:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-underline:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-inverse:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-hidden:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-strikethrough:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-black:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-red:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-green:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-yellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-blue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-magenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-cyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-white:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-gray:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-grey:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-brightRed:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-brightGreen:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-brightYellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-brightBlue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-brightMagenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-brightCyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-brightWhite:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgBlack:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgRed:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgGreen:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgYellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgBlue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgMagenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgCyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgWhite:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgGray:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgGrey:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgBrightRed:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgBrightGreen:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgBrightYellow:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgBrightBlue:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgBrightMagenta:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgBrightCyan:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-bgBrightWhite:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-blackBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-redBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-greenBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-yellowBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-blueBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-magentaBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-cyanBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-4-login-whiteBG:focus{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-0:focus{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1920\:focus\:shadow-border-login-1:focus{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:focus\:shadow-border-login-2:focus{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1920\:focus\:shadow-border-login-3:focus{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:focus\:shadow-border-login-4:focus{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:focus\:shadow-border-login-5:focus{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1920\:focus\:shadow-border-login-6:focus{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:focus\:shadow-border-login-bold:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-strip:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-stripColors:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-trap:focus{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1920\:focus\:shadow-border-login-zalgo:focus{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1920\:focus\:shadow-border-login-zebra:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-rainbow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-random:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-america:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-reset:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-dim:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-italic:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-underline:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-inverse:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-hidden:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-strikethrough:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-black:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-red:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-green:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-yellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-blue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-magenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-cyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-white:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-gray:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-grey:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-brightRed:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-brightGreen:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-brightYellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-brightBlue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-brightMagenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-brightCyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-brightWhite:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgBlack:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgRed:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgGreen:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgYellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgBlue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgMagenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgCyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgWhite:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgGray:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgGrey:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgBrightRed:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgBrightGreen:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgBrightYellow:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgBrightBlue:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgBrightMagenta:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgBrightCyan:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-bgBrightWhite:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-blackBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-redBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-greenBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-yellowBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-blueBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-magentaBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-cyanBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-login-whiteBG:focus{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:focus\:shadow-border-2-olive-light:focus{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1920\:focus\:shadow-border-2-olive-drab:focus{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:focus\:shadow-border-2-olive-dark:focus{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1920\:focus\:shadow-border-4-olive-light:focus{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1920\:focus\:shadow-border-4-olive-drab:focus{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:focus\:shadow-border-4-olive-dark:focus{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1920\:focus\:shadow-border-olive-light:focus{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1920\:focus\:shadow-border-olive-drab:focus{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:focus\:shadow-border-olive-dark:focus{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1920\:focus\:shadow-border-2-daisy-light:focus{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1920\:focus\:shadow-border-4-daisy-light:focus{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1920\:focus\:shadow-border-daisy-light:focus{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1920\:focus\:shadow-border-2-feedback-gumby:focus{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1920\:focus\:shadow-border-2-feedback-daisy:focus{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1920\:focus\:shadow-border-2-feedback-pokey:focus{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1920\:focus\:shadow-border-2-feedback-aster:focus{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1920\:focus\:shadow-border-2-feedback-aster-dark:focus{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1920\:focus\:shadow-border-2-feedback-roxo:focus{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1920\:focus\:shadow-border-2-feedback-error:focus{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:focus\:shadow-border-2-feedback-success:focus{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:focus\:shadow-border-4-feedback-gumby:focus{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1920\:focus\:shadow-border-4-feedback-daisy:focus{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1920\:focus\:shadow-border-4-feedback-pokey:focus{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1920\:focus\:shadow-border-4-feedback-aster:focus{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1920\:focus\:shadow-border-4-feedback-aster-dark:focus{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1920\:focus\:shadow-border-4-feedback-roxo:focus{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1920\:focus\:shadow-border-4-feedback-error:focus{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:focus\:shadow-border-4-feedback-success:focus{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:focus\:shadow-border-feedback-gumby:focus{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1920\:focus\:shadow-border-feedback-daisy:focus{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1920\:focus\:shadow-border-feedback-pokey:focus{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1920\:focus\:shadow-border-feedback-aster:focus{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1920\:focus\:shadow-border-feedback-aster-dark:focus{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1920\:focus\:shadow-border-feedback-roxo:focus{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1920\:focus\:shadow-border-feedback-error:focus{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:focus\:shadow-border-feedback-success:focus{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:focus\:shadow-border-2-functional-aoki:focus{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1920\:focus\:shadow-border-2-functional-aoki-dark:focus{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1920\:focus\:shadow-border-2-functional-aoki-hocus:focus{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1920\:focus\:shadow-border-2-functional-aoki-active:focus{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1920\:focus\:shadow-border-2-functional-aoki-light:focus{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1920\:focus\:shadow-border-2-functional-kermit:focus{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1920\:focus\:shadow-border-4-functional-aoki:focus{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1920\:focus\:shadow-border-4-functional-aoki-dark:focus{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1920\:focus\:shadow-border-4-functional-aoki-hocus:focus{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1920\:focus\:shadow-border-4-functional-aoki-active:focus{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1920\:focus\:shadow-border-4-functional-aoki-light:focus{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1920\:focus\:shadow-border-4-functional-kermit:focus{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1920\:focus\:shadow-border-functional-aoki:focus{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1920\:focus\:shadow-border-functional-aoki-dark:focus{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1920\:focus\:shadow-border-functional-aoki-hocus:focus{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1920\:focus\:shadow-border-functional-aoki-active:focus{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1920\:focus\:shadow-border-functional-aoki-light:focus{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1920\:focus\:shadow-border-functional-kermit:focus{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1920\:focus\:shadow-border-2-mixlabPlus-light:focus{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1920\:focus\:shadow-border-4-mixlabPlus-light:focus{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1920\:focus\:shadow-border-mixlabPlus-light:focus{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1920\:focus\:shadow-border-2-primary-orange-light:focus{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1920\:focus\:shadow-border-4-primary-orange-light:focus{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1920\:focus\:shadow-border-primary-orange-light:focus{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1920\:focus\:shadow-border-2-off-white:focus{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1920\:focus\:shadow-border-4-off-white:focus{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1920\:focus\:shadow-border-off-white:focus{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .s1920\:active\:shadow-border-2-black:active{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1920\:active\:shadow-border-4-black:active{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1920\:active\:shadow-border-black:active{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1920\:active\:shadow-border-2-transparent:active{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1920\:active\:shadow-border-4-transparent:active{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1920\:active\:shadow-border-transparent:active{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1920\:active\:shadow-border-2-error:active{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:active\:shadow-border-4-error:active{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:active\:shadow-border-error:active{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:active\:shadow-border-2-success:active{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:active\:shadow-border-4-success:active{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:active\:shadow-border-success:active{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:active\:shadow-border-2-white-10:active{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1920\:active\:shadow-border-2-white-20:active{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1920\:active\:shadow-border-2-white:active{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1920\:active\:shadow-border-4-white-10:active{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1920\:active\:shadow-border-4-white-20:active{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1920\:active\:shadow-border-4-white:active{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1920\:active\:shadow-border-white-10:active{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1920\:active\:shadow-border-white-20:active{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1920\:active\:shadow-border-white:active{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1920\:active\:shadow-border-2-cheeto:active{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1920\:active\:shadow-border-2-cheeto-very-light:active{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1920\:active\:shadow-border-2-cheeto-light:active{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1920\:active\:shadow-border-2-cheeto-dark:active{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1920\:active\:shadow-border-2-cheeto-hocus:active{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1920\:active\:shadow-border-2-cheeto-active:active{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1920\:active\:shadow-border-2-cheeto-ml-plus:active{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1920\:active\:shadow-border-2-cheeto-banner:active{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1920\:active\:shadow-border-4-cheeto:active{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1920\:active\:shadow-border-4-cheeto-very-light:active{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1920\:active\:shadow-border-4-cheeto-light:active{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1920\:active\:shadow-border-4-cheeto-dark:active{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1920\:active\:shadow-border-4-cheeto-hocus:active{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1920\:active\:shadow-border-4-cheeto-active:active{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1920\:active\:shadow-border-4-cheeto-ml-plus:active{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1920\:active\:shadow-border-4-cheeto-banner:active{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1920\:active\:shadow-border-cheeto:active{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1920\:active\:shadow-border-cheeto-very-light:active{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1920\:active\:shadow-border-cheeto-light:active{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1920\:active\:shadow-border-cheeto-dark:active{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1920\:active\:shadow-border-cheeto-hocus:active{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1920\:active\:shadow-border-cheeto-active:active{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1920\:active\:shadow-border-cheeto-ml-plus:active{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1920\:active\:shadow-border-cheeto-banner:active{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1920\:active\:shadow-border-2-gracy-1:active{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1920\:active\:shadow-border-2-gracy-10:active{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1920\:active\:shadow-border-2-gracy-20:active{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1920\:active\:shadow-border-2-gracy-30:active{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1920\:active\:shadow-border-2-gracy-40:active{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1920\:active\:shadow-border-2-gracy-50:active{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1920\:active\:shadow-border-2-gracy-60:active{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1920\:active\:shadow-border-2-gracy-70:active{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1920\:active\:shadow-border-2-gracy-80:active{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1920\:active\:shadow-border-2-gracy-90:active{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1920\:active\:shadow-border-2-gracy-100:active{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1920\:active\:shadow-border-2-gracy:active{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1920\:active\:shadow-border-2-gracy-overlay-90:active{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1920\:active\:shadow-border-4-gracy-1:active{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1920\:active\:shadow-border-4-gracy-10:active{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1920\:active\:shadow-border-4-gracy-20:active{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1920\:active\:shadow-border-4-gracy-30:active{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1920\:active\:shadow-border-4-gracy-40:active{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1920\:active\:shadow-border-4-gracy-50:active{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1920\:active\:shadow-border-4-gracy-60:active{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1920\:active\:shadow-border-4-gracy-70:active{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1920\:active\:shadow-border-4-gracy-80:active{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1920\:active\:shadow-border-4-gracy-90:active{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1920\:active\:shadow-border-4-gracy-100:active{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1920\:active\:shadow-border-4-gracy:active{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1920\:active\:shadow-border-4-gracy-overlay-90:active{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1920\:active\:shadow-border-gracy-1:active{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1920\:active\:shadow-border-gracy-10:active{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1920\:active\:shadow-border-gracy-20:active{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1920\:active\:shadow-border-gracy-30:active{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1920\:active\:shadow-border-gracy-40:active{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1920\:active\:shadow-border-gracy-50:active{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1920\:active\:shadow-border-gracy-60:active{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1920\:active\:shadow-border-gracy-70:active{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1920\:active\:shadow-border-gracy-80:active{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1920\:active\:shadow-border-gracy-90:active{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1920\:active\:shadow-border-gracy-100:active{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1920\:active\:shadow-border-gracy:active{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1920\:active\:shadow-border-gracy-overlay-90:active{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1920\:active\:shadow-border-2-login-0:active{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1920\:active\:shadow-border-2-login-1:active{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:active\:shadow-border-2-login-2:active{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1920\:active\:shadow-border-2-login-3:active{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:active\:shadow-border-2-login-4:active{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:active\:shadow-border-2-login-5:active{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1920\:active\:shadow-border-2-login-6:active{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:active\:shadow-border-2-login-bold:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-strip:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-stripColors:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-trap:active{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1920\:active\:shadow-border-2-login-zalgo:active{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1920\:active\:shadow-border-2-login-zebra:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-rainbow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-random:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-america:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-reset:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-dim:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-italic:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-underline:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-inverse:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-hidden:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-strikethrough:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-black:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-red:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-green:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-yellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-blue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-magenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-cyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-white:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-gray:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-grey:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-brightRed:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-brightGreen:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-brightYellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-brightBlue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-brightMagenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-brightCyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-brightWhite:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgBlack:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgRed:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgGreen:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgYellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgBlue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgMagenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgCyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgWhite:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgGray:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgGrey:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgBrightRed:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgBrightGreen:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgBrightYellow:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgBrightBlue:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgBrightMagenta:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgBrightCyan:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-bgBrightWhite:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-blackBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-redBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-greenBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-yellowBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-blueBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-magentaBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-cyanBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-login-whiteBG:active{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-0:active{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1920\:active\:shadow-border-4-login-1:active{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:active\:shadow-border-4-login-2:active{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1920\:active\:shadow-border-4-login-3:active{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:active\:shadow-border-4-login-4:active{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:active\:shadow-border-4-login-5:active{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1920\:active\:shadow-border-4-login-6:active{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:active\:shadow-border-4-login-bold:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-strip:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-stripColors:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-trap:active{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1920\:active\:shadow-border-4-login-zalgo:active{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1920\:active\:shadow-border-4-login-zebra:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-rainbow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-random:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-america:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-reset:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-dim:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-italic:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-underline:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-inverse:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-hidden:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-strikethrough:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-black:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-red:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-green:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-yellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-blue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-magenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-cyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-white:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-gray:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-grey:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-brightRed:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-brightGreen:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-brightYellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-brightBlue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-brightMagenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-brightCyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-brightWhite:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgBlack:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgRed:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgGreen:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgYellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgBlue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgMagenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgCyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgWhite:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgGray:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgGrey:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgBrightRed:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgBrightGreen:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgBrightYellow:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgBrightBlue:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgBrightMagenta:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgBrightCyan:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-bgBrightWhite:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-blackBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-redBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-greenBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-yellowBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-blueBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-magentaBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-cyanBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-4-login-whiteBG:active{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-0:active{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1920\:active\:shadow-border-login-1:active{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:active\:shadow-border-login-2:active{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1920\:active\:shadow-border-login-3:active{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:active\:shadow-border-login-4:active{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:active\:shadow-border-login-5:active{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1920\:active\:shadow-border-login-6:active{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:active\:shadow-border-login-bold:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-strip:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-stripColors:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-trap:active{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1920\:active\:shadow-border-login-zalgo:active{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1920\:active\:shadow-border-login-zebra:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-rainbow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-random:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-america:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-reset:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-dim:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-italic:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-underline:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-inverse:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-hidden:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-strikethrough:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-black:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-red:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-green:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-yellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-blue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-magenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-cyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-white:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-gray:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-grey:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-brightRed:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-brightGreen:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-brightYellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-brightBlue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-brightMagenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-brightCyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-brightWhite:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgBlack:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgRed:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgGreen:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgYellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgBlue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgMagenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgCyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgWhite:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgGray:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgGrey:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgBrightRed:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgBrightGreen:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgBrightYellow:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgBrightBlue:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgBrightMagenta:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgBrightCyan:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-bgBrightWhite:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-blackBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-redBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-greenBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-yellowBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-blueBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-magentaBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-cyanBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-login-whiteBG:active{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:active\:shadow-border-2-olive-light:active{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1920\:active\:shadow-border-2-olive-drab:active{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:active\:shadow-border-2-olive-dark:active{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1920\:active\:shadow-border-4-olive-light:active{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1920\:active\:shadow-border-4-olive-drab:active{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:active\:shadow-border-4-olive-dark:active{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1920\:active\:shadow-border-olive-light:active{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1920\:active\:shadow-border-olive-drab:active{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:active\:shadow-border-olive-dark:active{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1920\:active\:shadow-border-2-daisy-light:active{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1920\:active\:shadow-border-4-daisy-light:active{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1920\:active\:shadow-border-daisy-light:active{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1920\:active\:shadow-border-2-feedback-gumby:active{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1920\:active\:shadow-border-2-feedback-daisy:active{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1920\:active\:shadow-border-2-feedback-pokey:active{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1920\:active\:shadow-border-2-feedback-aster:active{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1920\:active\:shadow-border-2-feedback-aster-dark:active{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1920\:active\:shadow-border-2-feedback-roxo:active{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1920\:active\:shadow-border-2-feedback-error:active{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:active\:shadow-border-2-feedback-success:active{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:active\:shadow-border-4-feedback-gumby:active{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1920\:active\:shadow-border-4-feedback-daisy:active{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1920\:active\:shadow-border-4-feedback-pokey:active{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1920\:active\:shadow-border-4-feedback-aster:active{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1920\:active\:shadow-border-4-feedback-aster-dark:active{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1920\:active\:shadow-border-4-feedback-roxo:active{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1920\:active\:shadow-border-4-feedback-error:active{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:active\:shadow-border-4-feedback-success:active{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:active\:shadow-border-feedback-gumby:active{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1920\:active\:shadow-border-feedback-daisy:active{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1920\:active\:shadow-border-feedback-pokey:active{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1920\:active\:shadow-border-feedback-aster:active{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1920\:active\:shadow-border-feedback-aster-dark:active{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1920\:active\:shadow-border-feedback-roxo:active{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1920\:active\:shadow-border-feedback-error:active{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:active\:shadow-border-feedback-success:active{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:active\:shadow-border-2-functional-aoki:active{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1920\:active\:shadow-border-2-functional-aoki-dark:active{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1920\:active\:shadow-border-2-functional-aoki-hocus:active{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1920\:active\:shadow-border-2-functional-aoki-active:active{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1920\:active\:shadow-border-2-functional-aoki-light:active{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1920\:active\:shadow-border-2-functional-kermit:active{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1920\:active\:shadow-border-4-functional-aoki:active{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1920\:active\:shadow-border-4-functional-aoki-dark:active{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1920\:active\:shadow-border-4-functional-aoki-hocus:active{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1920\:active\:shadow-border-4-functional-aoki-active:active{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1920\:active\:shadow-border-4-functional-aoki-light:active{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1920\:active\:shadow-border-4-functional-kermit:active{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1920\:active\:shadow-border-functional-aoki:active{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1920\:active\:shadow-border-functional-aoki-dark:active{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1920\:active\:shadow-border-functional-aoki-hocus:active{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1920\:active\:shadow-border-functional-aoki-active:active{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1920\:active\:shadow-border-functional-aoki-light:active{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1920\:active\:shadow-border-functional-kermit:active{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1920\:active\:shadow-border-2-mixlabPlus-light:active{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1920\:active\:shadow-border-4-mixlabPlus-light:active{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1920\:active\:shadow-border-mixlabPlus-light:active{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1920\:active\:shadow-border-2-primary-orange-light:active{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1920\:active\:shadow-border-4-primary-orange-light:active{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1920\:active\:shadow-border-primary-orange-light:active{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1920\:active\:shadow-border-2-off-white:active{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1920\:active\:shadow-border-4-off-white:active{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1920\:active\:shadow-border-off-white:active{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .s1920\:first\:shadow-border-2-black:first-child{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1920\:first\:shadow-border-4-black:first-child{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1920\:first\:shadow-border-black:first-child{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1920\:first\:shadow-border-2-transparent:first-child{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1920\:first\:shadow-border-4-transparent:first-child{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1920\:first\:shadow-border-transparent:first-child{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1920\:first\:shadow-border-2-error:first-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:first\:shadow-border-4-error:first-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:first\:shadow-border-error:first-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:first\:shadow-border-2-success:first-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:first\:shadow-border-4-success:first-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:first\:shadow-border-success:first-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:first\:shadow-border-2-white-10:first-child{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1920\:first\:shadow-border-2-white-20:first-child{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1920\:first\:shadow-border-2-white:first-child{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1920\:first\:shadow-border-4-white-10:first-child{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1920\:first\:shadow-border-4-white-20:first-child{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1920\:first\:shadow-border-4-white:first-child{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1920\:first\:shadow-border-white-10:first-child{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1920\:first\:shadow-border-white-20:first-child{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1920\:first\:shadow-border-white:first-child{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1920\:first\:shadow-border-2-cheeto:first-child{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1920\:first\:shadow-border-2-cheeto-very-light:first-child{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1920\:first\:shadow-border-2-cheeto-light:first-child{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1920\:first\:shadow-border-2-cheeto-dark:first-child{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1920\:first\:shadow-border-2-cheeto-hocus:first-child{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1920\:first\:shadow-border-2-cheeto-active:first-child{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1920\:first\:shadow-border-2-cheeto-ml-plus:first-child{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1920\:first\:shadow-border-2-cheeto-banner:first-child{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1920\:first\:shadow-border-4-cheeto:first-child{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1920\:first\:shadow-border-4-cheeto-very-light:first-child{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1920\:first\:shadow-border-4-cheeto-light:first-child{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1920\:first\:shadow-border-4-cheeto-dark:first-child{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1920\:first\:shadow-border-4-cheeto-hocus:first-child{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1920\:first\:shadow-border-4-cheeto-active:first-child{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1920\:first\:shadow-border-4-cheeto-ml-plus:first-child{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1920\:first\:shadow-border-4-cheeto-banner:first-child{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1920\:first\:shadow-border-cheeto:first-child{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1920\:first\:shadow-border-cheeto-very-light:first-child{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1920\:first\:shadow-border-cheeto-light:first-child{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1920\:first\:shadow-border-cheeto-dark:first-child{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1920\:first\:shadow-border-cheeto-hocus:first-child{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1920\:first\:shadow-border-cheeto-active:first-child{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1920\:first\:shadow-border-cheeto-ml-plus:first-child{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1920\:first\:shadow-border-cheeto-banner:first-child{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1920\:first\:shadow-border-2-gracy-1:first-child{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1920\:first\:shadow-border-2-gracy-10:first-child{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1920\:first\:shadow-border-2-gracy-20:first-child{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1920\:first\:shadow-border-2-gracy-30:first-child{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1920\:first\:shadow-border-2-gracy-40:first-child{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1920\:first\:shadow-border-2-gracy-50:first-child{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1920\:first\:shadow-border-2-gracy-60:first-child{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1920\:first\:shadow-border-2-gracy-70:first-child{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1920\:first\:shadow-border-2-gracy-80:first-child{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1920\:first\:shadow-border-2-gracy-90:first-child{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1920\:first\:shadow-border-2-gracy-100:first-child{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1920\:first\:shadow-border-2-gracy:first-child{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1920\:first\:shadow-border-2-gracy-overlay-90:first-child{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1920\:first\:shadow-border-4-gracy-1:first-child{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1920\:first\:shadow-border-4-gracy-10:first-child{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1920\:first\:shadow-border-4-gracy-20:first-child{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1920\:first\:shadow-border-4-gracy-30:first-child{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1920\:first\:shadow-border-4-gracy-40:first-child{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1920\:first\:shadow-border-4-gracy-50:first-child{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1920\:first\:shadow-border-4-gracy-60:first-child{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1920\:first\:shadow-border-4-gracy-70:first-child{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1920\:first\:shadow-border-4-gracy-80:first-child{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1920\:first\:shadow-border-4-gracy-90:first-child{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1920\:first\:shadow-border-4-gracy-100:first-child{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1920\:first\:shadow-border-4-gracy:first-child{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1920\:first\:shadow-border-4-gracy-overlay-90:first-child{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1920\:first\:shadow-border-gracy-1:first-child{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1920\:first\:shadow-border-gracy-10:first-child{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1920\:first\:shadow-border-gracy-20:first-child{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1920\:first\:shadow-border-gracy-30:first-child{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1920\:first\:shadow-border-gracy-40:first-child{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1920\:first\:shadow-border-gracy-50:first-child{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1920\:first\:shadow-border-gracy-60:first-child{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1920\:first\:shadow-border-gracy-70:first-child{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1920\:first\:shadow-border-gracy-80:first-child{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1920\:first\:shadow-border-gracy-90:first-child{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1920\:first\:shadow-border-gracy-100:first-child{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1920\:first\:shadow-border-gracy:first-child{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1920\:first\:shadow-border-gracy-overlay-90:first-child{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1920\:first\:shadow-border-2-login-0:first-child{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1920\:first\:shadow-border-2-login-1:first-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:first\:shadow-border-2-login-2:first-child{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1920\:first\:shadow-border-2-login-3:first-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:first\:shadow-border-2-login-4:first-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:first\:shadow-border-2-login-5:first-child{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1920\:first\:shadow-border-2-login-6:first-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:first\:shadow-border-2-login-bold:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-strip:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-stripColors:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-trap:first-child{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1920\:first\:shadow-border-2-login-zalgo:first-child{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1920\:first\:shadow-border-2-login-zebra:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-rainbow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-random:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-america:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-reset:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-dim:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-italic:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-underline:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-inverse:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-hidden:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-strikethrough:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-black:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-red:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-green:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-yellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-blue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-magenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-cyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-white:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-gray:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-grey:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-brightRed:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-brightGreen:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-brightYellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-brightBlue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-brightMagenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-brightCyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-brightWhite:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgBlack:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgRed:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgGreen:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgYellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgBlue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgMagenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgCyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgWhite:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgGray:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgGrey:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgBrightRed:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgBrightGreen:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgBrightYellow:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgBrightBlue:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgBrightMagenta:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgBrightCyan:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-bgBrightWhite:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-blackBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-redBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-greenBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-yellowBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-blueBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-magentaBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-cyanBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-login-whiteBG:first-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-0:first-child{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1920\:first\:shadow-border-4-login-1:first-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:first\:shadow-border-4-login-2:first-child{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1920\:first\:shadow-border-4-login-3:first-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:first\:shadow-border-4-login-4:first-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:first\:shadow-border-4-login-5:first-child{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1920\:first\:shadow-border-4-login-6:first-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:first\:shadow-border-4-login-bold:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-strip:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-stripColors:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-trap:first-child{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1920\:first\:shadow-border-4-login-zalgo:first-child{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1920\:first\:shadow-border-4-login-zebra:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-rainbow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-random:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-america:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-reset:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-dim:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-italic:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-underline:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-inverse:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-hidden:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-strikethrough:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-black:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-red:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-green:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-yellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-blue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-magenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-cyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-white:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-gray:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-grey:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-brightRed:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-brightGreen:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-brightYellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-brightBlue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-brightMagenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-brightCyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-brightWhite:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgBlack:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgRed:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgGreen:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgYellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgBlue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgMagenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgCyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgWhite:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgGray:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgGrey:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgBrightRed:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgBrightGreen:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgBrightYellow:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgBrightBlue:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgBrightMagenta:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgBrightCyan:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-bgBrightWhite:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-blackBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-redBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-greenBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-yellowBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-blueBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-magentaBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-cyanBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-4-login-whiteBG:first-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-0:first-child{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1920\:first\:shadow-border-login-1:first-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:first\:shadow-border-login-2:first-child{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1920\:first\:shadow-border-login-3:first-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:first\:shadow-border-login-4:first-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:first\:shadow-border-login-5:first-child{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1920\:first\:shadow-border-login-6:first-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:first\:shadow-border-login-bold:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-strip:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-stripColors:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-trap:first-child{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1920\:first\:shadow-border-login-zalgo:first-child{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1920\:first\:shadow-border-login-zebra:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-rainbow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-random:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-america:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-reset:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-dim:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-italic:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-underline:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-inverse:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-hidden:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-strikethrough:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-black:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-red:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-green:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-yellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-blue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-magenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-cyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-white:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-gray:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-grey:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-brightRed:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-brightGreen:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-brightYellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-brightBlue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-brightMagenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-brightCyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-brightWhite:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgBlack:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgRed:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgGreen:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgYellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgBlue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgMagenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgCyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgWhite:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgGray:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgGrey:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgBrightRed:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgBrightGreen:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgBrightYellow:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgBrightBlue:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgBrightMagenta:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgBrightCyan:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-bgBrightWhite:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-blackBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-redBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-greenBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-yellowBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-blueBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-magentaBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-cyanBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-login-whiteBG:first-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:first\:shadow-border-2-olive-light:first-child{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1920\:first\:shadow-border-2-olive-drab:first-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:first\:shadow-border-2-olive-dark:first-child{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1920\:first\:shadow-border-4-olive-light:first-child{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1920\:first\:shadow-border-4-olive-drab:first-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:first\:shadow-border-4-olive-dark:first-child{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1920\:first\:shadow-border-olive-light:first-child{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1920\:first\:shadow-border-olive-drab:first-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:first\:shadow-border-olive-dark:first-child{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1920\:first\:shadow-border-2-daisy-light:first-child{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1920\:first\:shadow-border-4-daisy-light:first-child{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1920\:first\:shadow-border-daisy-light:first-child{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1920\:first\:shadow-border-2-feedback-gumby:first-child{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1920\:first\:shadow-border-2-feedback-daisy:first-child{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1920\:first\:shadow-border-2-feedback-pokey:first-child{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1920\:first\:shadow-border-2-feedback-aster:first-child{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1920\:first\:shadow-border-2-feedback-aster-dark:first-child{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1920\:first\:shadow-border-2-feedback-roxo:first-child{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1920\:first\:shadow-border-2-feedback-error:first-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:first\:shadow-border-2-feedback-success:first-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:first\:shadow-border-4-feedback-gumby:first-child{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1920\:first\:shadow-border-4-feedback-daisy:first-child{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1920\:first\:shadow-border-4-feedback-pokey:first-child{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1920\:first\:shadow-border-4-feedback-aster:first-child{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1920\:first\:shadow-border-4-feedback-aster-dark:first-child{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1920\:first\:shadow-border-4-feedback-roxo:first-child{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1920\:first\:shadow-border-4-feedback-error:first-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:first\:shadow-border-4-feedback-success:first-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:first\:shadow-border-feedback-gumby:first-child{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1920\:first\:shadow-border-feedback-daisy:first-child{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1920\:first\:shadow-border-feedback-pokey:first-child{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1920\:first\:shadow-border-feedback-aster:first-child{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1920\:first\:shadow-border-feedback-aster-dark:first-child{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1920\:first\:shadow-border-feedback-roxo:first-child{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1920\:first\:shadow-border-feedback-error:first-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:first\:shadow-border-feedback-success:first-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:first\:shadow-border-2-functional-aoki:first-child{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1920\:first\:shadow-border-2-functional-aoki-dark:first-child{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1920\:first\:shadow-border-2-functional-aoki-hocus:first-child{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1920\:first\:shadow-border-2-functional-aoki-active:first-child{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1920\:first\:shadow-border-2-functional-aoki-light:first-child{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1920\:first\:shadow-border-2-functional-kermit:first-child{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1920\:first\:shadow-border-4-functional-aoki:first-child{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1920\:first\:shadow-border-4-functional-aoki-dark:first-child{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1920\:first\:shadow-border-4-functional-aoki-hocus:first-child{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1920\:first\:shadow-border-4-functional-aoki-active:first-child{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1920\:first\:shadow-border-4-functional-aoki-light:first-child{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1920\:first\:shadow-border-4-functional-kermit:first-child{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1920\:first\:shadow-border-functional-aoki:first-child{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1920\:first\:shadow-border-functional-aoki-dark:first-child{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1920\:first\:shadow-border-functional-aoki-hocus:first-child{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1920\:first\:shadow-border-functional-aoki-active:first-child{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1920\:first\:shadow-border-functional-aoki-light:first-child{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1920\:first\:shadow-border-functional-kermit:first-child{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1920\:first\:shadow-border-2-mixlabPlus-light:first-child{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1920\:first\:shadow-border-4-mixlabPlus-light:first-child{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1920\:first\:shadow-border-mixlabPlus-light:first-child{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1920\:first\:shadow-border-2-primary-orange-light:first-child{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1920\:first\:shadow-border-4-primary-orange-light:first-child{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1920\:first\:shadow-border-primary-orange-light:first-child{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1920\:first\:shadow-border-2-off-white:first-child{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1920\:first\:shadow-border-4-off-white:first-child{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1920\:first\:shadow-border-off-white:first-child{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }

  .s1920\:last\:shadow-border-2-black:last-child{
    box-shadow: inset 0 0 0 2px #000000;
  }

  .s1920\:last\:shadow-border-4-black:last-child{
    box-shadow: inset 0 0 0 4px #000000;
  }

  .s1920\:last\:shadow-border-black:last-child{
    box-shadow: inset 0 0 0 1px #000000;
  }

  .s1920\:last\:shadow-border-2-transparent:last-child{
    box-shadow: inset 0 0 0 2px transparent;
  }

  .s1920\:last\:shadow-border-4-transparent:last-child{
    box-shadow: inset 0 0 0 4px transparent;
  }

  .s1920\:last\:shadow-border-transparent:last-child{
    box-shadow: inset 0 0 0 1px transparent;
  }

  .s1920\:last\:shadow-border-2-error:last-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:last\:shadow-border-4-error:last-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:last\:shadow-border-error:last-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:last\:shadow-border-2-success:last-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:last\:shadow-border-4-success:last-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:last\:shadow-border-success:last-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:last\:shadow-border-2-white-10:last-child{
    box-shadow: inset 0 0 0 2px #FBFBFB;
  }

  .s1920\:last\:shadow-border-2-white-20:last-child{
    box-shadow: inset 0 0 0 2px #ECECEC;
  }

  .s1920\:last\:shadow-border-2-white:last-child{
    box-shadow: inset 0 0 0 2px #FFFFFF;
  }

  .s1920\:last\:shadow-border-4-white-10:last-child{
    box-shadow: inset 0 0 0 4px #FBFBFB;
  }

  .s1920\:last\:shadow-border-4-white-20:last-child{
    box-shadow: inset 0 0 0 4px #ECECEC;
  }

  .s1920\:last\:shadow-border-4-white:last-child{
    box-shadow: inset 0 0 0 4px #FFFFFF;
  }

  .s1920\:last\:shadow-border-white-10:last-child{
    box-shadow: inset 0 0 0 1px #FBFBFB;
  }

  .s1920\:last\:shadow-border-white-20:last-child{
    box-shadow: inset 0 0 0 1px #ECECEC;
  }

  .s1920\:last\:shadow-border-white:last-child{
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }

  .s1920\:last\:shadow-border-2-cheeto:last-child{
    box-shadow: inset 0 0 0 2px #f7a500;
  }

  .s1920\:last\:shadow-border-2-cheeto-very-light:last-child{
    box-shadow: inset 0 0 0 2px #fffaf2;
  }

  .s1920\:last\:shadow-border-2-cheeto-light:last-child{
    box-shadow: inset 0 0 0 2px #ffd649;
  }

  .s1920\:last\:shadow-border-2-cheeto-dark:last-child{
    box-shadow: inset 0 0 0 2px #bf7600;
  }

  .s1920\:last\:shadow-border-2-cheeto-hocus:last-child{
    box-shadow: inset 0 0 0 2px #f8bd0f;
  }

  .s1920\:last\:shadow-border-2-cheeto-active:last-child{
    box-shadow: inset 0 0 0 2px #f8d61b;
  }

  .s1920\:last\:shadow-border-2-cheeto-ml-plus:last-child{
    box-shadow: inset 0 0 0 2px #FBEFCA;
  }

  .s1920\:last\:shadow-border-2-cheeto-banner:last-child{
    box-shadow: inset 0 0 0 2px #fef7e5;
  }

  .s1920\:last\:shadow-border-4-cheeto:last-child{
    box-shadow: inset 0 0 0 4px #f7a500;
  }

  .s1920\:last\:shadow-border-4-cheeto-very-light:last-child{
    box-shadow: inset 0 0 0 4px #fffaf2;
  }

  .s1920\:last\:shadow-border-4-cheeto-light:last-child{
    box-shadow: inset 0 0 0 4px #ffd649;
  }

  .s1920\:last\:shadow-border-4-cheeto-dark:last-child{
    box-shadow: inset 0 0 0 4px #bf7600;
  }

  .s1920\:last\:shadow-border-4-cheeto-hocus:last-child{
    box-shadow: inset 0 0 0 4px #f8bd0f;
  }

  .s1920\:last\:shadow-border-4-cheeto-active:last-child{
    box-shadow: inset 0 0 0 4px #f8d61b;
  }

  .s1920\:last\:shadow-border-4-cheeto-ml-plus:last-child{
    box-shadow: inset 0 0 0 4px #FBEFCA;
  }

  .s1920\:last\:shadow-border-4-cheeto-banner:last-child{
    box-shadow: inset 0 0 0 4px #fef7e5;
  }

  .s1920\:last\:shadow-border-cheeto:last-child{
    box-shadow: inset 0 0 0 1px #f7a500;
  }

  .s1920\:last\:shadow-border-cheeto-very-light:last-child{
    box-shadow: inset 0 0 0 1px #fffaf2;
  }

  .s1920\:last\:shadow-border-cheeto-light:last-child{
    box-shadow: inset 0 0 0 1px #ffd649;
  }

  .s1920\:last\:shadow-border-cheeto-dark:last-child{
    box-shadow: inset 0 0 0 1px #bf7600;
  }

  .s1920\:last\:shadow-border-cheeto-hocus:last-child{
    box-shadow: inset 0 0 0 1px #f8bd0f;
  }

  .s1920\:last\:shadow-border-cheeto-active:last-child{
    box-shadow: inset 0 0 0 1px #f8d61b;
  }

  .s1920\:last\:shadow-border-cheeto-ml-plus:last-child{
    box-shadow: inset 0 0 0 1px #FBEFCA;
  }

  .s1920\:last\:shadow-border-cheeto-banner:last-child{
    box-shadow: inset 0 0 0 1px #fef7e5;
  }

  .s1920\:last\:shadow-border-2-gracy-1:last-child{
    box-shadow: inset 0 0 0 2px #f8f8fa;
  }

  .s1920\:last\:shadow-border-2-gracy-10:last-child{
    box-shadow: inset 0 0 0 2px #faf7fd;
  }

  .s1920\:last\:shadow-border-2-gracy-20:last-child{
    box-shadow: inset 0 0 0 2px #e0dde3;
  }

  .s1920\:last\:shadow-border-2-gracy-30:last-child{
    box-shadow: inset 0 0 0 2px #c8c5ca;
  }

  .s1920\:last\:shadow-border-2-gracy-40:last-child{
    box-shadow: inset 0 0 0 2px #aeacb0;
  }

  .s1920\:last\:shadow-border-2-gracy-50:last-child{
    box-shadow: inset 0 0 0 2px #969497;
  }

  .s1920\:last\:shadow-border-2-gracy-60:last-child{
    box-shadow: inset 0 0 0 2px #7c7b7e;
  }

  .s1920\:last\:shadow-border-2-gracy-70:last-child{
    box-shadow: inset 0 0 0 2px #646265;
  }

  .s1920\:last\:shadow-border-2-gracy-80:last-child{
    box-shadow: inset 0 0 0 2px #4a494b;
  }

  .s1920\:last\:shadow-border-2-gracy-90:last-child{
    box-shadow: inset 0 0 0 2px #323132;
  }

  .s1920\:last\:shadow-border-2-gracy-100:last-child{
    box-shadow: inset 0 0 0 2px #181818;
  }

  .s1920\:last\:shadow-border-2-gracy:last-child{
    box-shadow: inset 0 0 0 2px #6F7878;
  }

  .s1920\:last\:shadow-border-2-gracy-overlay-90:last-child{
    box-shadow: inset 0 0 0 2px rgba(50,49,50,0.5);
  }

  .s1920\:last\:shadow-border-4-gracy-1:last-child{
    box-shadow: inset 0 0 0 4px #f8f8fa;
  }

  .s1920\:last\:shadow-border-4-gracy-10:last-child{
    box-shadow: inset 0 0 0 4px #faf7fd;
  }

  .s1920\:last\:shadow-border-4-gracy-20:last-child{
    box-shadow: inset 0 0 0 4px #e0dde3;
  }

  .s1920\:last\:shadow-border-4-gracy-30:last-child{
    box-shadow: inset 0 0 0 4px #c8c5ca;
  }

  .s1920\:last\:shadow-border-4-gracy-40:last-child{
    box-shadow: inset 0 0 0 4px #aeacb0;
  }

  .s1920\:last\:shadow-border-4-gracy-50:last-child{
    box-shadow: inset 0 0 0 4px #969497;
  }

  .s1920\:last\:shadow-border-4-gracy-60:last-child{
    box-shadow: inset 0 0 0 4px #7c7b7e;
  }

  .s1920\:last\:shadow-border-4-gracy-70:last-child{
    box-shadow: inset 0 0 0 4px #646265;
  }

  .s1920\:last\:shadow-border-4-gracy-80:last-child{
    box-shadow: inset 0 0 0 4px #4a494b;
  }

  .s1920\:last\:shadow-border-4-gracy-90:last-child{
    box-shadow: inset 0 0 0 4px #323132;
  }

  .s1920\:last\:shadow-border-4-gracy-100:last-child{
    box-shadow: inset 0 0 0 4px #181818;
  }

  .s1920\:last\:shadow-border-4-gracy:last-child{
    box-shadow: inset 0 0 0 4px #6F7878;
  }

  .s1920\:last\:shadow-border-4-gracy-overlay-90:last-child{
    box-shadow: inset 0 0 0 4px rgba(50,49,50,0.5);
  }

  .s1920\:last\:shadow-border-gracy-1:last-child{
    box-shadow: inset 0 0 0 1px #f8f8fa;
  }

  .s1920\:last\:shadow-border-gracy-10:last-child{
    box-shadow: inset 0 0 0 1px #faf7fd;
  }

  .s1920\:last\:shadow-border-gracy-20:last-child{
    box-shadow: inset 0 0 0 1px #e0dde3;
  }

  .s1920\:last\:shadow-border-gracy-30:last-child{
    box-shadow: inset 0 0 0 1px #c8c5ca;
  }

  .s1920\:last\:shadow-border-gracy-40:last-child{
    box-shadow: inset 0 0 0 1px #aeacb0;
  }

  .s1920\:last\:shadow-border-gracy-50:last-child{
    box-shadow: inset 0 0 0 1px #969497;
  }

  .s1920\:last\:shadow-border-gracy-60:last-child{
    box-shadow: inset 0 0 0 1px #7c7b7e;
  }

  .s1920\:last\:shadow-border-gracy-70:last-child{
    box-shadow: inset 0 0 0 1px #646265;
  }

  .s1920\:last\:shadow-border-gracy-80:last-child{
    box-shadow: inset 0 0 0 1px #4a494b;
  }

  .s1920\:last\:shadow-border-gracy-90:last-child{
    box-shadow: inset 0 0 0 1px #323132;
  }

  .s1920\:last\:shadow-border-gracy-100:last-child{
    box-shadow: inset 0 0 0 1px #181818;
  }

  .s1920\:last\:shadow-border-gracy:last-child{
    box-shadow: inset 0 0 0 1px #6F7878;
  }

  .s1920\:last\:shadow-border-gracy-overlay-90:last-child{
    box-shadow: inset 0 0 0 1px rgba(50,49,50,0.5);
  }

  .s1920\:last\:shadow-border-2-login-0:last-child{
    box-shadow: inset 0 0 0 2px #;
  }

  .s1920\:last\:shadow-border-2-login-1:last-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:last\:shadow-border-2-login-2:last-child{
    box-shadow: inset 0 0 0 2px D;
  }

  .s1920\:last\:shadow-border-2-login-3:last-child{
    box-shadow: inset 0 0 0 2px F;
  }

  .s1920\:last\:shadow-border-2-login-4:last-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:last\:shadow-border-2-login-5:last-child{
    box-shadow: inset 0 0 0 2px E;
  }

  .s1920\:last\:shadow-border-2-login-6:last-child{
    box-shadow: inset 0 0 0 2px 7;
  }

  .s1920\:last\:shadow-border-2-login-bold:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-strip:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-stripColors:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-trap:last-child{
    box-shadow: inset 0 0 0 2px #ӺԀӺ7Ë7;
  }

  .s1920\:last\:shadow-border-2-login-zalgo:last-child{
    box-shadow: inset 0 0 0 2px #̓ͤ̃̋̿ͬͥͬ͗̃̊͋́̓̑ ҉̢̡̫̜͖͚̰̹̗͙̤͖͚͈̯̼̳͉̮͉̣̜̤̦͔̼͈̤̜͚̹̘̮͙͙͖̫̖̯̮̠͕̺͚̩͎͉͎͍̟͡ͅF͖̻̘͈̰̞̭̜̳͕͈̪̞̞̗̞̖͍̲̘̞͈̠͕̬̻̙̭͕͙͉̩̭̲͉͔̜̲̖̭̪̯̝͓̯̩̦͑ͦ̈̈͐͂͗̄ͬ̅ͩ͛̑̓͟͡ͅD̸̨̖̭̫̻͎̞̱͚̝̙̻̩̥̪̝͈̬͕͔̜͚͚͙͉̟͔͎͈̭̣̹̺̱͕̞̙͓͕̠̗̖̳̝̭͚̙̘͓͎͔͙̠̬̩̰͚̣̥̜͕̲̲̠͔̙͖͉̃̇̒̿̃̀F̸͉͚̙̱͉̰̜̭̝̻̟̩̼̞̤̱̳̻̰̫͈̟̭̺͙̬͓͖̰̮̥̖̼͖̦̘̤͉̳͉̖͉̲͔̖̳͇̹̰̭̪̟̖̭͈̰̫̪͇̝͓̹̫̱ͪͬ͊̀ͨ̄̇̑̀̂̄̽̓͗͜7̡̄͐̑̎̑̑̚͘͝ ҉̟̖̗͙̲̳̞̜͚͙̺̯̟̫̰̘͇̹̜͚͙̟̼̳̥͓͎̖͈͖̟͈̖̖͕̬͙̰̹̮̪̫͉̳̬̰̱̙͔̣̖ͅͅͅͅE̴̛̟̼̫͓̟̭̯͔͎̼̿͆͊ͥ̎̓̓̂̊ͩ̓̆̑ͨ̃͂́ͧ̐̀͡7̴̗̬̮̥͈͖̤̙̜̬͙̙̬͔̺͎͚̹͙̩̊͋̏̑ͣͬ̔̏ͦ͊̉̔͑̂̉̀͢;
  }

  .s1920\:last\:shadow-border-2-login-zebra:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-rainbow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-random:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-america:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-reset:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-dim:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-italic:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-underline:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-inverse:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-hidden:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-strikethrough:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-black:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-red:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-green:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-yellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-blue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-magenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-cyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-white:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-gray:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-grey:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-brightRed:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-brightGreen:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-brightYellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-brightBlue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-brightMagenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-brightCyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-brightWhite:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgBlack:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgRed:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgGreen:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgYellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgBlue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgMagenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgCyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgWhite:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgGray:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgGrey:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgBrightRed:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgBrightGreen:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgBrightYellow:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgBrightBlue:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgBrightMagenta:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgBrightCyan:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-bgBrightWhite:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-blackBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-redBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-greenBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-yellowBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-blueBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-magentaBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-cyanBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-login-whiteBG:last-child{
    box-shadow: inset 0 0 0 2px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-0:last-child{
    box-shadow: inset 0 0 0 4px #;
  }

  .s1920\:last\:shadow-border-4-login-1:last-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:last\:shadow-border-4-login-2:last-child{
    box-shadow: inset 0 0 0 4px D;
  }

  .s1920\:last\:shadow-border-4-login-3:last-child{
    box-shadow: inset 0 0 0 4px F;
  }

  .s1920\:last\:shadow-border-4-login-4:last-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:last\:shadow-border-4-login-5:last-child{
    box-shadow: inset 0 0 0 4px E;
  }

  .s1920\:last\:shadow-border-4-login-6:last-child{
    box-shadow: inset 0 0 0 4px 7;
  }

  .s1920\:last\:shadow-border-4-login-bold:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-strip:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-stripColors:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-trap:last-child{
    box-shadow: inset 0 0 0 4px #ӺƊӺ7ξ7;
  }

  .s1920\:last\:shadow-border-4-login-zalgo:last-child{
    box-shadow: inset 0 0 0 4px #̨̛̪̬̱̞̜͖̲̮͓̼̼̲͓̼̣̦͍̙̰̬͓̮̺͓̥̣͙͂̎̓͑͗̔͊̆̔͑ͫ͂ͅF̷̸̴͙̥͙̼̟̯̗̼̞̜̮̟͎̹͖̃̊͗͒ͬ̽̽D̡̡̻̙͙͚̪̜͔̞̱̮̜̱͉̹̬͉̱̦̻̰̠͍̮͙͔̰̟͎̼̰̟̫̩͉͕̱ͬ̈̿ͥͣ͛̚͠ͅͅF͚̬̮̯̞͈̔͗ͣͤ̈͒ͯ̇̐ͨ̽̀̚̕͢͞7̨̭̣͇̹̱̺̹͙̤͉͇̣̳͚̙̫͕͍͙͔̙͖̼̰͇͉̻̗̩͙͎̫̗͖̥̱̲̫̖̂̾͛̉̆̈ͪ̾͘Ę̸͖̦̹̜̠̞̰̯͙̲̳͉̺͚̱̼͚̥̫͔͈̳̝̼̣̳̱͚̼̹̠̥͎̜͙̥͎̮͇̦͚̮̯̳̥̜͇̪̩̱̹̹̈͌͌ͮ̀̏̒̽ͤ̀̂ͅͅ7̴̨ͨͧ͌̾̐͛ͭ͂ͨ͆͌̀͟ ҉̳̲͕̫͈͈̞̣̭̤̰̻̮̭͖̟͉͎̙̫̤͕̙͙͎͎̠̠̭̗ͅ;
  }

  .s1920\:last\:shadow-border-4-login-zebra:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-rainbow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-random:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-america:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-reset:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-dim:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-italic:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-underline:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-inverse:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-hidden:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-strikethrough:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-black:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-red:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-green:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-yellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-blue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-magenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-cyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-white:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-gray:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-grey:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-brightRed:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-brightGreen:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-brightYellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-brightBlue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-brightMagenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-brightCyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-brightWhite:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgBlack:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgRed:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgGreen:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgYellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgBlue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgMagenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgCyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgWhite:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgGray:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgGrey:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgBrightRed:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgBrightGreen:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgBrightYellow:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgBrightBlue:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgBrightMagenta:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgBrightCyan:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-bgBrightWhite:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-blackBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-redBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-greenBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-yellowBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-blueBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-magentaBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-cyanBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-4-login-whiteBG:last-child{
    box-shadow: inset 0 0 0 4px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-0:last-child{
    box-shadow: inset 0 0 0 1px #;
  }

  .s1920\:last\:shadow-border-login-1:last-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:last\:shadow-border-login-2:last-child{
    box-shadow: inset 0 0 0 1px D;
  }

  .s1920\:last\:shadow-border-login-3:last-child{
    box-shadow: inset 0 0 0 1px F;
  }

  .s1920\:last\:shadow-border-login-4:last-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:last\:shadow-border-login-5:last-child{
    box-shadow: inset 0 0 0 1px E;
  }

  .s1920\:last\:shadow-border-login-6:last-child{
    box-shadow: inset 0 0 0 1px 7;
  }

  .s1920\:last\:shadow-border-login-bold:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-strip:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-stripColors:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-trap:last-child{
    box-shadow: inset 0 0 0 1px #ӺÐӺ7੬7;
  }

  .s1920\:last\:shadow-border-login-zalgo:last-child{
    box-shadow: inset 0 0 0 1px #̷̨̛̟̘̖̣̲̦̣̝̣̙̹̼͍̲̫̘̮̺̘̮͕͎̦̖̲̞̝̝̙̮̠͓̩̙̜͈̼̮̳̞͈͕̫̳͖͈̟͉̥͓̝̳̻͍͚̲̫̘̰͔̿͋̂ͦ̈̒̚̚͜F̿̀ͨ̅ͫ̓̃ͬ̿ ҉̹̤̘͕̩͔̻̬̜̘̤̦͈͔͙̫̫̰̥̬͚͉̝͈͍̱̙́͜͞͠D̶̛͔̠̹̟̺͖͓͔͇͚̮̦̝̙͉̻̥̻̹̭͕̪̦͇͓̙͔̐̎̂́͌ͥͯͭ͗͛̓̽ͯ́F̢͕̜̣̪̪̪̪̺̝̭͙̤̙͕̲͚̓̓̇̾ͮ̉̌͡͝ͅͅ7̧̧̩̫̙̯̟̞̫̹͕͓̞̜̞̫͓̬̰̺̩͇̭̩̯͂ͫͬ̓̈̃̊͐ͬ̎̚Ẹ̵̡̗̼̼͙̖̠̯̪͌̓̾̔͊̽ͣ̔̑͂͌̀͠7̧͖̥̜̠̗̮͕͑͗͑̾̑͘͟͞;
  }

  .s1920\:last\:shadow-border-login-zebra:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-rainbow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-random:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-america:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-reset:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-dim:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-italic:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-underline:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-inverse:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-hidden:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-strikethrough:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-black:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-red:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-green:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-yellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-blue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-magenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-cyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-white:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-gray:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-grey:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-brightRed:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-brightGreen:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-brightYellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-brightBlue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-brightMagenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-brightCyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-brightWhite:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgBlack:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgRed:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgGreen:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgYellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgBlue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgMagenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgCyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgWhite:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgGray:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgGrey:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgBrightRed:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgBrightGreen:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgBrightYellow:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgBrightBlue:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgBrightMagenta:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgBrightCyan:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-bgBrightWhite:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-blackBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-redBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-greenBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-yellowBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-blueBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-magentaBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-cyanBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-login-whiteBG:last-child{
    box-shadow: inset 0 0 0 1px #FDF7E7;
  }

  .s1920\:last\:shadow-border-2-olive-light:last-child{
    box-shadow: inset 0 0 0 2px #DFF5F6;
  }

  .s1920\:last\:shadow-border-2-olive-drab:last-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:last\:shadow-border-2-olive-dark:last-child{
    box-shadow: inset 0 0 0 2px #096348;
  }

  .s1920\:last\:shadow-border-4-olive-light:last-child{
    box-shadow: inset 0 0 0 4px #DFF5F6;
  }

  .s1920\:last\:shadow-border-4-olive-drab:last-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:last\:shadow-border-4-olive-dark:last-child{
    box-shadow: inset 0 0 0 4px #096348;
  }

  .s1920\:last\:shadow-border-olive-light:last-child{
    box-shadow: inset 0 0 0 1px #DFF5F6;
  }

  .s1920\:last\:shadow-border-olive-drab:last-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:last\:shadow-border-olive-dark:last-child{
    box-shadow: inset 0 0 0 1px #096348;
  }

  .s1920\:last\:shadow-border-2-daisy-light:last-child{
    box-shadow: inset 0 0 0 2px #fffce1;
  }

  .s1920\:last\:shadow-border-4-daisy-light:last-child{
    box-shadow: inset 0 0 0 4px #fffce1;
  }

  .s1920\:last\:shadow-border-daisy-light:last-child{
    box-shadow: inset 0 0 0 1px #fffce1;
  }

  .s1920\:last\:shadow-border-2-feedback-gumby:last-child{
    box-shadow: inset 0 0 0 2px #c8e6c9;
  }

  .s1920\:last\:shadow-border-2-feedback-daisy:last-child{
    box-shadow: inset 0 0 0 2px #fff9c4;
  }

  .s1920\:last\:shadow-border-2-feedback-pokey:last-child{
    box-shadow: inset 0 0 0 2px #ffcdd2;
  }

  .s1920\:last\:shadow-border-2-feedback-aster:last-child{
    box-shadow: inset 0 0 0 2px #b3e5fc;
  }

  .s1920\:last\:shadow-border-2-feedback-aster-dark:last-child{
    box-shadow: inset 0 0 0 2px #03567C;
  }

  .s1920\:last\:shadow-border-2-feedback-roxo:last-child{
    box-shadow: inset 0 0 0 2px #d1c4e9;
  }

  .s1920\:last\:shadow-border-2-feedback-error:last-child{
    box-shadow: inset 0 0 0 2px #f44336;
  }

  .s1920\:last\:shadow-border-2-feedback-success:last-child{
    box-shadow: inset 0 0 0 2px #5ca02c;
  }

  .s1920\:last\:shadow-border-4-feedback-gumby:last-child{
    box-shadow: inset 0 0 0 4px #c8e6c9;
  }

  .s1920\:last\:shadow-border-4-feedback-daisy:last-child{
    box-shadow: inset 0 0 0 4px #fff9c4;
  }

  .s1920\:last\:shadow-border-4-feedback-pokey:last-child{
    box-shadow: inset 0 0 0 4px #ffcdd2;
  }

  .s1920\:last\:shadow-border-4-feedback-aster:last-child{
    box-shadow: inset 0 0 0 4px #b3e5fc;
  }

  .s1920\:last\:shadow-border-4-feedback-aster-dark:last-child{
    box-shadow: inset 0 0 0 4px #03567C;
  }

  .s1920\:last\:shadow-border-4-feedback-roxo:last-child{
    box-shadow: inset 0 0 0 4px #d1c4e9;
  }

  .s1920\:last\:shadow-border-4-feedback-error:last-child{
    box-shadow: inset 0 0 0 4px #f44336;
  }

  .s1920\:last\:shadow-border-4-feedback-success:last-child{
    box-shadow: inset 0 0 0 4px #5ca02c;
  }

  .s1920\:last\:shadow-border-feedback-gumby:last-child{
    box-shadow: inset 0 0 0 1px #c8e6c9;
  }

  .s1920\:last\:shadow-border-feedback-daisy:last-child{
    box-shadow: inset 0 0 0 1px #fff9c4;
  }

  .s1920\:last\:shadow-border-feedback-pokey:last-child{
    box-shadow: inset 0 0 0 1px #ffcdd2;
  }

  .s1920\:last\:shadow-border-feedback-aster:last-child{
    box-shadow: inset 0 0 0 1px #b3e5fc;
  }

  .s1920\:last\:shadow-border-feedback-aster-dark:last-child{
    box-shadow: inset 0 0 0 1px #03567C;
  }

  .s1920\:last\:shadow-border-feedback-roxo:last-child{
    box-shadow: inset 0 0 0 1px #d1c4e9;
  }

  .s1920\:last\:shadow-border-feedback-error:last-child{
    box-shadow: inset 0 0 0 1px #f44336;
  }

  .s1920\:last\:shadow-border-feedback-success:last-child{
    box-shadow: inset 0 0 0 1px #5ca02c;
  }

  .s1920\:last\:shadow-border-2-functional-aoki:last-child{
    box-shadow: inset 0 0 0 2px #6f2ca0;
  }

  .s1920\:last\:shadow-border-2-functional-aoki-dark:last-child{
    box-shadow: inset 0 0 0 2px #3e0071;
  }

  .s1920\:last\:shadow-border-2-functional-aoki-hocus:last-child{
    box-shadow: inset 0 0 0 2px #9035af;
  }

  .s1920\:last\:shadow-border-2-functional-aoki-active:last-child{
    box-shadow: inset 0 0 0 2px #a04fbc;
  }

  .s1920\:last\:shadow-border-2-functional-aoki-light:last-child{
    box-shadow: inset 0 0 0 2px #a15ad2;
  }

  .s1920\:last\:shadow-border-2-functional-kermit:last-child{
    box-shadow: inset 0 0 0 2px #5aa120;
  }

  .s1920\:last\:shadow-border-4-functional-aoki:last-child{
    box-shadow: inset 0 0 0 4px #6f2ca0;
  }

  .s1920\:last\:shadow-border-4-functional-aoki-dark:last-child{
    box-shadow: inset 0 0 0 4px #3e0071;
  }

  .s1920\:last\:shadow-border-4-functional-aoki-hocus:last-child{
    box-shadow: inset 0 0 0 4px #9035af;
  }

  .s1920\:last\:shadow-border-4-functional-aoki-active:last-child{
    box-shadow: inset 0 0 0 4px #a04fbc;
  }

  .s1920\:last\:shadow-border-4-functional-aoki-light:last-child{
    box-shadow: inset 0 0 0 4px #a15ad2;
  }

  .s1920\:last\:shadow-border-4-functional-kermit:last-child{
    box-shadow: inset 0 0 0 4px #5aa120;
  }

  .s1920\:last\:shadow-border-functional-aoki:last-child{
    box-shadow: inset 0 0 0 1px #6f2ca0;
  }

  .s1920\:last\:shadow-border-functional-aoki-dark:last-child{
    box-shadow: inset 0 0 0 1px #3e0071;
  }

  .s1920\:last\:shadow-border-functional-aoki-hocus:last-child{
    box-shadow: inset 0 0 0 1px #9035af;
  }

  .s1920\:last\:shadow-border-functional-aoki-active:last-child{
    box-shadow: inset 0 0 0 1px #a04fbc;
  }

  .s1920\:last\:shadow-border-functional-aoki-light:last-child{
    box-shadow: inset 0 0 0 1px #a15ad2;
  }

  .s1920\:last\:shadow-border-functional-kermit:last-child{
    box-shadow: inset 0 0 0 1px #5aa120;
  }

  .s1920\:last\:shadow-border-2-mixlabPlus-light:last-child{
    box-shadow: inset 0 0 0 2px #FFFEF9;
  }

  .s1920\:last\:shadow-border-4-mixlabPlus-light:last-child{
    box-shadow: inset 0 0 0 4px #FFFEF9;
  }

  .s1920\:last\:shadow-border-mixlabPlus-light:last-child{
    box-shadow: inset 0 0 0 1px #FFFEF9;
  }

  .s1920\:last\:shadow-border-2-primary-orange-light:last-child{
    box-shadow: inset 0 0 0 2px ;
  }

  .s1920\:last\:shadow-border-4-primary-orange-light:last-child{
    box-shadow: inset 0 0 0 4px ;
  }

  .s1920\:last\:shadow-border-primary-orange-light:last-child{
    box-shadow: inset 0 0 0 1px ;
  }

  .s1920\:last\:shadow-border-2-off-white:last-child{
    box-shadow: inset 0 0 0 2px #FAF9F6;
  }

  .s1920\:last\:shadow-border-4-off-white:last-child{
    box-shadow: inset 0 0 0 4px #FAF9F6;
  }

  .s1920\:last\:shadow-border-off-white:last-child{
    box-shadow: inset 0 0 0 1px #FAF9F6;
  }
}


/*# sourceMappingURL=mixlab.pharmacy.js.map*/